diff options
author | Christoph Hellwig <hch@lst.de> | 2018-04-03 19:11:46 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2018-05-07 07:15:41 +0200 |
commit | 1d3b9917df9725382f4e0005ecaddee114ebc847 (patch) | |
tree | fb28dbe4e100c5d4127f59ca37d432722b35d81d /drivers/ide/ide-dma.c | |
parent | 21e07dba9fb1179148089d611fc9e6e70d1887c3 (diff) | |
download | blackbird-op-linux-1d3b9917df9725382f4e0005ecaddee114ebc847.tar.gz blackbird-op-linux-1d3b9917df9725382f4e0005ecaddee114ebc847.zip |
ide: kill ide_toggle_bounce
ide_toggle_bounce did select various strange block bounce limits, including
not bouncing at all as soon as an iommu is present in the system. Given
that the dma_map routines now handle any required bounce buffering except
for ISA DMA, and the ide code already must handle either ISA DMA or highmem
at least for iommu equipped systems we can get rid of the block layer
bounce limit setting entirely.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/ide/ide-dma.c')
-rw-r--r-- | drivers/ide/ide-dma.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/ide/ide-dma.c b/drivers/ide/ide-dma.c index 54d4d78ca46a..6f344654ef22 100644 --- a/drivers/ide/ide-dma.c +++ b/drivers/ide/ide-dma.c @@ -180,7 +180,6 @@ EXPORT_SYMBOL_GPL(ide_dma_unmap_sg); void ide_dma_off_quietly(ide_drive_t *drive) { drive->dev_flags &= ~IDE_DFLAG_USING_DMA; - ide_toggle_bounce(drive, 0); drive->hwif->dma_ops->dma_host_set(drive, 0); } @@ -211,7 +210,6 @@ EXPORT_SYMBOL(ide_dma_off); void ide_dma_on(ide_drive_t *drive) { drive->dev_flags |= IDE_DFLAG_USING_DMA; - ide_toggle_bounce(drive, 1); drive->hwif->dma_ops->dma_host_set(drive, 1); } |