diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/quotaops.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index 36353d95c8db..047310fa22fb 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h | |||
@@ -20,7 +20,7 @@ static inline struct quota_info *sb_dqopt(struct super_block *sb) | |||
20 | /* | 20 | /* |
21 | * declaration of quota_function calls in kernel. | 21 | * declaration of quota_function calls in kernel. |
22 | */ | 22 | */ |
23 | void sync_dquots(struct super_block *sb, int type); | 23 | void sync_quota_sb(struct super_block *sb, int type); |
24 | 24 | ||
25 | int dquot_initialize(struct inode *inode, int type); | 25 | int dquot_initialize(struct inode *inode, int type); |
26 | int dquot_drop(struct inode *inode); | 26 | int dquot_drop(struct inode *inode); |
@@ -253,12 +253,7 @@ static inline void vfs_dq_free_inode(struct inode *inode) | |||
253 | inode->i_sb->dq_op->free_inode(inode, 1); | 253 | inode->i_sb->dq_op->free_inode(inode, 1); |
254 | } | 254 | } |
255 | 255 | ||
256 | /* The following two functions cannot be called inside a transaction */ | 256 | /* Cannot be called inside a transaction */ |
257 | static inline void vfs_dq_sync(struct super_block *sb) | ||
258 | { | ||
259 | sync_dquots(sb, -1); | ||
260 | } | ||
261 | |||
262 | static inline int vfs_dq_off(struct super_block *sb, int remount) | 257 | static inline int vfs_dq_off(struct super_block *sb, int remount) |
263 | { | 258 | { |
264 | int ret = -ENOSYS; | 259 | int ret = -ENOSYS; |
@@ -334,7 +329,7 @@ static inline void vfs_dq_free_inode(struct inode *inode) | |||
334 | { | 329 | { |
335 | } | 330 | } |
336 | 331 | ||
337 | static inline void vfs_dq_sync(struct super_block *sb) | 332 | static inline void sync_quota_sb(struct super_block *sb, int type) |
338 | { | 333 | { |
339 | } | 334 | } |
340 | 335 | ||