aboutsummaryrefslogtreecommitdiffstats
path: root/fs/super.c
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2014-09-29 15:10:26 +0200
committerJan Kara <jack@suse.cz>2014-11-10 10:06:18 +0100
commit75cbe701a4251fcd8b846d52ae42f88c9a8e5e93 (patch)
tree9245cff4fe35d6b2880a559f936006ecfcf445e1 /fs/super.c
parentjfs: Convert to private i_dquot field (diff)
downloadlinux-dev-75cbe701a4251fcd8b846d52ae42f88c9a8e5e93.tar.xz
linux-dev-75cbe701a4251fcd8b846d52ae42f88c9a8e5e93.zip
vfs: Remove i_dquot field from inode
All filesystems using VFS quotas are now converted to use their private i_dquot fields. Remove the i_dquot field from generic inode structure. Acked-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/super.c')
-rw-r--r--fs/super.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/super.c b/fs/super.c
index 4512281df8ff..eae088f6aaae 100644
--- a/fs/super.c
+++ b/fs/super.c
@@ -218,12 +218,6 @@ static struct super_block *alloc_super(struct file_system_type *type, int flags)
atomic_set(&s->s_active, 1);
mutex_init(&s->s_vfs_rename_mutex);
lockdep_set_class(&s->s_vfs_rename_mutex, &type->s_vfs_rename_key);
- /*
- * For now MAXQUOTAS check in do_quotactl() will limit quota type
- * appropriately. When each fs sets allowed_types, we can remove the
- * line below
- */
- s->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
mutex_init(&s->s_dquot.dqio_mutex);
mutex_init(&s->s_dquot.dqonoff_mutex);
s->s_maxbytes = MAX_NON_LFS;