Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 17807
b: refs/heads/master
c: 12fe2c5
h: refs/heads/master
i:
  17805: 394b342
  17803: 786d4fb
  17799: 0806b3d
  17791: 5f7bd12
v: v3
  • Loading branch information
Jesper Juhl authored and David S. Miller committed Jan 10, 2006
1 parent cb2fa00 commit 3080dee
Show file tree
Hide file tree
Showing 3 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: ea2e90dfcee2c09eff8a180976ace071922663a5
refs/heads/master: 12fe2c588df77d60dfe13b432f95d00f76b8c969
2 changes: 1 addition & 1 deletion trunk/net/bluetooth/hci_conn.c
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ int hci_get_conn_list(void __user *arg)

size = sizeof(req) + req.conn_num * sizeof(*ci);

if (!(cl = (void *) kmalloc(size, GFP_KERNEL)))
if (!(cl = kmalloc(size, GFP_KERNEL)))
return -ENOMEM;

if (!(hdev = hci_dev_get(req.dev_id))) {
Expand Down
4 changes: 2 additions & 2 deletions trunk/net/sunrpc/svc.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ svc_create_thread(svc_thread_fn func, struct svc_serv *serv)
memset(rqstp, 0, sizeof(*rqstp));
init_waitqueue_head(&rqstp->rq_wait);

if (!(rqstp->rq_argp = (u32 *) kmalloc(serv->sv_xdrsize, GFP_KERNEL))
|| !(rqstp->rq_resp = (u32 *) kmalloc(serv->sv_xdrsize, GFP_KERNEL))
if (!(rqstp->rq_argp = kmalloc(serv->sv_xdrsize, GFP_KERNEL))
|| !(rqstp->rq_resp = kmalloc(serv->sv_xdrsize, GFP_KERNEL))
|| !svc_init_buffer(rqstp, serv->sv_bufsz))
goto out_thread;

Expand Down

0 comments on commit 3080dee

Please sign in to comment.