From: Jaegeuk Kim Date: Wed, 20 Jan 2016 15:46:05 +0000 (+0800) Subject: f2fs: use writepages->lock for WB_SYNC_ALL X-Git-Tag: v4.6-rc1~66^2~75 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=25c13551519c66453737e038d104058f94b2e70a;p=linux.git f2fs: use writepages->lock for WB_SYNC_ALL If there are many writepages calls by multiple threads in background, we don't need to serialize to merge all the bios, since it's background. In such the case, it'd better to run writepages concurrently. Signed-off-by: Jaegeuk Kim --- diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index e8d4158a3206..0f0187804eda 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -1402,7 +1402,7 @@ static int f2fs_write_data_pages(struct address_space *mapping, diff = nr_pages_to_write(sbi, DATA, wbc); - if (!S_ISDIR(inode->i_mode)) { + if (!S_ISDIR(inode->i_mode) && wbc->sync_mode == WB_SYNC_ALL) { mutex_lock(&sbi->writepages); locked = true; }