aboutsummaryrefslogtreecommitdiffstats
path: root/fs/quota
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/quota
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/quota')
-rw-r--r--fs/quota/dquot.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c
index b80d1fe56f83..8f0acef3d184 100644
--- a/fs/quota/dquot.c
+++ b/fs/quota/dquot.c
@@ -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);
}