diff options
Diffstat (limited to 'fs/gfs2/super.c')
| -rw-r--r-- | fs/gfs2/super.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/gfs2/super.c b/fs/gfs2/super.c index 713e621c240..f3d6bbfb32c 100644 --- a/fs/gfs2/super.c +++ b/fs/gfs2/super.c @@ -838,7 +838,7 @@ static int gfs2_make_fs_ro(struct gfs2_sbd *sdp)  	int error;  	flush_workqueue(gfs2_delete_workqueue); -	gfs2_quota_sync(sdp->sd_vfs, 0, 1); +	gfs2_quota_sync(sdp->sd_vfs, 0);  	gfs2_statfs_sync(sdp->sd_vfs, 0);  	error = gfs2_glock_nq_init(sdp->sd_trans_gl, LM_ST_SHARED, GL_NOCACHE, @@ -952,6 +952,8 @@ restart:  static int gfs2_sync_fs(struct super_block *sb, int wait)  {  	struct gfs2_sbd *sdp = sb->s_fs_info; + +	gfs2_quota_sync(sb, -1);  	if (wait && sdp)  		gfs2_log_flush(sdp, NULL);  	return 0;  |