The patch titled qla1280: use DMA_64BIT_MASK instead of ~0ULL has been added to the -mm tree. Its filename is qla1280-use-dma_64bit_mask-instead-of-0ull.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: qla1280: use DMA_64BIT_MASK instead of ~0ULL From: Matthias Kaehlcke <matthias.kaehlcke@xxxxxxxxx> QLA1280: call pci_set_dma_mask with DMA_64BIT_MASK instead of ~0ULL Signed-off-by: Matthias Kaehlcke <matthias.kaehlcke@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/scsi/qla1280.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/scsi/qla1280.c~qla1280-use-dma_64bit_mask-instead-of-0ull drivers/scsi/qla1280.c --- a/drivers/scsi/qla1280.c~qla1280-use-dma_64bit_mask-instead-of-0ull +++ a/drivers/scsi/qla1280.c @@ -4293,7 +4293,7 @@ qla1280_probe_one(struct pci_dev *pdev, ha->devnum = devnum; /* specifies microcode load address */ #ifdef QLA_64BIT_PTR - if (pci_set_dma_mask(ha->pdev, (dma_addr_t) ~ 0ULL)) { + if (pci_set_dma_mask(ha->pdev, DMA_64BIT_MASK)) { if (pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK)) { printk(KERN_WARNING "scsi(%li): Unable to set a " "suitable DMA mask - aborting\n", ha->host_no); _ Patches currently in -mm which might be from matthias.kaehlcke@xxxxxxxxx are origin.patch qla1280-use-dma_64bit_mask-instead-of-0ull.patch include-kern_-constant-in-printk-calls-in-mm-slabc.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