Jeff Garzik | e18fa70 | 2006-09-24 11:13:19 -0400 | [diff] [blame] | 1 | #ifndef __LINUX_MAGIC_H__ |
| 2 | #define __LINUX_MAGIC_H__ |
| 3 | |
| 4 | #define ADFS_SUPER_MAGIC 0xadf5 |
| 5 | #define AFFS_SUPER_MAGIC 0xadff |
Adam Megacz | dd2c565 | 2007-01-05 16:36:17 -0800 | [diff] [blame] | 6 | #define AFS_SUPER_MAGIC 0x5346414F |
Jeff Garzik | e18fa70 | 2006-09-24 11:13:19 -0400 | [diff] [blame] | 7 | #define AUTOFS_SUPER_MAGIC 0x0187 |
| 8 | #define CODA_SUPER_MAGIC 0x73757245 |
Mike Frysinger | 8688b86 | 2009-05-26 05:45:04 -0400 | [diff] [blame] | 9 | #define CRAMFS_MAGIC 0x28cd3d45 /* some random number */ |
| 10 | #define CRAMFS_MAGIC_WEND 0x453dcd28 /* magic number with the wrong endianess */ |
Mimi Zohar | 9256292 | 2008-10-07 14:00:12 -0400 | [diff] [blame] | 11 | #define DEBUGFS_MAGIC 0x64626720 |
Mimi Zohar | 9256292 | 2008-10-07 14:00:12 -0400 | [diff] [blame] | 12 | #define SECURITYFS_MAGIC 0x73636673 |
Eric Paris | 75834fc | 2009-05-18 10:26:10 -0400 | [diff] [blame] | 13 | #define SELINUX_MAGIC 0xf97cff8c |
Jarkko Sakkinen | cee7e44 | 2012-11-06 10:17:49 +0200 | [diff] [blame] | 14 | #define SMACK_MAGIC 0x43415d53 /* "SMAC" */ |
maximilian attems | a7e3108 | 2009-09-22 16:45:53 -0700 | [diff] [blame] | 15 | #define RAMFS_MAGIC 0x858458f6 /* some random number */ |
Mimi Zohar | 9256292 | 2008-10-07 14:00:12 -0400 | [diff] [blame] | 16 | #define TMPFS_MAGIC 0x01021994 |
Nick Black | 1fd7317d | 2009-09-22 16:43:33 -0700 | [diff] [blame] | 17 | #define HUGETLBFS_MAGIC 0x958458f6 /* some random number */ |
Qinghuang Feng | 1bcbf31 | 2009-01-15 13:51:03 -0800 | [diff] [blame] | 18 | #define SQUASHFS_MAGIC 0x73717368 |
Roberto Sassu | 2a8652f | 2010-11-03 11:11:15 +0100 | [diff] [blame] | 19 | #define ECRYPTFS_SUPER_MAGIC 0xf15f |
Jeff Garzik | e18fa70 | 2006-09-24 11:13:19 -0400 | [diff] [blame] | 20 | #define EFS_SUPER_MAGIC 0x414A53 |
| 21 | #define EXT2_SUPER_MAGIC 0xEF53 |
| 22 | #define EXT3_SUPER_MAGIC 0xEF53 |
Alex Zeffertt | 1107ba8 | 2009-01-07 18:07:11 -0800 | [diff] [blame] | 23 | #define XENFS_SUPER_MAGIC 0xabba1974 |
Mingming Cao | 02ea210 | 2006-10-11 01:20:56 -0700 | [diff] [blame] | 24 | #define EXT4_SUPER_MAGIC 0xEF53 |
Qinghuang Feng | 1bcbf31 | 2009-01-15 13:51:03 -0800 | [diff] [blame] | 25 | #define BTRFS_SUPER_MAGIC 0x9123683E |
Jiro SEKIBA | 4d3cf1b | 2011-03-10 16:54:15 +0900 | [diff] [blame] | 26 | #define NILFS_SUPER_MAGIC 0x3434 |
Jaegeuk Kim | 39a53e0 | 2012-11-28 13:37:31 +0900 | [diff] [blame] | 27 | #define F2FS_SUPER_MAGIC 0xF2F52010 |
Jeff Garzik | e18fa70 | 2006-09-24 11:13:19 -0400 | [diff] [blame] | 28 | #define HPFS_SUPER_MAGIC 0xf995e849 |
| 29 | #define ISOFS_SUPER_MAGIC 0x9660 |
| 30 | #define JFFS2_SUPER_MAGIC 0x72b6 |
Tony Luck | ca01d6d | 2010-12-28 14:25:21 -0800 | [diff] [blame] | 31 | #define PSTOREFS_MAGIC 0x6165676C |
Matt Fleming | 9171632 | 2012-10-22 15:51:45 +0100 | [diff] [blame] | 32 | #define EFIVARFS_MAGIC 0xde5e81e4 |
James Hogan | 2b3b9bb | 2013-03-27 10:47:13 +0000 | [diff] [blame] | 33 | #define HOSTFS_SUPER_MAGIC 0x00c0ffee |
Stephen Hemminger | 257f871 | 2015-11-04 10:59:52 -0800 | [diff] [blame] | 34 | #define OVERLAYFS_SUPER_MAGIC 0x794c7630 |
Jeff Garzik | e18fa70 | 2006-09-24 11:13:19 -0400 | [diff] [blame] | 35 | |
Sami Kerola | b6eb48d | 2011-11-02 13:37:58 -0700 | [diff] [blame] | 36 | #define MINIX_SUPER_MAGIC 0x137F /* minix v1 fs, 14 char names */ |
| 37 | #define MINIX_SUPER_MAGIC2 0x138F /* minix v1 fs, 30 char names */ |
| 38 | #define MINIX2_SUPER_MAGIC 0x2468 /* minix v2 fs, 14 char names */ |
| 39 | #define MINIX2_SUPER_MAGIC2 0x2478 /* minix v2 fs, 30 char names */ |
| 40 | #define MINIX3_SUPER_MAGIC 0x4d5a /* minix v3 fs, 60 char names */ |
Jeff Garzik | e18fa70 | 2006-09-24 11:13:19 -0400 | [diff] [blame] | 41 | |
| 42 | #define MSDOS_SUPER_MAGIC 0x4d44 /* MD */ |
| 43 | #define NCP_SUPER_MAGIC 0x564c /* Guess, what 0x564c is :-) */ |
| 44 | #define NFS_SUPER_MAGIC 0x6969 |
| 45 | #define OPENPROM_SUPER_MAGIC 0x9fa1 |
Jeff Garzik | e18fa70 | 2006-09-24 11:13:19 -0400 | [diff] [blame] | 46 | #define QNX4_SUPER_MAGIC 0x002f /* qnx4 fs detection */ |
Kai Bankett | 5d026c7 | 2012-02-17 05:59:20 +0100 | [diff] [blame] | 47 | #define QNX6_SUPER_MAGIC 0x68191122 /* qnx6 fs detection */ |
Jeff Garzik | e18fa70 | 2006-09-24 11:13:19 -0400 | [diff] [blame] | 48 | |
| 49 | #define REISERFS_SUPER_MAGIC 0x52654973 /* used by gcc */ |
| 50 | /* used by file system utilities that |
| 51 | look at the superblock, etc. */ |
| 52 | #define REISERFS_SUPER_MAGIC_STRING "ReIsErFs" |
| 53 | #define REISER2FS_SUPER_MAGIC_STRING "ReIsEr2Fs" |
| 54 | #define REISER2FS_JR_SUPER_MAGIC_STRING "ReIsEr3Fs" |
| 55 | |
| 56 | #define SMB_SUPER_MAGIC 0x517B |
Paul Menage | ddbcc7e | 2007-10-18 23:39:30 -0700 | [diff] [blame] | 57 | #define CGROUP_SUPER_MAGIC 0x27e0eb |
Tejun Heo | 67e9c74 | 2015-11-16 11:13:34 -0500 | [diff] [blame] | 58 | #define CGROUP2_SUPER_MAGIC 0x63677270 |
Jeff Garzik | e18fa70 | 2006-09-24 11:13:19 -0400 | [diff] [blame] | 59 | |
Fenghua Yu | 5ff193f | 2016-10-28 15:04:42 -0700 | [diff] [blame] | 60 | #define RDTGROUP_SUPER_MAGIC 0x7655821 |
Andrey Mirkin | fd5eea4 | 2007-10-16 23:30:13 -0700 | [diff] [blame] | 61 | |
Eric Sandeen | 7c9f886 | 2008-04-22 16:38:23 -0500 | [diff] [blame] | 62 | #define STACK_END_MAGIC 0x57AC6E9D |
Nick Black | 1fd7317d | 2009-09-22 16:43:33 -0700 | [diff] [blame] | 63 | |
Steven Rostedt (Red Hat) | 4282d60 | 2015-01-20 11:36:55 -0500 | [diff] [blame] | 64 | #define TRACEFS_MAGIC 0x74726163 |
| 65 | |
M. Mohan Kumar | 368c09d | 2010-09-27 14:17:24 +0530 | [diff] [blame] | 66 | #define V9FS_MAGIC 0x01021997 |
Nick Black | 1fd7317d | 2009-09-22 16:43:33 -0700 | [diff] [blame] | 67 | |
Muthu Kumar | b502bd1 | 2012-03-23 15:01:50 -0700 | [diff] [blame] | 68 | #define BDEVFS_MAGIC 0x62646576 |
Dan Williams | 3bc52c4 | 2016-07-24 21:55:45 -0700 | [diff] [blame] | 69 | #define DAXFS_MAGIC 0x64646178 |
Muthu Kumar | b502bd1 | 2012-03-23 15:01:50 -0700 | [diff] [blame] | 70 | #define BINFMTFS_MAGIC 0x42494e4d |
| 71 | #define DEVPTS_SUPER_MAGIC 0x1cd1 |
| 72 | #define FUTEXFS_SUPER_MAGIC 0xBAD1DEA |
| 73 | #define PIPEFS_MAGIC 0x50495045 |
| 74 | #define PROC_SUPER_MAGIC 0x9fa0 |
| 75 | #define SOCKFS_MAGIC 0x534F434B |
| 76 | #define SYSFS_MAGIC 0x62656572 |
| 77 | #define USBDEVICE_SUPER_MAGIC 0x9fa2 |
| 78 | #define MTD_INODE_FS_MAGIC 0x11307854 |
| 79 | #define ANON_INODE_FS_MAGIC 0x09041934 |
Josef Bacik | 294e30f | 2013-10-09 12:00:56 -0400 | [diff] [blame] | 80 | #define BTRFS_TEST_MAGIC 0x73727279 |
Al Viro | e149ed2 | 2014-11-01 10:57:28 -0400 | [diff] [blame] | 81 | #define NSFS_MAGIC 0x6e736673 |
Daniel Borkmann | b219775 | 2015-10-29 14:58:09 +0100 | [diff] [blame] | 82 | #define BPF_FS_MAGIC 0xcafe4a11 |
Jan Kara | 2a28900 | 2016-04-28 10:40:09 +0200 | [diff] [blame] | 83 | /* Since UDF 2.01 is ISO 13346 based... */ |
| 84 | #define UDF_SUPER_MAGIC 0x15013346 |
Minchan Kim | b1123ea6 | 2016-07-26 15:23:09 -0700 | [diff] [blame] | 85 | #define BALLOON_KVM_MAGIC 0x13661366 |
Minchan Kim | 48b4800 | 2016-07-26 15:23:31 -0700 | [diff] [blame] | 86 | #define ZSMALLOC_MAGIC 0x58295829 |
Muthu Kumar | b502bd1 | 2012-03-23 15:01:50 -0700 | [diff] [blame] | 87 | |
Jeff Garzik | e18fa70 | 2006-09-24 11:13:19 -0400 | [diff] [blame] | 88 | #endif /* __LINUX_MAGIC_H__ */ |