You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.4 KiB
32 lines
1.4 KiB
Index: xfsprogs-4.5.0/io/attr.c |
|
=================================================================== |
|
--- xfsprogs-4.5.0.orig/io/attr.c |
|
+++ xfsprogs-4.5.0/io/attr.c |
|
@@ -47,10 +47,9 @@ static struct xflags { |
|
{ FS_XFLAG_EXTSZINHERIT, "E", "extsz-inherit" }, |
|
{ FS_XFLAG_NODEFRAG, "f", "no-defrag" }, |
|
{ FS_XFLAG_FILESTREAM, "S", "filestream" }, |
|
- { FS_XFLAG_DAX, "x", "dax" }, |
|
{ 0, NULL, NULL } |
|
}; |
|
-#define CHATTR_XFLAG_LIST "r"/*p*/"iasAdtPneEfSx" |
|
+#define CHATTR_XFLAG_LIST "r"/*p*/"iasAdtPneEfS" |
|
|
|
static void |
|
lsattr_help(void) |
|
@@ -74,7 +73,6 @@ lsattr_help(void) |
|
" E -- children created in this directory inherit the extent size value\n" |
|
" f -- do not include this file when defragmenting the filesystem\n" |
|
" S -- enable filestreams allocator for this directory\n" |
|
-" x -- Use direct access (DAX) for data in this file\n" |
|
"\n" |
|
" Options:\n" |
|
" -R -- recursively descend (useful when current file is a directory)\n" |
|
@@ -110,7 +108,6 @@ chattr_help(void) |
|
" +/-E -- set/clear the extent-size inheritance flag\n" |
|
" +/-f -- set/clear the no-defrag flag\n" |
|
" +/-S -- set/clear the filestreams allocator flag\n" |
|
-" +/-x -- set/clear the direct access (DAX) flag\n" |
|
" Note1: user must have certain capabilities to modify immutable/append-only.\n" |
|
" Note2: immutable/append-only files cannot be deleted; removing these files\n" |
|
" requires the immutable/append-only flag to be cleared first.\n"
|
|
|