diff options
author | Christoph Hellwig <hch@lst.de> | 2018-09-24 10:43:53 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-09-24 21:33:59 +0300 |
commit | 6e768461c215eaf8912e6c23e40fdff1cd962aca (patch) | |
tree | bffe8520b8509cec995de30b555bdc1c5e9f8ed7 /arch/m68k | |
parent | 3dccdae54fe836a22cee9dc6df9fd1708ae075ce (diff) | |
download | linux-6e768461c215eaf8912e6c23e40fdff1cd962aca.tar.xz |
block: remove bvec_to_phys
We only use it in biovec_phys_mergeable and a m68k paravirt driver,
so just opencode it there. Also remove the pointless unsigned long cast
for the offset in the opencoded instances.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/emu/nfblock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/emu/nfblock.c b/arch/m68k/emu/nfblock.c index e9110b9b8bcd..38049357d6d3 100644 --- a/arch/m68k/emu/nfblock.c +++ b/arch/m68k/emu/nfblock.c @@ -73,7 +73,7 @@ static blk_qc_t nfhd_make_request(struct request_queue *queue, struct bio *bio) len = bvec.bv_len; len >>= 9; nfhd_read_write(dev->id, 0, dir, sec >> shift, len >> shift, - bvec_to_phys(&bvec)); + page_to_phys(bvec.bv_page) + bvec.bv_offset); sec += len; } bio_endio(bio); |