Skip to content

Commit

Permalink
quota: cleanup dquota sync functions (version 4)
Browse files Browse the repository at this point in the history
Currently the VFS calls vfs_dq_sync to sync out disk quotas for a given
superblock.  This is a small wrapper around sync_dquots which for the
case of a non-NULL superblock is a small wrapper around quota_sync_sb.

Just make quota_sync_sb global (rename it to sync_quota_sb) and call it
directly.  Also call it directly for those cases in quota.c that have a
superblock and leave sync_dquots purely an iterator over sync_quota_sb and
remove it's superblock argument.

To make this nicer move the check for the lack of a quota_sync method
from the callers into sync_quota_sb.

[folded build fix from Alexander Beregalov <[email protected]>]

Signed-off-by: Christoph Hellwig <[email protected]>
Signed-off-by: Jan Kara <[email protected]>
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Christoph Hellwig authored and Al Viro committed Jun 12, 2009
1 parent 60b0680 commit 850b201
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 20 deletions.
25 changes: 14 additions & 11 deletions fs/quota/quota.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,10 +159,14 @@ static int check_quotactl_valid(struct super_block *sb, int type, int cmd,
return error;
}

static void quota_sync_sb(struct super_block *sb, int type)
#ifdef CONFIG_QUOTA
void sync_quota_sb(struct super_block *sb, int type)
{
int cnt;

if (!sb->s_qcop->quota_sync)
return;

sb->s_qcop->quota_sync(sb, type);

if (sb_dqopt(sb)->flags & DQUOT_QUOTA_SYS_FILE)
Expand Down Expand Up @@ -191,17 +195,13 @@ static void quota_sync_sb(struct super_block *sb, int type)
}
mutex_unlock(&sb_dqopt(sb)->dqonoff_mutex);
}
#endif

void sync_dquots(struct super_block *sb, int type)
static void sync_dquots(int type)
{
struct super_block *sb;
int cnt;

if (sb) {
if (sb->s_qcop->quota_sync)
quota_sync_sb(sb, type);
return;
}

spin_lock(&sb_lock);
restart:
list_for_each_entry(sb, &super_blocks, s_list) {
Expand All @@ -222,8 +222,8 @@ void sync_dquots(struct super_block *sb, int type)
sb->s_count++;
spin_unlock(&sb_lock);
down_read(&sb->s_umount);
if (sb->s_root && sb->s_qcop->quota_sync)
quota_sync_sb(sb, type);
if (sb->s_root)
sync_quota_sb(sb, type);
up_read(&sb->s_umount);
spin_lock(&sb_lock);
if (__put_super_and_need_restart(sb))
Expand Down Expand Up @@ -301,7 +301,10 @@ static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id,
return sb->s_qcop->set_dqblk(sb, type, id, &idq);
}
case Q_SYNC:
sync_dquots(sb, type);
if (sb)
sync_quota_sb(sb, type);
else
sync_dquots(type);
return 0;

case Q_XQUOTAON:
Expand Down
2 changes: 1 addition & 1 deletion fs/sync.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*/
static int __sync_filesystem(struct super_block *sb, int wait)
{
vfs_dq_sync(sb);
sync_quota_sb(sb, -1);
sync_inodes_sb(sb, wait);
lock_super(sb);
if (sb->s_dirt && sb->s_op->write_super)
Expand Down
11 changes: 3 additions & 8 deletions include/linux/quotaops.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ static inline struct quota_info *sb_dqopt(struct super_block *sb)
/*
* declaration of quota_function calls in kernel.
*/
void sync_dquots(struct super_block *sb, int type);
void sync_quota_sb(struct super_block *sb, int type);

int dquot_initialize(struct inode *inode, int type);
int dquot_drop(struct inode *inode);
Expand Down Expand Up @@ -253,12 +253,7 @@ static inline void vfs_dq_free_inode(struct inode *inode)
inode->i_sb->dq_op->free_inode(inode, 1);
}

/* The following two functions cannot be called inside a transaction */
static inline void vfs_dq_sync(struct super_block *sb)
{
sync_dquots(sb, -1);
}

/* Cannot be called inside a transaction */
static inline int vfs_dq_off(struct super_block *sb, int remount)
{
int ret = -ENOSYS;
Expand Down Expand Up @@ -334,7 +329,7 @@ static inline void vfs_dq_free_inode(struct inode *inode)
{
}

static inline void vfs_dq_sync(struct super_block *sb)
static inline void sync_quota_sb(struct super_block *sb, int type)
{
}

Expand Down

0 comments on commit 850b201

Please sign in to comment.