Lines Matching +full:0 +full:x6000

11 #define EXT2_MAGIC_NUMBER 0xEF53
17 #define EXT2_FEATURE_INCOMPAT_COMPRESSION 0x0001 /* Disk/File compression is used */
18 #define EXT2_FEATURE_INCOMPAT_FILETYPE 0x0002 /* Directory entries record the file type */
19 #define EXT3_FEATURE_INCOMPAT_RECOVER 0x0004 /* Filesystem needs recovery */
20 #define EXT3_FEATURE_INCOMPAT_JOURNAL_DEV 0x0008 /* Filesystem has a separate journal device */
21 #define EXT2_FEATURE_INCOMPAT_META_BG 0x0010 /* Meta block groups */
25 #define EXT2_FEATURE_RO_COMPAT_SPARSE_SUPER 0x0001 /* Sparse Superblock */
26 #define EXT2_FEATURE_RO_COMPAT_LARGE_FILE 0x0002 /* Large file support, 64-bit file size */
27 #define EXT2_FEATURE_RO_COMPAT_BTREE_DIR 0x0004 /* Binary tree sorted directory files */
29 #define EXT2_FEATURE_RO_COMPAT_SUPPORTED (0)
38 #define EXT2_S_IFMT 0xF000 /* format mask */
39 #define EXT2_S_IFSOCK 0xC000 /* socket */
40 #define EXT2_S_IFLNK 0xA000 /* symbolic link */
41 #define EXT2_S_IFREG 0x8000 /* regular file */
42 #define EXT2_S_IFBLK 0x6000 /* block device */
43 #define EXT2_S_IFDIR 0x4000 /* directory */
44 #define EXT2_S_IFCHR 0x2000 /* character device */
45 #define EXT2_S_IFIFO 0x1000 /* fifo */
47 #define EXT2_S_IRUSR 0x100 /* owner may read */
48 #define EXT2_S_IWUSR 0x080 /* owner may write */
49 #define EXT2_S_IXUSR 0x040 /* owner may execute */
50 #define EXT2_S_IRGRP 0x020 /* group members may read */
51 #define EXT2_S_IWGRP 0x010 /* group members may write */
52 #define EXT2_S_IXGRP 0x008 /* group members may execute */
53 #define EXT2_S_IROTH 0x004 /* others may read */
54 #define EXT2_S_IWOTH 0x002 /* others may write */
55 #define EXT2_S_IXOTH 0x001 /* others may execute */
75 #define EXT2_FT_UNKNOWN 0
89 #define EXT2_VALID_FS 0x0001 /* Unmounted cleanly */
90 #define EXT2_ERROR_FS 0x0002 /* Errors detected */
93 #define EXT2_GOOD_OLD_REV 0x0 /* Revision 0 */
94 #define EXT2_DYNAMIC_REV 0x1 /* Revision 1 */