On Wed, Nov 06, 2019 at 07:58:55AM +0200, Amir Goldstein wrote: > For efficient check if file has xattrs. > > Signed-off-by: Amir Goldstein <amir73il@xxxxxxxxx> > --- > io/attr.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/io/attr.c b/io/attr.c > index b713d017..ba88ef16 100644 > --- a/io/attr.c > +++ b/io/attr.c > @@ -37,6 +37,7 @@ static struct xflags { > { FS_XFLAG_FILESTREAM, "S", "filestream" }, > { FS_XFLAG_DAX, "x", "dax" }, > { FS_XFLAG_COWEXTSIZE, "C", "cowextsize" }, > + { FS_XFLAG_HASATTR, "X", "has-xattr" }, This causes an xfs/207 regression on the extra letter in the output; can you please fix that? --D > { 0, NULL, NULL } > }; > #define CHATTR_XFLAG_LIST "r"/*p*/"iasAdtPneEfSxC" > @@ -65,6 +66,7 @@ lsattr_help(void) > " S -- enable filestreams allocator for this directory\n" > " x -- Use direct access (DAX) for data in this file\n" > " C -- for files with shared blocks, observe the inode CoW extent size value\n" > +" X -- file has extended attributes (cannot be changed using chattr)\n" > "\n" > " Options:\n" > " -R -- recursively descend (useful when current file is a directory)\n" > -- > 2.17.1 >