aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/node.c
diff options
context:
space:
mode:
authorAllan Stephens <allan.stephens@windriver.com>2011-11-04 13:24:29 -0400
committerPaul Gortmaker <paul.gortmaker@windriver.com>2012-02-24 17:05:16 -0500
commit5f6d9123f1c7ef7297b0da1620988fe16c738e75 (patch)
treef26998d63d8263bdd67a52d54a6f58e0332e0fba /net/tipc/node.c
parenta635b46bd884efc1fc98819cb5a200da255d575c (diff)
tipc: Eliminate trivial buffer manipulation helper routines
Gets rid of two inlined routines that simply call existing sk_buff manipulation routines, since there is no longer any extra processing done by the helper routines. Note that these changes are essentially cosmetic in nature, and have no impact on the actual operation of TIPC. Signed-off-by: Allan Stephens <allan.stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc/node.c')
-rw-r--r--net/tipc/node.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tipc/node.c b/net/tipc/node.c
index 1790f503f57b..24c42f7568ac 100644
--- a/net/tipc/node.c
+++ b/net/tipc/node.c
@@ -353,12 +353,12 @@ static void node_lost_contact(struct tipc_node *n_ptr)
353 while (n_ptr->bclink.deferred_head) { 353 while (n_ptr->bclink.deferred_head) {
354 struct sk_buff *buf = n_ptr->bclink.deferred_head; 354 struct sk_buff *buf = n_ptr->bclink.deferred_head;
355 n_ptr->bclink.deferred_head = buf->next; 355 n_ptr->bclink.deferred_head = buf->next;
356 buf_discard(buf); 356 kfree_skb(buf);
357 } 357 }
358 n_ptr->bclink.deferred_size = 0; 358 n_ptr->bclink.deferred_size = 0;
359 359
360 if (n_ptr->bclink.defragm) { 360 if (n_ptr->bclink.defragm) {
361 buf_discard(n_ptr->bclink.defragm); 361 kfree_skb(n_ptr->bclink.defragm);
362 n_ptr->bclink.defragm = NULL; 362 n_ptr->bclink.defragm = NULL;
363 } 363 }
364 364