Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 143650
b: refs/heads/master
c: f7ed550
h: refs/heads/master
v: v3
  • Loading branch information
Lior Dotan authored and Greg Kroah-Hartman committed Apr 17, 2009
1 parent c040385 commit fa13868
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: d203eea8db0b4acbd19ade1aa025ad9b9e0d8863
refs/heads/master: f7ed550b3ecab4a14f78019ff3e8899add607f92
4 changes: 2 additions & 2 deletions trunk/drivers/staging/slicoss/slicoss.c
Original file line number Diff line number Diff line change
Expand Up @@ -1267,7 +1267,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_KERNEL);
mcaddr = kmalloc(sizeof(struct mcast_address), GFP_ATOMIC);
if (mcaddr == NULL)
return 1;

Expand Down Expand Up @@ -2291,7 +2291,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_KERNEL);
physcard = kzalloc(sizeof(struct physcard), GFP_ATOMIC);
ASSERT(physcard);

physcard->next = slic_global.phys_card;
Expand Down

0 comments on commit fa13868

Please sign in to comment.