diff options
author | Mike Christie <mchristi@redhat.com> | 2016-06-05 14:31:55 -0500 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-06-07 13:41:38 -0600 |
commit | 04d328defd06257bf386d58f359013e0ef329226 (patch) | |
tree | b257cfcdf8d5e592a6577d123eb0f3babacbf7bc /fs/f2fs/inline.c | |
parent | 81a75f6781deb7a3b5274b4c683e327e5cb5b883 (diff) | |
download | linux-04d328defd06257bf386d58f359013e0ef329226.tar.gz linux-04d328defd06257bf386d58f359013e0ef329226.tar.bz2 linux-04d328defd06257bf386d58f359013e0ef329226.zip |
f2fs: use bio op accessors
Separate the op from the rq_flag_bits and have f2fs
set/get the bio using bio_set_op_attrs/bio_op.
Signed-off-by: Mike Christie <mchristi@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Hannes Reinecke <hare@suse.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'fs/f2fs/inline.c')
-rw-r--r-- | fs/f2fs/inline.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/f2fs/inline.c b/fs/f2fs/inline.c index a4bb155dd00a..c15e53c1d794 100644 --- a/fs/f2fs/inline.c +++ b/fs/f2fs/inline.c @@ -108,7 +108,8 @@ int f2fs_convert_inline_page(struct dnode_of_data *dn, struct page *page) struct f2fs_io_info fio = { .sbi = F2FS_I_SB(dn->inode), .type = DATA, - .rw = WRITE_SYNC | REQ_PRIO, + .op = REQ_OP_WRITE, + .op_flags = WRITE_SYNC | REQ_PRIO, .page = page, .encrypted_page = NULL, }; |