summaryrefslogtreecommitdiff
path: root/fs/quota
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2010-07-21 14:22:21 +0200
committerJan Kara <jack@suse.cz>2010-07-23 12:50:46 +0200
commit43d2932d88e4ab776dd388c20b003ebd5e1d1f1f (patch)
tree04ace338522936dc7e5ed557397bbff6072b4a20 /fs/quota
parentfb5ffb0e160c93c3fe08ab83845eb9a2768af812 (diff)
downloadlinux-3.10-43d2932d88e4ab776dd388c20b003ebd5e1d1f1f.tar.gz
linux-3.10-43d2932d88e4ab776dd388c20b003ebd5e1d1f1f.tar.bz2
linux-3.10-43d2932d88e4ab776dd388c20b003ebd5e1d1f1f.zip
quota: Use mark_inode_dirty_sync instead of mark_inode_dirty
Quota code never touches file data. It just modifies i_blocks + i_bytes of inodes and inode flags of quota files. So use mark_inode_dirty_sync instead of mark_inode_dirty. Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/quota')
-rw-r--r--fs/quota/dquot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c
index b171221000f..a7023bcfae4 100644
--- a/fs/quota/dquot.c
+++ b/fs/quota/dquot.c
@@ -1992,7 +1992,7 @@ int dquot_disable(struct super_block *sb, int type, unsigned int flags)
truncate_inode_pages(&toputinode[cnt]->i_data,
0);
mutex_unlock(&toputinode[cnt]->i_mutex);
- mark_inode_dirty(toputinode[cnt]);
+ mark_inode_dirty_sync(toputinode[cnt]);
}
mutex_unlock(&dqopt->dqonoff_mutex);
}