Re: [PATCH 1/5] f2fs: clean up codes with op_is_write()

From: Jaegeuk Kim
Date: Fri Apr 05 2019 - 12:31:45 EST


On 04/02, Chao Yu wrote:
> This patch uses generic function op_is_write() to instead private defined
> macro is_read_io() for cleanup.

I don't see huge reason to clean up this, but do expect huge backporting issue.

Thanks,

>
> Signed-off-by: Chao Yu <yuchao0@xxxxxxxxxx>
> ---
> fs/f2fs/data.c | 25 +++++++++++++------------
> fs/f2fs/f2fs.h | 3 +--
> 2 files changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
> index d87dfa5aa112..22beda1a0c3c 100644
> --- a/fs/f2fs/data.c
> +++ b/fs/f2fs/data.c
> @@ -287,7 +287,7 @@ static struct bio *__bio_alloc(struct f2fs_sb_info *sbi, block_t blk_addr,
> static inline void __submit_bio(struct f2fs_sb_info *sbi,
> struct bio *bio, enum page_type type)
> {
> - if (!is_read_io(bio_op(bio))) {
> + if (op_is_write(bio_op(bio))) {
> unsigned int start;
>
> if (type != DATA && type != NODE)
> @@ -324,10 +324,11 @@ static inline void __submit_bio(struct f2fs_sb_info *sbi,
> set_sbi_flag(sbi, SBI_NEED_CP);
> }
> submit_io:
> - if (is_read_io(bio_op(bio)))
> - trace_f2fs_submit_read_bio(sbi->sb, type, bio);
> - else
> + if (op_is_write(bio_op(bio)))
> trace_f2fs_submit_write_bio(sbi->sb, type, bio);
> + else
> + trace_f2fs_submit_read_bio(sbi->sb, type, bio);
> +
> submit_bio(bio);
> }
>
> @@ -340,10 +341,10 @@ static void __submit_merged_bio(struct f2fs_bio_info *io)
>
> bio_set_op_attrs(io->bio, fio->op, fio->op_flags);
>
> - if (is_read_io(fio->op))
> - trace_f2fs_prepare_read_bio(io->sbi->sb, fio->type, io->bio);
> - else
> + if (op_is_write(fio->op))
> trace_f2fs_prepare_write_bio(io->sbi->sb, fio->type, io->bio);
> + else
> + trace_f2fs_prepare_read_bio(io->sbi->sb, fio->type, io->bio);
>
> __submit_bio(io->sbi, io->bio, fio->type);
> io->bio = NULL;
> @@ -464,20 +465,20 @@ int f2fs_submit_page_bio(struct f2fs_io_info *fio)
>
> /* Allocate a new bio */
> bio = __bio_alloc(fio->sbi, fio->new_blkaddr, fio->io_wbc,
> - 1, is_read_io(fio->op), fio->type, fio->temp);
> + 1, !op_is_write(fio->op), fio->type, fio->temp);
>
> if (bio_add_page(bio, page, PAGE_SIZE, 0) < PAGE_SIZE) {
> bio_put(bio);
> return -EFAULT;
> }
>
> - if (fio->io_wbc && !is_read_io(fio->op))
> + if (fio->io_wbc && op_is_write(fio->op))
> wbc_account_io(fio->io_wbc, page, PAGE_SIZE);
>
> bio_set_op_attrs(bio, fio->op, fio->op_flags);
>
> - inc_page_count(fio->sbi, is_read_io(fio->op) ?
> - __read_io_type(page): WB_DATA_TYPE(fio->page));
> + inc_page_count(fio->sbi, op_is_write(fio->op) ?
> + WB_DATA_TYPE(fio->page) : __read_io_type(page));
>
> __submit_bio(fio->sbi, bio, fio->type);
> return 0;
> @@ -490,7 +491,7 @@ void f2fs_submit_page_write(struct f2fs_io_info *fio)
> struct f2fs_bio_info *io = sbi->write_io[btype] + fio->temp;
> struct page *bio_page;
>
> - f2fs_bug_on(sbi, is_read_io(fio->op));
> + f2fs_bug_on(sbi, !op_is_write(fio->op));
>
> down_write(&io->io_rwsem);
> next:
> diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h
> index 5bc7b99fb9c1..24e7f0e6aab7 100644
> --- a/fs/f2fs/f2fs.h
> +++ b/fs/f2fs/f2fs.h
> @@ -1048,7 +1048,6 @@ struct f2fs_io_info {
> unsigned char version; /* version of the node */
> };
>
> -#define is_read_io(rw) ((rw) == READ)
> struct f2fs_bio_info {
> struct f2fs_sb_info *sbi; /* f2fs superblock */
> struct bio *bio; /* bios to merge */
> @@ -2813,7 +2812,7 @@ static inline void f2fs_update_iostat(struct f2fs_sb_info *sbi,
> #define __is_large_section(sbi) ((sbi)->segs_per_sec > 1)
>
> #define __is_meta_io(fio) (PAGE_TYPE_OF_BIO((fio)->type) == META && \
> - (!is_read_io((fio)->op) || (fio)->is_meta))
> + (op_is_write((fio)->op) || (fio)->is_meta))
>
> bool f2fs_is_valid_blkaddr(struct f2fs_sb_info *sbi,
> block_t blkaddr, int type);
> --
> 2.18.0.rc1