提交 199f6cca 编写于 作者: C Carolyn Wyborny 提交者: Jeff Kirsher

igb: Fix for improper allocation flag in igb_get_i2c_client

This patch fixes the allocation function in igb_get_i2c_client to use
GFP_ATOMIC instead of GFP_KERNEL because we have a spinlock.
Reported-by: NDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: NCarolyn Wyborny <carolyn.wyborny@intel.com>
Tested-by: NAaron Brown <aaron.f.brown@intel.com>
Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
上级 d3f8ef11
...@@ -7751,7 +7751,7 @@ igb_get_i2c_client(struct igb_adapter *adapter, u8 dev_addr) ...@@ -7751,7 +7751,7 @@ igb_get_i2c_client(struct igb_adapter *adapter, u8 dev_addr)
} }
/* no client_list found, create a new one */ /* no client_list found, create a new one */
client_list = kzalloc(sizeof(*client_list), GFP_KERNEL); client_list = kzalloc(sizeof(*client_list), GFP_ATOMIC);
if (client_list == NULL) if (client_list == NULL)
goto exit; goto exit;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册