Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1315744
| From | Jaegeuk Kim <jaegeuk@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 4/4] f2fs: use writepages->lock for WB_SYNC_ALL |
| Date | 2016-01-23 21:20 +0100 |
| Message-ID | <qUcP7-81a-15@gated-at.bofh.it> (permalink) |
| References | <qUcP7-81a-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
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 <jaegeuk@kernel.org>
---
fs/f2fs/data.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
index 7d9f1d9..8d0d9ec 100644
--- a/fs/f2fs/data.c
+++ b/fs/f2fs/data.c
@@ -1403,7 +1403,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;
}
--
2.6.3
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 4/4] f2fs: use writepages->lock for WB_SYNC_ALL Jaegeuk Kim <jaegeuk@kernel.org> - 2016-01-23 21:20 +0100
csiph-web