Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 30184
b: refs/heads/master
c: a842ef2
h: refs/heads/master
v: v3
  • Loading branch information
Akinobu Mita authored and Linus Torvalds committed Jun 26, 2006
1 parent 6aeb321 commit 6f2a61a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 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: 1bfba4e8ea0e555e3a0296051517d96253660ccc
refs/heads/master: a842ef297fd91b1b93f2aa5898d2efd19e95f6a5
3 changes: 1 addition & 2 deletions trunk/net/rxrpc/call.c
Original file line number Diff line number Diff line change
Expand Up @@ -1098,8 +1098,7 @@ static void rxrpc_call_receive_data_packet(struct rxrpc_call *call,

call->app_ready_seq = pmsg->seq;
call->app_ready_qty += pmsg->dsize;
list_del_init(&pmsg->link);
list_add_tail(&pmsg->link, &call->app_readyq);
list_move_tail(&pmsg->link, &call->app_readyq);
}

/* see if we've got the last packet yet */
Expand Down
3 changes: 1 addition & 2 deletions trunk/net/rxrpc/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,7 @@ void rxrpc_put_connection(struct rxrpc_connection *conn)

/* move to graveyard queue */
_debug("burying connection: {%08x}", ntohl(conn->conn_id));
list_del(&conn->link);
list_add_tail(&conn->link, &peer->conn_graveyard);
list_move_tail(&conn->link, &peer->conn_graveyard);

rxrpc_krxtimod_add_timer(&conn->timeout, rxrpc_conn_timeout * HZ);

Expand Down
3 changes: 1 addition & 2 deletions trunk/net/rxrpc/krxsecd.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,7 @@ void rxrpc_krxsecd_clear_transport(struct rxrpc_transport *trans)
list_for_each_safe(_p, _n, &rxrpc_krxsecd_initmsgq) {
msg = list_entry(_p, struct rxrpc_message, link);
if (msg->trans == trans) {
list_del(&msg->link);
list_add_tail(&msg->link, &tmp);
list_move_tail(&msg->link, &tmp);
atomic_dec(&rxrpc_krxsecd_qcount);
}
}
Expand Down

0 comments on commit 6f2a61a

Please sign in to comment.