提交 c29bd8d8 编写于 作者: J Jiri Slaby 提交者: Greg Kroah-Hartman

Char: nozomi, use GFP_KERNEL for kfifo allocation

The allocation was moved to probe function in 9842c38e. And we can
sleep there. So allocate the 4*8192 bytes as GFP_KERNEL to mitigate
the allocation failure.
Signed-off-by: NJiri Slaby <jslaby@suse.cz>
Tested-by: NGerald Pfeifer <gerald@pfeifer.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 b1c43f82
...@@ -1431,8 +1431,8 @@ static int __devinit nozomi_card_init(struct pci_dev *pdev, ...@@ -1431,8 +1431,8 @@ static int __devinit nozomi_card_init(struct pci_dev *pdev,
} }
for (i = PORT_MDM; i < MAX_PORT; i++) { for (i = PORT_MDM; i < MAX_PORT; i++) {
if (kfifo_alloc(&dc->port[i].fifo_ul, if (kfifo_alloc(&dc->port[i].fifo_ul, FIFO_BUFFER_SIZE_UL,
FIFO_BUFFER_SIZE_UL, GFP_ATOMIC)) { GFP_KERNEL)) {
dev_err(&pdev->dev, dev_err(&pdev->dev,
"Could not allocate kfifo buffer\n"); "Could not allocate kfifo buffer\n");
ret = -ENOMEM; ret = -ENOMEM;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册