mirror of
https://github.com/torvalds/linux.git
synced 2024-11-12 07:01:57 +00:00
ibmvnic: Fix GFP_KERNEL allocation in interrupt context
Signed-off-by: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9fa2f2cca2
commit
12608c260d
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user