diff options
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/fs.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 2b124c825e38..aa76dae673eb 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1314,9 +1314,9 @@ extern spinlock_t sb_lock; | |||
1314 | struct super_block { | 1314 | struct super_block { |
1315 | struct list_head s_list; /* Keep this first */ | 1315 | struct list_head s_list; /* Keep this first */ |
1316 | dev_t s_dev; /* search index; _not_ kdev_t */ | 1316 | dev_t s_dev; /* search index; _not_ kdev_t */ |
1317 | unsigned long s_blocksize; | ||
1318 | unsigned char s_blocksize_bits; | ||
1319 | unsigned char s_dirt; | 1317 | unsigned char s_dirt; |
1318 | unsigned char s_blocksize_bits; | ||
1319 | unsigned long s_blocksize; | ||
1320 | loff_t s_maxbytes; /* Max file size */ | 1320 | loff_t s_maxbytes; /* Max file size */ |
1321 | struct file_system_type *s_type; | 1321 | struct file_system_type *s_type; |
1322 | const struct super_operations *s_op; | 1322 | const struct super_operations *s_op; |
@@ -1357,16 +1357,16 @@ struct super_block { | |||
1357 | void *s_fs_info; /* Filesystem private info */ | 1357 | void *s_fs_info; /* Filesystem private info */ |
1358 | fmode_t s_mode; | 1358 | fmode_t s_mode; |
1359 | 1359 | ||
1360 | /* Granularity of c/m/atime in ns. | ||
1361 | Cannot be worse than a second */ | ||
1362 | u32 s_time_gran; | ||
1363 | |||
1360 | /* | 1364 | /* |
1361 | * The next field is for VFS *only*. No filesystems have any business | 1365 | * The next field is for VFS *only*. No filesystems have any business |
1362 | * even looking at it. You had been warned. | 1366 | * even looking at it. You had been warned. |
1363 | */ | 1367 | */ |
1364 | struct mutex s_vfs_rename_mutex; /* Kludge */ | 1368 | struct mutex s_vfs_rename_mutex; /* Kludge */ |
1365 | 1369 | ||
1366 | /* Granularity of c/m/atime in ns. | ||
1367 | Cannot be worse than a second */ | ||
1368 | u32 s_time_gran; | ||
1369 | |||
1370 | /* | 1370 | /* |
1371 | * Filesystem subtype. If non-empty the filesystem type field | 1371 | * Filesystem subtype. If non-empty the filesystem type field |
1372 | * in /proc/mounts will be "type.subtype" | 1372 | * in /proc/mounts will be "type.subtype" |