>From fc03e111bf9d5265436246a258898ce3e0e6b8a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A1draig=20Brady?= Date: Wed, 24 Apr 2013 22:59:46 +0100 Subject: [PATCH] stat,tail: improve support for snfs The StorNext distributed file system was previously known as CVFS. * src/stat.c (human_fstype): Add new file system ID definition. * NEWS: Mention the improvement. Fixes http://bugs.gnu.org/14251 --- NEWS | 2 +- src/stat.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/NEWS b/NEWS index fc05b8a..3edb946 100644 --- a/NEWS +++ b/NEWS @@ -32,7 +32,7 @@ GNU coreutils NEWS -*- outline -*- ** Improvements - stat and tail work better with EFIVARFS, EXOFS, F2FS and UBIFS. + stat and tail work better with EFIVARFS, EXOFS, F2FS, SNFS and UBIFS. stat -f --format=%T now reports the file system type, and tail -f now uses inotify for files on those file systems, rather than the default (for unknown file system types) of issuing a warning and reverting to polling. diff --git a/src/stat.c b/src/stat.c index 8ba958a..a1d558c 100644 --- a/src/stat.c +++ b/src/stat.c @@ -399,6 +399,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "selinux"; case S_MAGIC_SMB: /* 0x517B remote */ return "smb"; + case S_MAGIC_SNFS: /* 0xBEEFDEAD remote */ + return "snfs"; case S_MAGIC_SOCKFS: /* 0x534F434B local */ return "sockfs"; case S_MAGIC_SQUASHFS: /* 0x73717368 local */ -- 1.7.7.6