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:
Родитель
9fa2f2cca2
Коммит
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");
|
||||
|
|
Загрузка…
Ссылка в новой задаче