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>
This commit is contained in:
Jan Kara
2014-09-29 15:10:26 +02:00
parent 507e1fa697
commit 75cbe701a4
4 changed files with 0 additions and 15 deletions

View File

@@ -895,9 +895,6 @@ EXPORT_SYMBOL(dqget);
static inline struct dquot **i_dquot(struct inode *inode)
{
/* Temporary workaround until all filesystems are converted. */
if (!inode->i_sb->s_op->get_dquots)
return inode->i_dquot;
return inode->i_sb->s_op->get_dquots(inode);
}