From: Christian Goeschel Ndjomouo Date: Thu, 4 Dec 2025 01:31:37 +0000 (-0500) Subject: libmount: add pidfs magic number for fstype check X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6da67c93fd944d00c3c0f70397f7283568816030;p=thirdparty%2Futil-linux.git libmount: add pidfs magic number for fstype check Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/libmount/src/utils.c b/libmount/src/utils.c index 7626b6f91..b9980c88e 100644 --- a/libmount/src/utils.c +++ b/libmount/src/utils.c @@ -510,6 +510,7 @@ const char *mnt_statfs_get_fstype(struct statfs *vfs) case STATFS_OCFS2_MAGIC: return "ocfs2"; case STATFS_OMFS_MAGIC: return "omfs"; case STATFS_OPENPROMFS_MAGIC: return "openpromfs"; + case STATFS_PIDFS_MAGIC: return "pidfs"; case STATFS_PIPEFS_MAGIC: return "pipefs"; case STATFS_PROC_MAGIC: return "proc"; case STATFS_PSTOREFS_MAGIC: return "pstore";