diff options
author | Allan Stephens <Allan.Stephens@windriver.com> | 2011-01-18 13:53:16 -0500 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-02-23 18:05:12 -0500 |
commit | 01d83eddc55c138cbb24a5917d5271c0b24956a1 (patch) | |
tree | 4f955e6fa50ac93de90a496749aea82b4411746a /net/tipc/link.c | |
parent | 77c81e0bb8af3f1a0e5d84dd0346fe57dfe3da27 (diff) |
tipc: Clean up tracking of node requesting a broadcast retransmit
Allows the broadcast link to track the node that is requesting a retransmit
in a new field dedicated to that purpose. This replaces the existing
mechanism that (ab)uses an existing node structure linked list field to do
the tracking.
Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc/link.c')
-rw-r--r-- | net/tipc/link.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c index d586265e54a4..0cb773b7ee21 100644 --- a/net/tipc/link.c +++ b/net/tipc/link.c | |||
@@ -1441,7 +1441,7 @@ static void link_retransmit_failure(struct link *l_ptr, struct sk_buff *buf) | |||
1441 | info("Outstanding acks: %lu\n", | 1441 | info("Outstanding acks: %lu\n", |
1442 | (unsigned long) TIPC_SKB_CB(buf)->handle); | 1442 | (unsigned long) TIPC_SKB_CB(buf)->handle); |
1443 | 1443 | ||
1444 | n_ptr = l_ptr->owner->next; | 1444 | n_ptr = tipc_bclink_retransmit_to(); |
1445 | tipc_node_lock(n_ptr); | 1445 | tipc_node_lock(n_ptr); |
1446 | 1446 | ||
1447 | tipc_addr_string_fill(addr_string, n_ptr->addr); | 1447 | tipc_addr_string_fill(addr_string, n_ptr->addr); |