commit | 7d5e510944ce60ef0c6c2300a58547679df76db7 | [log] [tgz] |
---|---|---|
author | Jaegeuk Kim <jaegeuk.kim@samsung.com> | Mon Nov 18 17:13:35 2013 +0900 |
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | Mon Dec 23 10:18:00 2013 +0900 |
tree | 37e16294356e0917f04daf1d8494e5ac14383f11 | |
parent | 75c3c8bc88d573d6823fcf2576f5c47e4fc41710 [diff] [blame] |
f2fs: clean up the do_submit_bio flow This patch introduces PAGE_TYPE_OF_BIO() and cleans up do_submit_bio() with it. Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index c73e3df..38963b4 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h
@@ -350,6 +350,7 @@ * with waiting the bio's completion * ... Only can be used with META. */ +#define PAGE_TYPE_OF_BIO(type) ((type) > META ? META : (type)) enum page_type { DATA, NODE,