aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/tipc/bcast.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/net/tipc/bcast.c b/net/tipc/bcast.c
index a008c6689305..42b1737f0dcf 100644
--- a/net/tipc/bcast.c
+++ b/net/tipc/bcast.c
@@ -609,11 +609,13 @@ static int tipc_bcbearer_send(struct sk_buff *buf,
609 bcbearer->remains = bcbearer->remains_new; 609 bcbearer->remains = bcbearer->remains_new;
610 } 610 }
611 611
612 /* Unable to reach all targets */ 612 /*
613 * Unable to reach all targets (indicate success, since currently
614 * there isn't code in place to properly block & unblock the
615 * pseudo-bearer used by the broadcast link)
616 */
613 617
614 bcbearer->bearer.publ.blocked = 1; 618 return TIPC_OK;
615 bcl->stats.bearer_congs++;
616 return 1;
617} 619}
618 620
619/** 621/**