mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-08 23:55:14 +00:00
block: Fix setting bio flags in drivers (sd_dif/floppy)
Fix setting bio flags in drivers (sd_dif/floppy). Signed-off-by: Muthukumar R <muthur@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
fe316bf2d5
commit
12ebffd146
2 changed files with 2 additions and 2 deletions
|
@ -3832,7 +3832,7 @@ static int __floppy_read_block_0(struct block_device *bdev)
|
||||||
bio.bi_size = size;
|
bio.bi_size = size;
|
||||||
bio.bi_bdev = bdev;
|
bio.bi_bdev = bdev;
|
||||||
bio.bi_sector = 0;
|
bio.bi_sector = 0;
|
||||||
bio.bi_flags = BIO_QUIET;
|
bio.bi_flags = (1 << BIO_QUIET);
|
||||||
init_completion(&complete);
|
init_completion(&complete);
|
||||||
bio.bi_private = &complete;
|
bio.bi_private = &complete;
|
||||||
bio.bi_end_io = floppy_rb0_complete;
|
bio.bi_end_io = floppy_rb0_complete;
|
||||||
|
|
|
@ -408,7 +408,7 @@ int sd_dif_prepare(struct request *rq, sector_t hw_sector, unsigned int sector_s
|
||||||
kunmap_atomic(sdt, KM_USER0);
|
kunmap_atomic(sdt, KM_USER0);
|
||||||
}
|
}
|
||||||
|
|
||||||
bio->bi_flags |= BIO_MAPPED_INTEGRITY;
|
bio->bi_flags |= (1 << BIO_MAPPED_INTEGRITY);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue