diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2006-10-01 02:27:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-01 03:39:19 -0400 |
commit | 52978be636374c4bfb61220b37fa12f55a071c46 (patch) | |
tree | 36444be7bdbc0cdd99d903c0ad87316c93427517 /net | |
parent | 1a2f67b459bb7846d4a15924face63eb2683acc2 (diff) |
[PATCH] kmemdup: some users
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'net')
-rw-r--r-- | net/rxrpc/transport.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/rxrpc/transport.c b/net/rxrpc/transport.c index 465efc86fccf..94b2e2fe6fdb 100644 --- a/net/rxrpc/transport.c +++ b/net/rxrpc/transport.c | |||
@@ -381,11 +381,10 @@ static int rxrpc_incoming_msg(struct rxrpc_transport *trans, | |||
381 | 381 | ||
382 | /* allocate a new message record */ | 382 | /* allocate a new message record */ |
383 | ret = -ENOMEM; | 383 | ret = -ENOMEM; |
384 | msg = kmalloc(sizeof(struct rxrpc_message), GFP_KERNEL); | 384 | msg = kmemdup(jumbomsg, sizeof(struct rxrpc_message), GFP_KERNEL); |
385 | if (!msg) | 385 | if (!msg) |
386 | goto error; | 386 | goto error; |
387 | 387 | ||
388 | memcpy(msg, jumbomsg, sizeof(*msg)); | ||
389 | list_add_tail(&msg->link, msgq); | 388 | list_add_tail(&msg->link, msgq); |
390 | 389 | ||
391 | /* adjust the jumbo packet */ | 390 | /* adjust the jumbo packet */ |