From: Christoph Hellwig Date: Wed, 22 Dec 2021 09:18:01 +0000 (+0100) Subject: scsi: myrb: Don't use GFP_DMA in myrb_pdev_slave_alloc() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=27363ba89f3472c39737e0bc34f75c5728e1cffb;p=linux.git scsi: myrb: Don't use GFP_DMA in myrb_pdev_slave_alloc() The driver doesn't express DMA addressing limitation under 32-bits anywhere else, so remove the spurious GFP_DMA allocation. Link: https://lore.kernel.org/r/20211222091801.924745-1-hch@lst.de Signed-off-by: Christoph Hellwig Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/myrb.c b/drivers/scsi/myrb.c index 2a4506a5083ee..71585528e8db9 100644 --- a/drivers/scsi/myrb.c +++ b/drivers/scsi/myrb.c @@ -1674,7 +1674,7 @@ static int myrb_pdev_slave_alloc(struct scsi_device *sdev) if (sdev->id > MYRB_MAX_TARGETS) return -ENXIO; - pdev_info = kzalloc(sizeof(*pdev_info), GFP_KERNEL|GFP_DMA); + pdev_info = kzalloc(sizeof(*pdev_info), GFP_KERNEL); if (!pdev_info) return -ENOMEM;