diff options
author | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
---|---|---|
committer | Glenn Elliott <gelliott@cs.unc.edu> | 2012-03-04 19:47:13 -0500 |
commit | c71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch) | |
tree | ecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /net/rxrpc/ar-ack.c | |
parent | ea53c912f8a86a8567697115b6a0d8152beee5c8 (diff) | |
parent | 6a00f206debf8a5c8899055726ad127dbeeed098 (diff) |
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts:
litmus/sched_cedf.c
Diffstat (limited to 'net/rxrpc/ar-ack.c')
-rw-r--r-- | net/rxrpc/ar-ack.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/rxrpc/ar-ack.c b/net/rxrpc/ar-ack.c index b6ffe4e1b84a..f99cfce7ca97 100644 --- a/net/rxrpc/ar-ack.c +++ b/net/rxrpc/ar-ack.c | |||
@@ -375,7 +375,6 @@ protocol_error: | |||
375 | */ | 375 | */ |
376 | static void rxrpc_rotate_tx_window(struct rxrpc_call *call, u32 hard) | 376 | static void rxrpc_rotate_tx_window(struct rxrpc_call *call, u32 hard) |
377 | { | 377 | { |
378 | struct rxrpc_skb_priv *sp; | ||
379 | unsigned long _skb; | 378 | unsigned long _skb; |
380 | int tail = call->acks_tail, old_tail; | 379 | int tail = call->acks_tail, old_tail; |
381 | int win = CIRC_CNT(call->acks_head, tail, call->acks_winsz); | 380 | int win = CIRC_CNT(call->acks_head, tail, call->acks_winsz); |
@@ -387,7 +386,6 @@ static void rxrpc_rotate_tx_window(struct rxrpc_call *call, u32 hard) | |||
387 | while (call->acks_hard < hard) { | 386 | while (call->acks_hard < hard) { |
388 | smp_read_barrier_depends(); | 387 | smp_read_barrier_depends(); |
389 | _skb = call->acks_window[tail] & ~1; | 388 | _skb = call->acks_window[tail] & ~1; |
390 | sp = rxrpc_skb((struct sk_buff *) _skb); | ||
391 | rxrpc_free_skb((struct sk_buff *) _skb); | 389 | rxrpc_free_skb((struct sk_buff *) _skb); |
392 | old_tail = tail; | 390 | old_tail = tail; |
393 | tail = (tail + 1) & (call->acks_winsz - 1); | 391 | tail = (tail + 1) & (call->acks_winsz - 1); |