aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
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 /include/linux/fs.h
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 '')
-rw-r--r--include/linux/fs.h3
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;