提交 2bb34736 编写于 作者: L Lior Dotan 提交者: Greg Kroah-Hartman

Staging: SLICOSS: use gfp_kernel where possible

Use GFP_KERNEL instead of GFP_ATOMIC where possible.

Signed_off-by: Lior Dotan <liodot@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 1025744a
...@@ -1492,7 +1492,7 @@ static int slic_mcast_add_list(struct adapter *adapter, char *address) ...@@ -1492,7 +1492,7 @@ static int slic_mcast_add_list(struct adapter *adapter, char *address)
} }
/* Doesn't already exist. Allocate a structure to hold it */ /* Doesn't already exist. Allocate a structure to hold it */
mcaddr = kmalloc(sizeof(struct mcast_address), GFP_ATOMIC); mcaddr = kmalloc(sizeof(struct mcast_address), GFP_KERNEL);
if (mcaddr == NULL) if (mcaddr == NULL)
return 1; return 1;
...@@ -2648,7 +2648,7 @@ static int slic_card_init(struct sliccard *card, struct adapter *adapter) ...@@ -2648,7 +2648,7 @@ static int slic_card_init(struct sliccard *card, struct adapter *adapter)
#if SLIC_DUMP_ENABLED #if SLIC_DUMP_ENABLED
if (!card->dumpbuffer) { if (!card->dumpbuffer) {
card->dumpbuffer = kmalloc(DUMP_PAGE_SIZE, GFP_ATOMIC); card->dumpbuffer = kmalloc(DUMP_PAGE_SIZE, GFP_KERNEL);
ASSERT(card->dumpbuffer); ASSERT(card->dumpbuffer);
if (card->dumpbuffer == NULL) if (card->dumpbuffer == NULL)
...@@ -2667,7 +2667,7 @@ static int slic_card_init(struct sliccard *card, struct adapter *adapter) ...@@ -2667,7 +2667,7 @@ static int slic_card_init(struct sliccard *card, struct adapter *adapter)
* Allocate COMMAND BUFFER * Allocate COMMAND BUFFER
*/ */
if (!card->cmdbuffer) { if (!card->cmdbuffer) {
card->cmdbuffer = kmalloc(sizeof(struct dump_cmd), GFP_ATOMIC); card->cmdbuffer = kmalloc(sizeof(struct dump_cmd), GFP_KERNEL);
ASSERT(card->cmdbuffer); ASSERT(card->cmdbuffer);
if (card->cmdbuffer == NULL) if (card->cmdbuffer == NULL)
...@@ -2808,7 +2808,7 @@ static u32 slic_card_locate(struct adapter *adapter) ...@@ -2808,7 +2808,7 @@ static u32 slic_card_locate(struct adapter *adapter)
} }
if (!physcard) { if (!physcard) {
/* no structure allocated for this physical card yet */ /* no structure allocated for this physical card yet */
physcard = kzalloc(sizeof(struct physcard), GFP_ATOMIC); physcard = kzalloc(sizeof(struct physcard), GFP_KERNEL);
ASSERT(physcard); ASSERT(physcard);
DBG_MSG DBG_MSG
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册