Blame view

include/linux/magic.h 2.34 KB
e18fa700c   Jeff Garzik   Move several *_SU...
1
2
3
4
5
  #ifndef __LINUX_MAGIC_H__
  #define __LINUX_MAGIC_H__
  
  #define ADFS_SUPER_MAGIC	0xadf5
  #define AFFS_SUPER_MAGIC	0xadff
dd2c56599   Adam Megacz   [PATCH] Add AFS_S...
6
  #define AFS_SUPER_MAGIC                0x5346414F
e18fa700c   Jeff Garzik   Move several *_SU...
7
8
  #define AUTOFS_SUPER_MAGIC	0x0187
  #define CODA_SUPER_MAGIC	0x73757245
8688b8635   Mike Frysinger   linux/magic.h: mo...
9
10
  #define CRAMFS_MAGIC		0x28cd3d45	/* some random number */
  #define CRAMFS_MAGIC_WEND	0x453dcd28	/* magic number with the wrong endianess */
925629278   Mimi Zohar   integrity: specia...
11
12
13
  #define DEBUGFS_MAGIC          0x64626720
  #define SYSFS_MAGIC		0x62656572
  #define SECURITYFS_MAGIC	0x73636673
75834fc3b   Eric Paris   SELinux: move SEL...
14
  #define SELINUX_MAGIC		0xf97cff8c
a7e3108cc   maximilian attems   ramfs: move RAMFS...
15
  #define RAMFS_MAGIC		0x858458f6	/* some random number */
925629278   Mimi Zohar   integrity: specia...
16
  #define TMPFS_MAGIC		0x01021994
1fd7317d0   Nick Black   Move magic number...
17
  #define HUGETLBFS_MAGIC 	0x958458f6	/* some random number */
1bcbf3133   Qinghuang Feng   btrfs & squashfs:...
18
  #define SQUASHFS_MAGIC		0x73717368
2a8652f4e   Roberto Sassu   ecryptfs: moved E...
19
  #define ECRYPTFS_SUPER_MAGIC	0xf15f
e18fa700c   Jeff Garzik   Move several *_SU...
20
21
22
  #define EFS_SUPER_MAGIC		0x414A53
  #define EXT2_SUPER_MAGIC	0xEF53
  #define EXT3_SUPER_MAGIC	0xEF53
1107ba885   Alex Zeffertt   xen: add xenfs to...
23
  #define XENFS_SUPER_MAGIC	0xabba1974
02ea2104c   Mingming Cao   [PATCH] ext4: ena...
24
  #define EXT4_SUPER_MAGIC	0xEF53
1bcbf3133   Qinghuang Feng   btrfs & squashfs:...
25
  #define BTRFS_SUPER_MAGIC	0x9123683E
4d3cf1bc5   Jiro SEKIBA   nilfs2: move NILF...
26
  #define NILFS_SUPER_MAGIC	0x3434
e18fa700c   Jeff Garzik   Move several *_SU...
27
28
29
  #define HPFS_SUPER_MAGIC	0xf995e849
  #define ISOFS_SUPER_MAGIC	0x9660
  #define JFFS2_SUPER_MAGIC	0x72b6
5dc8bf813   Davide Libenzi   signal/timer/even...
30
  #define ANON_INODE_FS_MAGIC	0x09041934
ca01d6dd2   Tony Luck   pstore: new files...
31
  #define PSTOREFS_MAGIC		0x6165676C
e18fa700c   Jeff Garzik   Move several *_SU...
32

b6eb48d02   Sami Kerola   minix: describe u...
33
34
35
36
37
  #define MINIX_SUPER_MAGIC	0x137F		/* minix v1 fs, 14 char names */
  #define MINIX_SUPER_MAGIC2	0x138F		/* minix v1 fs, 30 char names */
  #define MINIX2_SUPER_MAGIC	0x2468		/* minix v2 fs, 14 char names */
  #define MINIX2_SUPER_MAGIC2	0x2478		/* minix v2 fs, 30 char names */
  #define MINIX3_SUPER_MAGIC	0x4d5a		/* minix v3 fs, 60 char names */
e18fa700c   Jeff Garzik   Move several *_SU...
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  
  #define MSDOS_SUPER_MAGIC	0x4d44		/* MD */
  #define NCP_SUPER_MAGIC		0x564c		/* Guess, what 0x564c is :-) */
  #define NFS_SUPER_MAGIC		0x6969
  #define OPENPROM_SUPER_MAGIC	0x9fa1
  #define PROC_SUPER_MAGIC	0x9fa0
  #define QNX4_SUPER_MAGIC	0x002f		/* qnx4 fs detection */
  
  #define REISERFS_SUPER_MAGIC	0x52654973	/* used by gcc */
  					/* used by file system utilities that
  	                                   look at the superblock, etc.  */
  #define REISERFS_SUPER_MAGIC_STRING	"ReIsErFs"
  #define REISER2FS_SUPER_MAGIC_STRING	"ReIsEr2Fs"
  #define REISER2FS_JR_SUPER_MAGIC_STRING	"ReIsEr3Fs"
  
  #define SMB_SUPER_MAGIC		0x517B
  #define USBDEVICE_SUPER_MAGIC	0x9fa2
ddbcc7e8e   Paul Menage   Task Control Grou...
55
  #define CGROUP_SUPER_MAGIC	0x27e0eb
e18fa700c   Jeff Garzik   Move several *_SU...
56

fd5eea421   Andrey Mirkin   change inotifyfs ...
57
  #define FUTEXFS_SUPER_MAGIC	0xBAD1DEA
fd5eea421   Andrey Mirkin   change inotifyfs ...
58

7c9f8861e   Eric Sandeen   stackprotector: u...
59
  #define STACK_END_MAGIC		0x57AC6E9D
1fd7317d0   Nick Black   Move magic number...
60
61
62
  
  #define DEVPTS_SUPER_MAGIC	0x1cd1
  #define SOCKFS_MAGIC		0x534F434B
368c09d2a   M. Mohan Kumar   9p: Use V9FS_MAGI...
63
  #define V9FS_MAGIC		0x01021997
1fd7317d0   Nick Black   Move magic number...
64

e18fa700c   Jeff Garzik   Move several *_SU...
65
  #endif /* __LINUX_MAGIC_H__ */