mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-05-05 23:04:09 +00:00
scsi: bfa: fix calls to dma_set_mask_and_coherent()
The change to use dma_set_mask_and_coherent() incorrectly made a second
call with the 32 bit DMA mask value when the call with the 64 bit DMA mask
value succeeded.
[mkp: fixed commit message]
Fixes: a69b080025
("scsi: bfa: use dma_set_mask_and_coherent")
Cc: <stable@vger.kernel.org>
Suggested-by: Ewan D. Milne <emilne@redhat.com>
Signed-off-by: Hannes Reinecke <hare@suse.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Ewan D. Milne <emilne@redhat.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
c326de562f
commit
11ea382414
1 changed files with 13 additions and 5 deletions
|
@ -739,8 +739,12 @@ bfad_pci_init(struct pci_dev *pdev, struct bfad_s *bfad)
|
||||||
|
|
||||||
pci_set_master(pdev);
|
pci_set_master(pdev);
|
||||||
|
|
||||||
if (dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)) ||
|
rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64));
|
||||||
dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32))) {
|
if (rc)
|
||||||
|
rc = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
|
||||||
|
|
||||||
|
if (rc) {
|
||||||
|
rc = -ENODEV;
|
||||||
printk(KERN_ERR "dma_set_mask_and_coherent fail %p\n", pdev);
|
printk(KERN_ERR "dma_set_mask_and_coherent fail %p\n", pdev);
|
||||||
goto out_release_region;
|
goto out_release_region;
|
||||||
}
|
}
|
||||||
|
@ -1534,6 +1538,7 @@ bfad_pci_slot_reset(struct pci_dev *pdev)
|
||||||
{
|
{
|
||||||
struct bfad_s *bfad = pci_get_drvdata(pdev);
|
struct bfad_s *bfad = pci_get_drvdata(pdev);
|
||||||
u8 byte;
|
u8 byte;
|
||||||
|
int rc;
|
||||||
|
|
||||||
dev_printk(KERN_ERR, &pdev->dev,
|
dev_printk(KERN_ERR, &pdev->dev,
|
||||||
"bfad_pci_slot_reset flags: 0x%x\n", bfad->bfad_flags);
|
"bfad_pci_slot_reset flags: 0x%x\n", bfad->bfad_flags);
|
||||||
|
@ -1561,8 +1566,11 @@ bfad_pci_slot_reset(struct pci_dev *pdev)
|
||||||
pci_save_state(pdev);
|
pci_save_state(pdev);
|
||||||
pci_set_master(pdev);
|
pci_set_master(pdev);
|
||||||
|
|
||||||
if (dma_set_mask_and_coherent(&bfad->pcidev->dev, DMA_BIT_MASK(64)) ||
|
rc = dma_set_mask_and_coherent(&bfad->pcidev->dev, DMA_BIT_MASK(64));
|
||||||
dma_set_mask_and_coherent(&bfad->pcidev->dev, DMA_BIT_MASK(32)))
|
if (rc)
|
||||||
|
rc = dma_set_mask_and_coherent(&bfad->pcidev->dev,
|
||||||
|
DMA_BIT_MASK(32));
|
||||||
|
if (rc)
|
||||||
goto out_disable_device;
|
goto out_disable_device;
|
||||||
|
|
||||||
if (restart_bfa(bfad) == -1)
|
if (restart_bfa(bfad) == -1)
|
||||||
|
|
Loading…
Add table
Reference in a new issue