aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/floppy.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2017-06-19 09:26:26 +0200
committerJens Axboe <axboe@kernel.dk>2017-06-27 12:13:45 -0600
commit8fc450443e3c489af41a3c9c85b32d38625f2c2a (patch)
treed90a7255a56e63da540cfdf39c2c61581e86db93 /drivers/block/floppy.c
parentblock: don't set bounce limit in blk_init_allocated_queue (diff)
downloadlinux-dev-8fc450443e3c489af41a3c9c85b32d38625f2c2a.tar.xz
linux-dev-8fc450443e3c489af41a3c9c85b32d38625f2c2a.zip
block: don't set bounce limit in blk_init_queue
Instead move it to the callers. Those that either don't use bio_data() or page_address() or are specific to architectures that do not support highmem are skipped. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block/floppy.c')
-rw-r--r--drivers/block/floppy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/floppy.c b/drivers/block/floppy.c
index 9e3cb32e365d..ce823647a9c4 100644
--- a/drivers/block/floppy.c
+++ b/drivers/block/floppy.c
@@ -4203,6 +4203,7 @@ static int __init do_floppy_init(void)
goto out_put_disk;
}
+ blk_queue_bounce_limit(disks[drive]->queue, BLK_BOUNCE_HIGH);
blk_queue_max_hw_sectors(disks[drive]->queue, 64);
disks[drive]->major = FLOPPY_MAJOR;
disks[drive]->first_minor = TOMINOR(drive);