diff options
author | Christoph Hellwig <hch@infradead.org> | 2010-03-03 09:05:03 -0500 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2010-03-04 18:20:29 -0500 |
commit | b43fa8284d7790d9cca32c9c55e24f29be2fa33b (patch) | |
tree | acb7f205fe2a1ae324e0e11c50f43baaa6b8dfab /include | |
parent | 759bfee658beab14af7b357156461d0eb852be2c (diff) |
dquot: cleanup dquot transfer routine
Get rid of the transfer dquot operation - it is now always called from
the filesystem and if a filesystem really needs it's own (which none
currently does) it can just call into it's own routine directly.
Rename the now static low-level dquot_transfer helper to __dquot_transfer
and vfs_dq_transfer to dquot_transfer to have a consistent namespace,
and make the new dquot_transfer return a normal negative errno value
which all callers expect.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/quota.h | 1 | ||||
-rw-r--r-- | include/linux/quotaops.h | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/include/linux/quota.h b/include/linux/quota.h index e3b07895d327..422e6aa78edc 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h | |||
@@ -297,7 +297,6 @@ struct quota_format_ops { | |||
297 | struct dquot_operations { | 297 | struct dquot_operations { |
298 | int (*initialize) (struct inode *, int); | 298 | int (*initialize) (struct inode *, int); |
299 | int (*drop) (struct inode *); | 299 | int (*drop) (struct inode *); |
300 | int (*transfer) (struct inode *, qid_t *, unsigned long); | ||
301 | int (*write_dquot) (struct dquot *); /* Ordinary dquot write */ | 300 | int (*write_dquot) (struct dquot *); /* Ordinary dquot write */ |
302 | struct dquot *(*alloc_dquot)(struct super_block *, int); /* Allocate memory for new dquot */ | 301 | struct dquot *(*alloc_dquot)(struct super_block *, int); /* Allocate memory for new dquot */ |
303 | void (*destroy_dquot)(struct dquot *); /* Free memory for dquot */ | 302 | void (*destroy_dquot)(struct dquot *); /* Free memory for dquot */ |
diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index 9ce7f051a4ba..fa27b7218c82 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h | |||
@@ -42,7 +42,6 @@ int dquot_alloc_inode(const struct inode *inode); | |||
42 | int dquot_claim_space_nodirty(struct inode *inode, qsize_t number); | 42 | int dquot_claim_space_nodirty(struct inode *inode, qsize_t number); |
43 | void dquot_free_inode(const struct inode *inode); | 43 | void dquot_free_inode(const struct inode *inode); |
44 | 44 | ||
45 | int dquot_transfer(struct inode *inode, qid_t *chid, unsigned long mask); | ||
46 | int dquot_commit(struct dquot *dquot); | 45 | int dquot_commit(struct dquot *dquot); |
47 | int dquot_acquire(struct dquot *dquot); | 46 | int dquot_acquire(struct dquot *dquot); |
48 | int dquot_release(struct dquot *dquot); | 47 | int dquot_release(struct dquot *dquot); |
@@ -66,7 +65,7 @@ int vfs_get_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *d | |||
66 | int vfs_set_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di); | 65 | int vfs_set_dqblk(struct super_block *sb, int type, qid_t id, struct if_dqblk *di); |
67 | 66 | ||
68 | void vfs_dq_drop(struct inode *inode); | 67 | void vfs_dq_drop(struct inode *inode); |
69 | int vfs_dq_transfer(struct inode *inode, struct iattr *iattr); | 68 | int dquot_transfer(struct inode *inode, struct iattr *iattr); |
70 | int vfs_dq_quota_on_remount(struct super_block *sb); | 69 | int vfs_dq_quota_on_remount(struct super_block *sb); |
71 | 70 | ||
72 | static inline struct mem_dqinfo *sb_dqinfo(struct super_block *sb, int type) | 71 | static inline struct mem_dqinfo *sb_dqinfo(struct super_block *sb, int type) |
@@ -234,7 +233,7 @@ static inline int vfs_dq_quota_on_remount(struct super_block *sb) | |||
234 | return 0; | 233 | return 0; |
235 | } | 234 | } |
236 | 235 | ||
237 | static inline int vfs_dq_transfer(struct inode *inode, struct iattr *iattr) | 236 | static inline int dquot_transfer(struct inode *inode, struct iattr *iattr) |
238 | { | 237 | { |
239 | return 0; | 238 | return 0; |
240 | } | 239 | } |