diff options
author | Jan Kara <jack@suse.cz> | 2014-09-29 17:10:26 +0400 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2014-11-10 12:06:18 +0300 |
commit | 75cbe701a4251fcd8b846d52ae42f88c9a8e5e93 (patch) | |
tree | 9245cff4fe35d6b2880a559f936006ecfcf445e1 /include/linux/fs.h | |
parent | 507e1fa697097b4885008f16354822f8d0c33a5d (diff) | |
download | linux-75cbe701a4251fcd8b846d52ae42f88c9a8e5e93.tar.xz |
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 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 8c093ad49522..6eb5337688bd 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -606,9 +606,6 @@ struct inode { const struct file_operations *i_fop; /* former ->i_op->default_file_ops */ struct file_lock *i_flock; struct address_space i_data; -#ifdef CONFIG_QUOTA - struct dquot *i_dquot[MAXQUOTAS]; -#endif struct list_head i_devices; union { struct pipe_inode_info *i_pipe; |