tipc: Remove non-executable code to handle broadcast bearer congestion
authorAllan Stephens <allan.stephens@windriver.com>
Thu, 7 Apr 2011 15:25:26 +0000 (11:25 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 1 Sep 2011 15:16:36 +0000 (11:16 -0400)
Eliminates code associated with the sending of unsent broadcast link
traffic when the broadcast pseudo-bearer becomes unblocked following a
temporary congestion situation. This code is non-executable because the
broadcast pseudo-bearer never becomes blocked [see tipc_bcbearer_send()].

Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
net/tipc/bcast.c
net/tipc/bcast.h
net/tipc/bearer.c

index 7abdca0..5200457 100644 (file)
@@ -667,27 +667,6 @@ void tipc_bcbearer_sort(void)
        spin_unlock_bh(&bc_lock);
 }
 
-/**
- * tipc_bcbearer_push - resolve bearer congestion
- *
- * Forces bclink to push out any unsent packets, until all packets are gone
- * or congestion reoccurs.
- * No locks set when function called
- */
-
-void tipc_bcbearer_push(void)
-{
-       struct tipc_bearer *b_ptr;
-
-       spin_lock_bh(&bc_lock);
-       b_ptr = &bcbearer->bearer;
-       if (b_ptr->blocked) {
-               b_ptr->blocked = 0;
-               tipc_bearer_lock_push(b_ptr);
-       }
-       spin_unlock_bh(&bc_lock);
-}
-
 
 int tipc_bclink_stats(char *buf, const u32 buf_size)
 {
index 500c97f..06740da 100644 (file)
@@ -101,6 +101,5 @@ int  tipc_bclink_stats(char *stats_buf, const u32 buf_size);
 int  tipc_bclink_reset_stats(void);
 int  tipc_bclink_set_queue_limits(u32 limit);
 void tipc_bcbearer_sort(void);
-void tipc_bcbearer_push(void);
 
 #endif
index 85eba9c..e465a92 100644 (file)
@@ -385,13 +385,9 @@ static int bearer_push(struct tipc_bearer *b_ptr)
 
 void tipc_bearer_lock_push(struct tipc_bearer *b_ptr)
 {
-       int res;
-
        spin_lock_bh(&b_ptr->lock);
-       res = bearer_push(b_ptr);
+       bearer_push(b_ptr);
        spin_unlock_bh(&b_ptr->lock);
-       if (res)
-               tipc_bcbearer_push();
 }