]> git.karo-electronics.de Git - karo-tx-linux.git/commit
f2fs: merge pages with the same sync_mode flag
authorFan Li <fanofcode.li@samsung.com>
Mon, 9 Dec 2013 08:09:00 +0000 (16:09 +0800)
committerJaegeuk Kim <jaegeuk.kim@samsung.com>
Tue, 10 Dec 2013 08:57:22 +0000 (17:57 +0900)
commit8044fda882f1a45a2afbd7909c928713720df9cc
treee9be99c71b6b927d719ebfe6c0616226983a5d63
parent8758e549e105957ead6c0a33c1b96bbfeb78a076
f2fs: merge pages with the same sync_mode flag

Previously f2fs submits most of write requests using WRITE_SYNC, but f2fs_write_data_pages
submits last write requests by sync_mode flags callers pass.

This causes a performance problem since continuous pages with different sync flags
can't be merged in cfq IO scheduler(thanks yu chao for pointing it out), and synchronous
requests often take more time.

This patch makes the following modifies to DATA writebacks:

1. every page will be written back using the sync mode caller pass.
2. only pages with the same sync mode can be merged in one bio request.

These changes are restricted to DATA pages.Other types of writebacks are modified
To remain synchronous.

In my test with tiotest, f2fs sequence write performance is improved by about 7%-10% ,
and this patch has no obvious impact on other performance tests.

Signed-off-by: Fan Li <fanofcode.li@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
fs/f2fs/data.c
fs/f2fs/f2fs.h
fs/f2fs/gc.c
fs/f2fs/segment.c