[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [PATCH] stat,tail: add support for the EXFS file system
From: |
Petit, Brent (HPC Data Management and Storage) |
Subject: |
RE: [PATCH] stat,tail: add support for the EXFS file system |
Date: |
Wed, 14 Mar 2018 15:38:26 +0000 |
Hello,
I sent in this patch request awhile back and hadn't seen any responses. So, I'm
checking in on this. Please let me know if there are any questions or concerns,
if I messed something up in the submission, or if there is some additional info
you need from me.
Thanks much,
Brent Petit
-----Original Message-----
From: Petit, Brent (HPC Data Management and Storage)
Sent: Tuesday, January 9, 2018 3:43 PM
To: address@hidden
Cc: Petit, Brent (HPC Data Management and Storage) <address@hidden>
Subject: [PATCH] stat,tail: add support for the EXFS file system
Enhanced XFS (EXFS) is a version of XFS maintained by HPE.
EXFS uses a unique magic number to allow the use of community XFS, and EXFS
filesystems at the same time.
* src/stat.c (human_fstype): Add file system ID definition, and use "exfs" as
the name.
---
src/stat.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/stat.c b/src/stat.c
index 8614a4d11..34e8dcd27 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -324,6 +324,8 @@ human_fstype (STRUCT_STATVFS const *statfsbuf)
return "efivarfs";
case S_MAGIC_EFS: /* 0x00414A53 local */
return "efs";
+ case S_MAGIC_EXFS: /* 0x45584653 local */
+ return "exfs";
case S_MAGIC_EXOFS: /* 0x5DF5 local */
return "exofs";
case S_MAGIC_EXT: /* 0x137D local */
--
2.14.1
- RE: [PATCH] stat,tail: add support for the EXFS file system,
Petit, Brent (HPC Data Management and Storage) <=