aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/node.c
diff options
context:
space:
mode:
authorYing Xue <[email protected]>2013-12-11 04:45:38 +0000
committerDavid S. Miller <[email protected]>2013-12-11 05:17:42 +0000
commitd77b3831f7d59d69aa49d5d1df10bbe56671dc5d (patch)
tree68ee50f8e762bd9e524502cd6173ee7c50f5949b /net/tipc/node.c
parentMerge branch 'macb' (diff)
downloadkernel-d77b3831f7d59d69aa49d5d1df10bbe56671dc5d.tar.gz
kernel-d77b3831f7d59d69aa49d5d1df10bbe56671dc5d.zip
tipc: eliminate redundant code with kfree_skb_list routine
sk_buff lists are currently relased by looping over the list and explicitly releasing each buffer. We replace all occurrences of this loop with a call to kfree_skb_list(). Signed-off-by: Ying Xue <[email protected]> Reviewed-by: Paul Gortmaker <[email protected]> Signed-off-by: Jon Maloy <[email protected]> Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/tipc/node.c')
-rw-r--r--net/tipc/node.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/net/tipc/node.c b/net/tipc/node.c
index 25100c0a6fe8..bf1ac89b4806 100644
--- a/net/tipc/node.c
+++ b/net/tipc/node.c
@@ -291,11 +291,7 @@ static void node_lost_contact(struct tipc_node *n_ptr)
/* Flush broadcast link info associated with lost node */
if (n_ptr->bclink.recv_permitted) {
- while (n_ptr->bclink.deferred_head) {
- struct sk_buff *buf = n_ptr->bclink.deferred_head;
- n_ptr->bclink.deferred_head = buf->next;
- kfree_skb(buf);
- }
+ kfree_skb_list(n_ptr->bclink.deferred_head);
n_ptr->bclink.deferred_size = 0;
if (n_ptr->bclink.reasm_head) {