From 53db8d6479019474a14b8b858e83ace450195034 Mon Sep 17 00:00:00 2001 From: Pádraig Brady Date: Tue, 22 Dec 2009 12:21:45 +0000 Subject: stat: Recognize k-afs, gfs, ocfs2 file system types * src/stat.c (human_fstype): Add k-afs, gfs/gfs2 and ocfs2. * NEWS: Update the stat -f entry. --- src/stat.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/stat.c b/src/stat.c index 2fdaffe03..025d5f449 100644 --- a/src/stat.c +++ b/src/stat.c @@ -268,6 +268,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "fusectl"; case S_MAGIC_FUTEXFS: /* 0x0BAD1DEA */ return "futexfs"; + case S_MAGIC_GFS: /* 0x1161970 */ + return "gfs/gfs2"; case S_MAGIC_HFS: /* 0x4244 */ return "hfs"; case S_MAGIC_HPFS: /* 0xF995E849 */ @@ -288,6 +290,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "jffs2"; case S_MAGIC_JFS: /* 0x3153464A */ return "jfs"; + case S_MAGIC_KAFS: /* 0x6B414653 */ + return "k-afs"; case S_MAGIC_LUSTRE: /* 0x0BD00BD0 */ return "lustre"; case S_MAGIC_MINIX: /* 0x137F */ @@ -314,6 +318,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "ntfs"; case S_MAGIC_OPENPROM: /* 0x9FA1 */ return "openprom"; + case S_MAGIC_OCFS2: /* 0x7461636f */ + return "ocfs2"; case S_MAGIC_PROC: /* 0x9FA0 */ return "proc"; case S_MAGIC_QNX4: /* 0x002F */ -- cgit v1.2.3-54-g00ecf