aboutsummaryrefslogtreecommitdiffstats
path: root/block/blk-core.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2020-11-23 16:36:02 +0100
committerJens Axboe <axboe@kernel.dk>2020-12-01 14:53:40 -0700
commit83950d359010a493462d58c712b1124c877d1b3b (patch)
tree303ad13fa9390c8764e8dde72119d789f14df769 /block/blk-core.c
parentblock: move make_it_fail to struct block_device (diff)
downloadlinux-dev-83950d359010a493462d58c712b1124c877d1b3b.tar.xz
linux-dev-83950d359010a493462d58c712b1124c877d1b3b.zip
block: move the policy field to struct block_device
Move the policy field to struct block_device and rename it to the more descriptive bd_read_only. Also turn the field into a bool as it is used as such. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Jan Kara <jack@suse.cz> Reviewed-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'block/blk-core.c')
-rw-r--r--block/blk-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/blk-core.c b/block/blk-core.c
index 9121390be97a..d64ffcb6f9ae 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -696,7 +696,7 @@ static inline bool bio_check_ro(struct bio *bio, struct hd_struct *part)
{
const int op = bio_op(bio);
- if (part->policy && op_is_write(op)) {
+ if (part->bdev->bd_read_only && op_is_write(op)) {
char b[BDEVNAME_SIZE];
if (op_is_flush(bio->bi_opf) && !bio_sectors(bio))