Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 141079
b: refs/heads/master
c: 2bb3473
h: refs/heads/master
i:
  141077: 1f490b1
  141075: 325bb97
  141071: 153546f
v: v3
  • Loading branch information
Lior Dotan authored and Greg Kroah-Hartman committed Apr 3, 2009
1 parent 308baaa commit 066ad18
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1025744a6c30d58e232bac43396db18cc805ab98
refs/heads/master: 2bb347361e2c19799431f56488a3f64de40a3aa6
8 changes: 4 additions & 4 deletions trunk/drivers/staging/slicoss/slicoss.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
mcaddr = kmalloc(sizeof(struct mcast_address), GFP_ATOMIC);
mcaddr = kmalloc(sizeof(struct mcast_address), GFP_KERNEL);
if (mcaddr == NULL)
return 1;

Expand Down Expand Up @@ -2648,7 +2648,7 @@ static int slic_card_init(struct sliccard *card, struct adapter *adapter)

#if SLIC_DUMP_ENABLED
if (!card->dumpbuffer) {
card->dumpbuffer = kmalloc(DUMP_PAGE_SIZE, GFP_ATOMIC);
card->dumpbuffer = kmalloc(DUMP_PAGE_SIZE, GFP_KERNEL);

ASSERT(card->dumpbuffer);
if (card->dumpbuffer == NULL)
Expand All @@ -2667,7 +2667,7 @@ static int slic_card_init(struct sliccard *card, struct adapter *adapter)
* Allocate COMMAND BUFFER
*/
if (!card->cmdbuffer) {
card->cmdbuffer = kmalloc(sizeof(struct dump_cmd), GFP_ATOMIC);
card->cmdbuffer = kmalloc(sizeof(struct dump_cmd), GFP_KERNEL);

ASSERT(card->cmdbuffer);
if (card->cmdbuffer == NULL)
Expand Down Expand Up @@ -2808,7 +2808,7 @@ static u32 slic_card_locate(struct adapter *adapter)
}
if (!physcard) {
/* no structure allocated for this physical card yet */
physcard = kzalloc(sizeof(struct physcard), GFP_ATOMIC);
physcard = kzalloc(sizeof(struct physcard), GFP_KERNEL);
ASSERT(physcard);

DBG_MSG
Expand Down

0 comments on commit 066ad18

Please sign in to comment.