Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147835
b: refs/heads/master
c: c3f8a40
h: refs/heads/master
i:
  147833: 6a881d8
  147831: 90e79c0
v: v3
  • Loading branch information
Jan Kara authored and Al Viro committed Jun 12, 2009
1 parent 17f8149 commit 2fedb9b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 850b201b087f5525a0a7278551c2bcd0423c3b26
refs/heads/master: c3f8a40c1cd5591b882497d1d00d43d0e5bb4698
6 changes: 5 additions & 1 deletion trunk/fs/sync.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@
*/
static int __sync_filesystem(struct super_block *sb, int wait)
{
sync_quota_sb(sb, -1);
/* Avoid doing twice syncing and cache pruning for quota sync */
if (!wait)
writeout_quota_sb(sb, -1);
else
sync_quota_sb(sb, -1);
sync_inodes_sb(sb, wait);
lock_super(sb);
if (sb->s_dirt && sb->s_op->write_super)
Expand Down
9 changes: 9 additions & 0 deletions trunk/include/linux/quotaops.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ static inline struct quota_info *sb_dqopt(struct super_block *sb)
* declaration of quota_function calls in kernel.
*/
void sync_quota_sb(struct super_block *sb, int type);
static inline void writeout_quota_sb(struct super_block *sb, int type)
{
if (sb->s_qcop->quota_sync)
sb->s_qcop->quota_sync(sb, type);
}

int dquot_initialize(struct inode *inode, int type);
int dquot_drop(struct inode *inode);
Expand Down Expand Up @@ -333,6 +338,10 @@ static inline void sync_quota_sb(struct super_block *sb, int type)
{
}

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

static inline int vfs_dq_off(struct super_block *sb, int remount)
{
return 0;
Expand Down

0 comments on commit 2fedb9b

Please sign in to comment.