diff options
author | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2012-12-10 09:26:05 +0900 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2012-12-11 13:43:45 +0900 |
commit | 3cd8a23948b29301f8f67b8d70c5c18fabbc05e1 (patch) | |
tree | e4d9c11d55446e547b4a7830d733126f17ef3e37 /fs/f2fs/f2fs.h | |
parent | 457d08ee4fd91c8df17917ff2d32565e6adacbfc (diff) | |
download | linux-3.10-3cd8a23948b29301f8f67b8d70c5c18fabbc05e1.tar.gz linux-3.10-3cd8a23948b29301f8f67b8d70c5c18fabbc05e1.tar.bz2 linux-3.10-3cd8a23948b29301f8f67b8d70c5c18fabbc05e1.zip |
f2fs: cleanup the f2fs_bio_alloc routine
Do cleanup more for better code readability.
- Change the parameter set of f2fs_bio_alloc()
This function should allocate a bio only since it is not something like
f2fs_bio_init(). Instead, the caller should initialize the allocated bio.
- Introduce SECTOR_FROM_BLOCK
This macro translates a block address to its sector address.
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Reviewed-by: Namjae Jeon <namjae.jeon@samsung.com>
Diffstat (limited to 'fs/f2fs/f2fs.h')
-rw-r--r-- | fs/f2fs/f2fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index 8c3f1ef6ace..2bce3a62c0b 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -924,7 +924,7 @@ void clear_prefree_segments(struct f2fs_sb_info *); int npages_for_summary_flush(struct f2fs_sb_info *); void allocate_new_segments(struct f2fs_sb_info *); struct page *get_sum_page(struct f2fs_sb_info *, unsigned int); -struct bio *f2fs_bio_alloc(struct block_device *, sector_t, int, gfp_t); +struct bio *f2fs_bio_alloc(struct block_device *, int); void f2fs_submit_bio(struct f2fs_sb_info *, enum page_type, bool sync); int write_meta_page(struct f2fs_sb_info *, struct page *, struct writeback_control *); |