diff options
author | Pádraig Brady <P@draigBrady.com> | 2014-05-23 00:20:43 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2014-05-23 00:20:43 +0100 |
commit | 56c9a43ac2721f63053dc1d2d9820640cc2fb53a (patch) | |
tree | 05b59e39e5e0900a24ecea24b4b2e0ecceabaa62 /src | |
parent | 695a0b5502a623e5a9a6d149500c4898102d2dd8 (diff) | |
download | coreutils-56c9a43ac2721f63053dc1d2d9820640cc2fb53a.tar.xz |
stat,tail: improve support for LogFS and ConfigFS
* src/stat.c (human_fstype): Add new file system ID definitions.
* NEWS: Mention the improvement.
Diffstat (limited to 'src')
-rw-r--r-- | src/stat.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/stat.c b/src/stat.c index 148ff49cc..6f42b61bd 100644 --- a/src/stat.c +++ b/src/stat.c @@ -280,6 +280,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "coda"; case S_MAGIC_COH: /* 0x012FF7B7 local */ return "coh"; + case S_MAGIC_CONFIGFS: /* 0x62656570 local */ + return "configfs"; case S_MAGIC_CRAMFS: /* 0x28CD3D45 local */ return "cramfs"; case S_MAGIC_CRAMFS_WEND: /* 0x453DCD28 local */ @@ -350,6 +352,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "jfs"; case S_MAGIC_KAFS: /* 0x6B414653 remote */ return "k-afs"; + case S_MAGIC_LOGFS: /* 0xC97E8168 local */ + return "logfs"; case S_MAGIC_LUSTRE: /* 0x0BD00BD0 remote */ return "lustre"; case S_MAGIC_MINIX: /* 0x137F local */ |