diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 386da09f229d..8975a5602931 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -92,6 +92,10 @@ struct inodes_stat_t { | |||
92 | /* File is opened using open(.., 3, ..) and is writeable only for ioctls | 92 | /* File is opened using open(.., 3, ..) and is writeable only for ioctls |
93 | (specialy hack for floppy.c) */ | 93 | (specialy hack for floppy.c) */ |
94 | #define FMODE_WRITE_IOCTL ((__force fmode_t)0x100) | 94 | #define FMODE_WRITE_IOCTL ((__force fmode_t)0x100) |
95 | /* 32bit hashes as llseek() offset (for directories) */ | ||
96 | #define FMODE_32BITHASH ((__force fmode_t)0x200) | ||
97 | /* 64bit hashes as llseek() offset (for directories) */ | ||
98 | #define FMODE_64BITHASH ((__force fmode_t)0x400) | ||
95 | 99 | ||
96 | /* | 100 | /* |
97 | * Don't update ctime and mtime. | 101 | * Don't update ctime and mtime. |