Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 294676
b: refs/heads/master
c: f0229ea
h: refs/heads/master
v: v3
  • Loading branch information
Dan Carpenter authored and David S. Miller committed Mar 22, 2012
1 parent 5248320 commit 3916cc0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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: 64b5fad526f63e9b56752a7e8e153b99ec0ddecd
refs/heads/master: f0229eaaf3f82522e2b16b41b0f45bb84a88d1b0
2 changes: 1 addition & 1 deletion trunk/net/rds/ib_cm.c
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ int rds_ib_conn_alloc(struct rds_connection *conn, gfp_t gfp)
int ret;

/* XXX too lazy? */
ic = kzalloc(sizeof(struct rds_ib_connection), GFP_KERNEL);
ic = kzalloc(sizeof(struct rds_ib_connection), gfp);
if (!ic)
return -ENOMEM;

Expand Down
2 changes: 1 addition & 1 deletion trunk/net/rds/iw_cm.c
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ int rds_iw_conn_alloc(struct rds_connection *conn, gfp_t gfp)
unsigned long flags;

/* XXX too lazy? */
ic = kzalloc(sizeof(struct rds_iw_connection), GFP_KERNEL);
ic = kzalloc(sizeof(struct rds_iw_connection), gfp);
if (!ic)
return -ENOMEM;

Expand Down
2 changes: 1 addition & 1 deletion trunk/net/rds/loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static int rds_loop_conn_alloc(struct rds_connection *conn, gfp_t gfp)
struct rds_loop_connection *lc;
unsigned long flags;

lc = kzalloc(sizeof(struct rds_loop_connection), GFP_KERNEL);
lc = kzalloc(sizeof(struct rds_loop_connection), gfp);
if (!lc)
return -ENOMEM;

Expand Down

0 comments on commit 3916cc0

Please sign in to comment.