The patch titled Fix old SCSI adapter crashes with CD-ROM (take 2) has been removed from the -mm tree. Its filename was fix-old-scsi-adapter-crashes-with-cd-rom-take-2.patch This patch was dropped because it is obsolete ------------------------------------------------------ Subject: Fix old SCSI adapter crashes with CD-ROM (take 2) From: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> The CD-ROM layer doesn't bounce requests for old ISA controllers (and nor should it). However they get injected into the SCSI layer via sr_ioctl which also doesn't bounce them and SCSI then passes the buffer along to a device with unchecked_isa_dma set which either panics or truncates the buffer to 24bits. According to Jens the right long term fix is for the CD layer to route the requests differently but in the mean time this has been tested by a victim and verified to sort the problem out. For the other 99.9% of users it's a no-op and doesn't bounce data. (akpm: placeholder fix. Apparently the metaphorical Mike is working on a real fix). Signed-off-by: Alan Cox <alan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/scsi/sr_ioctl.c | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff -puN drivers/scsi/sr_ioctl.c~fix-old-scsi-adapter-crashes-with-cd-rom-take-2 drivers/scsi/sr_ioctl.c --- a/drivers/scsi/sr_ioctl.c~fix-old-scsi-adapter-crashes-with-cd-rom-take-2 +++ a/drivers/scsi/sr_ioctl.c @@ -187,6 +187,7 @@ int sr_do_ioctl(Scsi_CD *cd, struct pack struct scsi_sense_hdr sshdr; int result, err = 0, retries = 0; struct request_sense *sense = cgc->sense; + void *zebedee = cgc->buffer; SDev = cd->device; @@ -198,6 +199,21 @@ int sr_do_ioctl(Scsi_CD *cd, struct pack } } + if (cgc->buflen && cd->device->host->unchecked_isa_dma) { + switch(cgc->data_direction) { + case DMA_NONE: + break; + case DMA_FROM_DEVICE: + case DMA_TO_DEVICE: + zebedee = kmalloc(cgc->buflen, GFP_KERNEL|GFP_DMA); + if (zebedee ==NULL) { + err = -ENOMEM; + goto out; + } + } + if (cgc->data_direction == DMA_TO_DEVICE) + memcpy(zebedee, cgc->buffer, cgc->buflen); + } retry: if (!scsi_block_when_processing_errors(SDev)) { err = -ENODEV; @@ -206,11 +222,16 @@ int sr_do_ioctl(Scsi_CD *cd, struct pack memset(sense, 0, sizeof(*sense)); result = scsi_execute(SDev, cgc->cmd, cgc->data_direction, - cgc->buffer, cgc->buflen, (char *)sense, + zebedee, cgc->buflen, (char *)sense, cgc->timeout, IOCTL_RETRIES, 0); scsi_normalize_sense((char *)sense, sizeof(*sense), &sshdr); + if (zebedee != cgc->buffer) { + if (cgc->data_direction == DMA_FROM_DEVICE) + memcpy(cgc->buffer, zebedee, cgc->buflen); + } + /* Minimal error checking. Ignore cases we know about, and report the rest. */ if (driver_byte(result) != 0) { switch (sshdr.sense_key) { @@ -266,6 +287,8 @@ int sr_do_ioctl(Scsi_CD *cd, struct pack /* Wake up a process waiting for device */ out: + if (zebedee != cgc->buffer) + kfree(zebedee); /* Time for bed */ if (!cgc->sense) kfree(sense); cgc->stat = err; _ Patches currently in -mm which might be from alan@xxxxxxxxxxxxxxxxxxx are origin.patch tty-add-compat_ioctl.patch pata_acpi-restore-driver-vs-libata-clean-up-sff-init-mess-fix.patch libata-add-support-for-ata_16-on-atapi.patch libata-fix-hopefully-all-the-remaining-problems-with.patch testing-patch-for-ali-pata-fixes-hopefully-for-the-problems-with-atapi-dma.patch pata_ali-more-work.patch sl82c105-switch-to-ref-counting-api.patch serial-use-resource_size_t-for-port-io-addresses.patch add-pci_try_set_mwi.patch fix-pci_find_present.patch drivers-scsi-ncr5380c-replacing-yield-with-a.patch fix-old-scsi-adapter-crashes-with-cd-rom-take-2.patch watchdog-documentation.patch doc-kernel-parameters-use-x86-32-tag-instead-of-ia-32.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html