diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | src/stat.c | 2 |
2 files changed, 6 insertions, 0 deletions
@@ -2,6 +2,10 @@ GNU coreutils NEWS -*- outline -*- * Noteworthy changes in release ?.? (????-??-??) [?] +** New features + + stat -f recognizes the Lustre file system type + * Noteworthy changes in release 7.0 (2008-10-05) [beta] diff --git a/src/stat.c b/src/stat.c index 1b444f7dd..f5bf8cdee 100644 --- a/src/stat.c +++ b/src/stat.c @@ -265,6 +265,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "jffs"; case S_MAGIC_JFS: /* 0x3153464A */ return "jfs"; + case S_MAGIC_LUSTRE: /* 0x0BD00BD0 */ + return "lustre"; case S_MAGIC_MINIX: /* 0x137F */ return "minix"; case S_MAGIC_MINIX_30: /* 0x138F */ |