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)
|
if (!scrq)
|
||||||
return NULL;
|
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);
|
memset(scrq->msgs, 0, 4 * PAGE_SIZE);
|
||||||
if (!scrq->msgs) {
|
if (!scrq->msgs) {
|
||||||
dev_warn(dev, "Couldn't allocate crq queue messages page\n");
|
dev_warn(dev, "Couldn't allocate crq queue messages page\n");
|
||||||
|
|
Loading…
Reference in New Issue