diff options
-rw-r--r-- | net/tipc/bcast.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/net/tipc/bcast.c b/net/tipc/bcast.c index 7dc1dc7151ea..08e3216a33d2 100644 --- a/net/tipc/bcast.c +++ b/net/tipc/bcast.c | |||
@@ -44,13 +44,6 @@ | |||
44 | 44 | ||
45 | #define BCLINK_WIN_DEFAULT 20 /* bcast link window size (default) */ | 45 | #define BCLINK_WIN_DEFAULT 20 /* bcast link window size (default) */ |
46 | 46 | ||
47 | /* | ||
48 | * Loss rate for incoming broadcast frames; used to test retransmission code. | ||
49 | * Set to N to cause every N'th frame to be discarded; 0 => don't discard any. | ||
50 | */ | ||
51 | |||
52 | #define TIPC_BCAST_LOSS_RATE 0 | ||
53 | |||
54 | /** | 47 | /** |
55 | * struct bcbearer_pair - a pair of bearers used by broadcast link | 48 | * struct bcbearer_pair - a pair of bearers used by broadcast link |
56 | * @primary: pointer to primary bearer | 49 | * @primary: pointer to primary bearer |
@@ -434,9 +427,6 @@ int tipc_bclink_send_msg(struct sk_buff *buf) | |||
434 | 427 | ||
435 | void tipc_bclink_recv_pkt(struct sk_buff *buf) | 428 | void tipc_bclink_recv_pkt(struct sk_buff *buf) |
436 | { | 429 | { |
437 | #if (TIPC_BCAST_LOSS_RATE) | ||
438 | static int rx_count; | ||
439 | #endif | ||
440 | struct tipc_msg *msg = buf_msg(buf); | 430 | struct tipc_msg *msg = buf_msg(buf); |
441 | struct tipc_node *node = tipc_node_find(msg_prevnode(msg)); | 431 | struct tipc_node *node = tipc_node_find(msg_prevnode(msg)); |
442 | u32 next_in; | 432 | u32 next_in; |
@@ -470,14 +460,6 @@ void tipc_bclink_recv_pkt(struct sk_buff *buf) | |||
470 | return; | 460 | return; |
471 | } | 461 | } |
472 | 462 | ||
473 | #if (TIPC_BCAST_LOSS_RATE) | ||
474 | if (++rx_count == TIPC_BCAST_LOSS_RATE) { | ||
475 | rx_count = 0; | ||
476 | buf_discard(buf); | ||
477 | return; | ||
478 | } | ||
479 | #endif | ||
480 | |||
481 | tipc_node_lock(node); | 463 | tipc_node_lock(node); |
482 | receive: | 464 | receive: |
483 | deferred = node->bclink.deferred_head; | 465 | deferred = node->bclink.deferred_head; |