projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31b17c3
)
scsi: message: fusion: Use GFP_KERNEL
author
Julia Lawall
<Julia.Lawall@inria.fr>
Thu, 10 Feb 2022 20:42:22 +0000
(21:42 +0100)
committer
Martin K. Petersen
<martin.petersen@oracle.com>
Fri, 11 Feb 2022 22:09:27 +0000
(17:09 -0500)
Pci_driver probe functions aren't called with locks held and thus don't
need GFP_ATOMIC. Use GFP_KERNEL instead.
Problem found with Coccinelle.
Link:
https://lore.kernel.org/r/20220210204223.104181-9-Julia.Lawall@inria.fr
Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/message/fusion/mptspi.c
patch
|
blob
|
history
diff --git
a/drivers/message/fusion/mptspi.c
b/drivers/message/fusion/mptspi.c
index acd4805dcf8366bd0bc85b6c190bde31583bb6ed..388675cc17656ad2567c34299f048d08fa898367 100644
(file)
--- a/
drivers/message/fusion/mptspi.c
+++ b/
drivers/message/fusion/mptspi.c
@@
-1493,7
+1493,7
@@
mptspi_probe(struct pci_dev *pdev, const struct pci_device_id *id)
/* SCSI needs scsi_cmnd lookup table!
* (with size equal to req_depth*PtrSz!)
*/
- ioc->ScsiLookup = kcalloc(ioc->req_depth, sizeof(void *), GFP_
ATOMIC
);
+ ioc->ScsiLookup = kcalloc(ioc->req_depth, sizeof(void *), GFP_
KERNEL
);
if (!ioc->ScsiLookup) {
error = -ENOMEM;
goto out_mptspi_probe;