2014-11-03 17:12 GMT+01:00 Brian Foster <bfoster at redhat.com>: > > +static inline bool xfs_inobt_issparse(uint16_t holemask) > +{ > + return holemask == 0 ? false : true; > +} Surely that should be "return holemask != 0;"?