projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9fa2f2c
)
ibmvnic: Fix GFP_KERNEL allocation in interrupt context
author
Thomas Falcon
<tlfalcon@linux.vnet.ibm.com>
Mon, 17 Oct 2016 20:28:09 +0000
(15:28 -0500)
committer
David S. Miller
<davem@davemloft.net>
Tue, 18 Oct 2016 18:17:13 +0000
(14:17 -0400)
Signed-off-by: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/ibm/ibmvnic.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/ibm/ibmvnic.c
b/drivers/net/ethernet/ibm/ibmvnic.c
index
bfe17d9
..
928bf8a
100644
(file)
--- a/
drivers/net/ethernet/ibm/ibmvnic.c
+++ b/
drivers/net/ethernet/ibm/ibmvnic.c
@@
-1190,7
+1190,7
@@
static struct ibmvnic_sub_crq_queue *init_sub_crq_queue(struct ibmvnic_adapter
if (!scrq)
return NULL;
- scrq->msgs = (union sub_crq *)__get_free_pages(GFP_
KERNEL
, 2);
+ scrq->msgs = (union sub_crq *)__get_free_pages(GFP_
ATOMIC
, 2);
memset(scrq->msgs, 0, 4 * PAGE_SIZE);
if (!scrq->msgs) {
dev_warn(dev, "Couldn't allocate crq queue messages page\n");