summaryrefslogtreecommitdiffstats
path: root/fs/gfs2/ops_fstype.c
diff options
context:
space:
mode:
authorMike Christie <mchristi@redhat.com>2016-06-05 14:31:56 -0500
committerJens Axboe <axboe@fb.com>2016-06-07 13:41:38 -0600
commite1b1afa6f80172f8b5e9a629cbd16392ac66645e (patch)
tree145dc97c00a92b1867decacd612be9036e8fe00f /fs/gfs2/ops_fstype.c
parent04d328defd06257bf386d58f359013e0ef329226 (diff)
downloadlinux-0-day-e1b1afa6f80172f8b5e9a629cbd16392ac66645e.tar.gz
linux-0-day-e1b1afa6f80172f8b5e9a629cbd16392ac66645e.tar.xz
gfs2: use bio op accessors
Separate the op from the rq_flag_bits and have gfs2 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/gfs2/ops_fstype.c')
-rw-r--r--fs/gfs2/ops_fstype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c
index d9e19f61077b9..f423c687f02c7 100644
--- a/fs/gfs2/ops_fstype.c
+++ b/fs/gfs2/ops_fstype.c
@@ -246,7 +246,7 @@ static int gfs2_read_super(struct gfs2_sbd *sdp, sector_t sector, int silent)
bio->bi_end_io = end_bio_io_page;
bio->bi_private = page;
- bio->bi_rw = READ_SYNC | REQ_META;
+ bio_set_op_attrs(bio, REQ_OP_READ, READ_SYNC | REQ_META);
submit_bio(bio);
wait_on_page_locked(page);
bio_put(bio);