diff options
author | 2022-04-15 06:52:33 +0200 | |
---|---|---|
committer | 2022-04-17 19:49:58 -0600 | |
commit | 817e8b51eb3d927ce6d56ecf9f48bc3c5b26168b (patch) | |
tree | 722bac3bc07a22d83406554e9917feef3b374eeb /drivers/target/target_core_iblock.c | |
parent | target: remove an incorrect unmap zeroes data deduction (diff) | |
download | wireguard-linux-817e8b51eb3d927ce6d56ecf9f48bc3c5b26168b.tar.xz wireguard-linux-817e8b51eb3d927ce6d56ecf9f48bc3c5b26168b.zip |
target: pass a block_device to target_configure_unmap_from_queue
The SCSI target drivers is a consumer of the block layer and shoul
d generally work on struct block_device.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Link: https://lore.kernel.org/r/20220415045258.199825-3-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/target/target_core_iblock.c')
-rw-r--r-- | drivers/target/target_core_iblock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/target/target_core_iblock.c b/drivers/target/target_core_iblock.c index 87ede165ddba..b886ce1770bf 100644 --- a/drivers/target/target_core_iblock.c +++ b/drivers/target/target_core_iblock.c @@ -119,7 +119,7 @@ static int iblock_configure_device(struct se_device *dev) dev->dev_attrib.hw_max_sectors = queue_max_hw_sectors(q); dev->dev_attrib.hw_queue_depth = q->nr_requests; - if (target_configure_unmap_from_queue(&dev->dev_attrib, q)) + if (target_configure_unmap_from_queue(&dev->dev_attrib, bd)) pr_debug("IBLOCK: BLOCK Discard support available," " disabled by default\n"); |