diff options
Diffstat (limited to 'fs/jfs/super.c')
| -rw-r--r-- | fs/jfs/super.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/jfs/super.c b/fs/jfs/super.c index 4a82950f412f..c55c7452d285 100644 --- a/fs/jfs/super.c +++ b/fs/jfs/super.c @@ -601,6 +601,11 @@ static int jfs_sync_fs(struct super_block *sb, int wait)  	/* log == NULL indicates read-only mount */  	if (log) { +		/* +		 * Write quota structures to quota file, sync_blockdev() will +		 * write them to disk later +		 */ +		dquot_writeback_dquots(sb, -1);  		jfs_flush_journal(log, wait);  		jfs_syncpt(log, 0);  	}  | 
