diff options
author | Pádraig Brady <P@draigBrady.com> | 2011-06-24 08:22:06 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2011-06-24 13:30:57 +0100 |
commit | 171e1b98152a0433188e19bfcd3e45bb095b7ecb (patch) | |
tree | dfef4d921b804fd84eb81802601c76449ce58f1a | |
parent | 376b19410eb57f36f711750ca75ed30dc1ebddce (diff) | |
download | coreutils-171e1b98152a0433188e19bfcd3e45bb095b7ecb.tar.xz |
stat: recognize MQUEUE and PSTOREFS file systems
* src/stat.c (human_fstype): Add magic numbers for
PSTOREFS and MQUEUE.
-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 c479726da..75e0e391c 100644 --- a/src/stat.c +++ b/src/stat.c @@ -323,6 +323,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "minix v2 (30 char.)"; case S_MAGIC_MINIX_V3: /* 0x4D5A */ return "minix3"; + case S_MAGIC_MQUEUE: /* 0x19800202 */ + return "mqueue"; case S_MAGIC_MSDOS: /* 0x4D44 */ return "msdos"; case S_MAGIC_NCP: /* 0x564C */ @@ -341,6 +343,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf) return "ocfs2"; case S_MAGIC_PROC: /* 0x9FA0 */ return "proc"; + case S_MAGIC_PSTOREFS: /* 0x6165676C */ + return "pstorefs"; case S_MAGIC_QNX4: /* 0x002F */ return "qnx4"; case S_MAGIC_RAMFS: /* 0x858458F6 */ |