hc
2024-05-10 ee930fffee469d076998274a2ca55e13dc1efb67
kernel/include/uapi/linux/magic.h
....@@ -19,6 +19,7 @@
1919 #define SQUASHFS_MAGIC 0x73717368
2020 #define ECRYPTFS_SUPER_MAGIC 0xf15f
2121 #define EFS_SUPER_MAGIC 0x414A53
22
+#define EROFS_SUPER_MAGIC_V1 0xE0F5E1E2
2223 #define EXT2_SUPER_MAGIC 0xEF53
2324 #define EXT3_SUPER_MAGIC 0xEF53
2425 #define XENFS_SUPER_MAGIC 0xabba1974
....@@ -29,6 +30,7 @@
2930 #define HPFS_SUPER_MAGIC 0xf995e849
3031 #define ISOFS_SUPER_MAGIC 0x9660
3132 #define JFFS2_SUPER_MAGIC 0x72b6
33
+#define XFS_SUPER_MAGIC 0x58465342 /* "XFSB" */
3234 #define PSTOREFS_MAGIC 0x6165676C
3335 #define EFIVARFS_MAGIC 0xde5e81e4
3436 #define HOSTFS_SUPER_MAGIC 0x00c0ffee
....@@ -55,8 +57,6 @@
5557 #define REISERFS_SUPER_MAGIC_STRING "ReIsErFs"
5658 #define REISER2FS_SUPER_MAGIC_STRING "ReIsEr2Fs"
5759 #define REISER2FS_JR_SUPER_MAGIC_STRING "ReIsEr3Fs"
58
-
59
-#define SDCARDFS_SUPER_MAGIC 0x5dca2df5
6060
6161 #define SMB_SUPER_MAGIC 0x517B
6262 #define CGROUP_SUPER_MAGIC 0x27e0eb
....@@ -87,11 +87,15 @@
8787 #define NSFS_MAGIC 0x6e736673
8888 #define BPF_FS_MAGIC 0xcafe4a11
8989 #define AAFS_MAGIC 0x5a3c69f0
90
+#define ZONEFS_MAGIC 0x5a4f4653
9091
9192 /* Since UDF 2.01 is ISO 13346 based... */
9293 #define UDF_SUPER_MAGIC 0x15013346
9394 #define BALLOON_KVM_MAGIC 0x13661366
9495 #define ZSMALLOC_MAGIC 0x58295829
9596 #define DMA_BUF_MAGIC 0x444d4142 /* "DMAB" */
97
+#define DEVMEM_MAGIC 0x454d444d /* "DMEM" */
98
+#define Z3FOLD_MAGIC 0x33
99
+#define PPC_CMM_MAGIC 0xc7571590
96100
97101 #endif /* __LINUX_MAGIC_H__ */