diff options
author | Akinobu Mita <mita@miraclelinux.com> | 2006-06-26 03:24:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 12:58:17 -0400 |
commit | a842ef297fd91b1b93f2aa5898d2efd19e95f6a5 (patch) | |
tree | ee5c41d7588798a4970c308ad8a7b5d49f6b9c14 /net/rxrpc/connection.c | |
parent | 1bfba4e8ea0e555e3a0296051517d96253660ccc (diff) |
[PATCH] net/rxrpc: use list_move()
This patch converts the combination of list_del(A) and list_add(A, B) to
list_move(A, B) under net/rxrpc.
Acked-by: David Howells <dhowells@redhat.com>
Signed-off-by: Akinobu Mita <mita@miraclelinux.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'net/rxrpc/connection.c')
-rw-r--r-- | net/rxrpc/connection.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/rxrpc/connection.c b/net/rxrpc/connection.c index 0e0a4553499f..573b572f8f91 100644 --- a/net/rxrpc/connection.c +++ b/net/rxrpc/connection.c | |||
@@ -402,8 +402,7 @@ void rxrpc_put_connection(struct rxrpc_connection *conn) | |||
402 | 402 | ||
403 | /* move to graveyard queue */ | 403 | /* move to graveyard queue */ |
404 | _debug("burying connection: {%08x}", ntohl(conn->conn_id)); | 404 | _debug("burying connection: {%08x}", ntohl(conn->conn_id)); |
405 | list_del(&conn->link); | 405 | list_move_tail(&conn->link, &peer->conn_graveyard); |
406 | list_add_tail(&conn->link, &peer->conn_graveyard); | ||
407 | 406 | ||
408 | rxrpc_krxtimod_add_timer(&conn->timeout, rxrpc_conn_timeout * HZ); | 407 | rxrpc_krxtimod_add_timer(&conn->timeout, rxrpc_conn_timeout * HZ); |
409 | 408 | ||