diff options
author | Theodore Ts'o <tytso@mit.edu> | 2010-12-15 20:28:48 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2010-12-15 20:28:48 -0500 |
commit | 673c610033a8202c037ecd068c7a235495acda17 (patch) | |
tree | e47ca541bf33f1d43d4ced9b72d6100853896236 /fs/ext4/ext4.h | |
parent | fd8c37eccdda21153298997417144b38b1623196 (diff) | |
download | linux-3.10-673c610033a8202c037ecd068c7a235495acda17.tar.gz linux-3.10-673c610033a8202c037ecd068c7a235495acda17.tar.bz2 linux-3.10-673c610033a8202c037ecd068c7a235495acda17.zip |
ext4: Move struct ext4_mount_options from ext4.h to super.c
Move the ext4_mount_options structure definition from ext4.h, since it
is only used in super.c.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/ext4.h')
-rw-r--r-- | fs/ext4/ext4.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index 2d93620d092..ddae3c43513 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h @@ -561,22 +561,6 @@ struct ext4_new_group_data { #define EXT4_IOC32_SETVERSION_OLD FS_IOC32_SETVERSION #endif - -/* - * Mount options - */ -struct ext4_mount_options { - unsigned long s_mount_opt; - uid_t s_resuid; - gid_t s_resgid; - unsigned long s_commit_interval; - u32 s_min_batch_time, s_max_batch_time; -#ifdef CONFIG_QUOTA - int s_jquota_fmt; - char *s_qf_names[MAXQUOTAS]; -#endif -}; - /* Max physical block we can addres w/o extents */ #define EXT4_MAX_BLOCK_FILE_PHYS 0xFFFFFFFF |