From 5fdd5c6310098c5ce3cbc608450d5c4104f18c2f Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 1 Jun 2012 09:14:25 +0200 Subject: stat,tail: recognize new file system type: panfs * src/stat.c (human_fstype) [__linux__]: Add a 'case' for the new remote file system type: panfs (0xAAD7AAEA). * NEWS (New features): Mention stat -f. (Bug fixes): Mention it for tail -f. Reported by Travis Gummels in http://bugzilla.redhat.com/827199 --- src/stat.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/stat.c') diff --git a/src/stat.c b/src/stat.c index d80c62448..94b63f61d 100644 --- a/src/stat.c +++ b/src/stat.c @@ -357,6 +357,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "openprom"; case S_MAGIC_OCFS2: /* 0x7461636f remote */ return "ocfs2"; + case S_MAGIC_PANFS: /* 0xAAD7AAEA remote */ + return "panfs"; case S_MAGIC_PIPEFS: /* 0x50495045 remote */ /* FIXME: change syntax or add an optional attribute like "inotify:no". The above is labeled as "remote" so that tail always uses polling, -- cgit v1.2.3-54-g00ecf