diff options
author | David S. Miller <davem@davemloft.net> | 2011-05-19 18:35:58 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-05-19 18:35:58 -0400 |
commit | 9e5e10a22507b8d372bcf0e88875d4a3f6ede297 (patch) | |
tree | 8da8a268c11bc97a867f84c5d3bb374130684fb6 /net/rxrpc | |
parent | 504f284a713c46c6ecf975fbd20af00f4e205f5b (diff) | |
download | linux-9e5e10a22507b8d372bcf0e88875d4a3f6ede297.tar.bz2 |
rxrpc: Kill set but unused variable 'sp' in rxrpc_process_connection()
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc')
-rw-r--r-- | net/rxrpc/ar-connevent.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/net/rxrpc/ar-connevent.c b/net/rxrpc/ar-connevent.c index 0505cdc4d6d4..e7ed43a54c41 100644 --- a/net/rxrpc/ar-connevent.c +++ b/net/rxrpc/ar-connevent.c @@ -259,7 +259,6 @@ void rxrpc_process_connection(struct work_struct *work) { struct rxrpc_connection *conn = container_of(work, struct rxrpc_connection, processor); - struct rxrpc_skb_priv *sp; struct sk_buff *skb; u32 abort_code = RX_PROTOCOL_ERROR; int ret; @@ -276,8 +275,6 @@ void rxrpc_process_connection(struct work_struct *work) /* go through the conn-level event packets, releasing the ref on this * connection that each one has when we've finished with it */ while ((skb = skb_dequeue(&conn->rx_queue))) { - sp = rxrpc_skb(skb); - ret = rxrpc_process_event(conn, skb, &abort_code); switch (ret) { case -EPROTO: |