]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
usb-storage: fix sdev->host->dma_dev
authorTom Yan <tom.ty89@gmail.com>
Thu, 3 Sep 2020 18:17:23 +0000 (02:17 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 4 Sep 2020 15:00:38 +0000 (17:00 +0200)
Use scsi_add_host_with_dma() instead of scsi_add_host().

When the scsi request queue is initialized/allocated, hw_max_sectors is clamped
to the dma max mapping size. Therefore, the correct device that should be used
for the clamping needs to be set.

The same clamping is still needed in usb-storage as hw_max_sectors could be
changed there. The original clamping would be invalidated in such cases.

Signed-off-by: Tom Yan <tom.ty89@gmail.com>
Reviewed-by: Alan Stern <stern@rowland.harvard.edu>
Link: https://lore.kernel.org/r/20200903181725.2931-1-tom.ty89@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/storage/scsiglue.c
drivers/usb/storage/usb.c

index e5a971b83e3f567d17623b88e1826b5bd429dfdb..560efd1479ba779d812a7001115b07070ff93a2b 100644 (file)
@@ -92,7 +92,7 @@ static int slave_alloc (struct scsi_device *sdev)
 static int slave_configure(struct scsi_device *sdev)
 {
        struct us_data *us = host_to_us(sdev->host);
-       struct device *dev = us->pusb_dev->bus->sysdev;
+       struct device *dev = sdev->host->dma_dev;
 
        /*
         * Many devices have trouble transferring more than 32KB at a time,
index 94a64729dc27d6365a42bbd3ea9cdc80ec2da9fb..c2ef367cf2571b0c42a7038bd864bf578a29a800 100644 (file)
@@ -1049,8 +1049,9 @@ int usb_stor_probe2(struct us_data *us)
                goto BadDevice;
        usb_autopm_get_interface_no_resume(us->pusb_intf);
        snprintf(us->scsi_name, sizeof(us->scsi_name), "usb-storage %s",
-                                       dev_name(&us->pusb_intf->dev));
-       result = scsi_add_host(us_to_host(us), dev);
+                                       dev_name(dev));
+       result = scsi_add_host_with_dma(us_to_host(us), dev,
+                                       us->pusb_dev->bus->sysdev);
        if (result) {
                dev_warn(dev,
                                "Unable to add the scsi host\n");