]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/commitdiff
Support rtinherit bit in xfs_io chattr/lsattr commands.
authorNathan Scott <nathans@sgi.com>
Mon, 9 Aug 2004 05:33:35 +0000 (05:33 +0000)
committerNathan Scott <nathans@sgi.com>
Mon, 9 Aug 2004 05:33:35 +0000 (05:33 +0000)
io/open.c

index 86b12aba0ae416824cf81bbb757ed1e4876273e0..dcf9398cf5dc6507d9d6e8ef8721321afa648521 100644 (file)
--- a/io/open.c
+++ b/io/open.c
@@ -94,6 +94,7 @@ printxattr(int flags, int verbose, int dofname, int dobraces, int doeol)
                { XFS_XFLAG_SYNC,       "s", "sync" },
                { XFS_XFLAG_NOATIME,    "A", "no-atime" },
                { XFS_XFLAG_NODUMP,     "d", "no-dump" },
+               { XFS_XFLAG_RTINHERIT,  "R", "rt-inherit" },
                { 0, NULL, NULL }
        };
        int     first = 1;
@@ -471,6 +472,7 @@ chattr_f(
                { XFS_XFLAG_SYNC,       's' },
                { XFS_XFLAG_NOATIME,    'A' },
                { XFS_XFLAG_NODUMP,     'd' },
+               { XFS_XFLAG_RTINHERIT,  'R' },
                { 0, '\0' }
        };
        struct fsxattr  attr;