diff options
author | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-09-22 16:21:07 -0700 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2014-09-23 11:10:18 -0700 |
commit | 90a893c749f4582f21e97639f4e85e7f2362c2f0 (patch) | |
tree | 01a3e6a5b21361c7fc04c601d63f84a7b62d0020 /fs/f2fs/data.c | |
parent | c52e1b10b175bef84f1681946b4a438cc4c84147 (diff) | |
download | linux-90a893c749f4582f21e97639f4e85e7f2362c2f0.tar.bz2 |
f2fs: use MAX_BIO_BLOCKS(sbi)
This patch cleans up a simple macro.
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs/f2fs/data.c')
-rw-r--r-- | fs/f2fs/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c index fdc3dbe677a1..7749f305b102 100644 --- a/fs/f2fs/data.c +++ b/fs/f2fs/data.c @@ -193,7 +193,7 @@ void f2fs_submit_page_mbio(struct f2fs_sb_info *sbi, struct page *page, __submit_merged_bio(io); alloc_new: if (io->bio == NULL) { - int bio_blocks = MAX_BIO_BLOCKS(max_hw_blocks(sbi)); + int bio_blocks = MAX_BIO_BLOCKS(sbi); io->bio = __bio_alloc(sbi, blk_addr, bio_blocks, is_read); io->fio = *fio; |