2 * net/tipc/bcast.c: TIPC broadcast code
4 * Copyright (c) 2004-2006, Ericsson AB
5 * Copyright (c) 2004, Intel Corporation.
6 * Copyright (c) 2005, 2010-2011, Wind River Systems
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the names of the copyright holders nor the names of its
18 * contributors may be used to endorse or promote products derived from
19 * this software without specific prior written permission.
21 * Alternatively, this software may be distributed under the terms of the
22 * GNU General Public License ("GPL") version 2 as published by the Free
23 * Software Foundation.
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
42 #include "name_distr.h"
44 #define MAX_PKT_DEFAULT_MCAST 1500 /* bcast link max packet size (fixed) */
45 #define BCLINK_WIN_DEFAULT 20 /* bcast link window size (default) */
46 #define BCBEARER MAX_BEARERS
49 * struct tipc_bcbearer_pair - a pair of bearers used by broadcast link
50 * @primary: pointer to primary bearer
51 * @secondary: pointer to secondary bearer
53 * Bearers must have same priority and same set of reachable destinations
57 struct tipc_bcbearer_pair
{
58 struct tipc_bearer
*primary
;
59 struct tipc_bearer
*secondary
;
63 * struct tipc_bcbearer - bearer used by broadcast link
64 * @bearer: (non-standard) broadcast bearer structure
65 * @media: (non-standard) broadcast media structure
66 * @bpairs: array of bearer pairs
67 * @bpairs_temp: temporary array of bearer pairs used by tipc_bcbearer_sort()
68 * @remains: temporary node map used by tipc_bcbearer_send()
69 * @remains_new: temporary node map used tipc_bcbearer_send()
71 * Note: The fields labelled "temporary" are incorporated into the bearer
72 * to avoid consuming potentially limited stack space through the use of
73 * large local variables within multicast routines. Concurrent access is
74 * prevented through use of the spinlock "bclink_lock".
76 struct tipc_bcbearer
{
77 struct tipc_bearer bearer
;
78 struct tipc_media media
;
79 struct tipc_bcbearer_pair bpairs
[MAX_BEARERS
];
80 struct tipc_bcbearer_pair bpairs_temp
[TIPC_MAX_LINK_PRI
+ 1];
81 struct tipc_node_map remains
;
82 struct tipc_node_map remains_new
;
86 * struct tipc_bclink - link used for broadcast messages
87 * @lock: spinlock governing access to structure
88 * @link: (non-standard) broadcast link structure
89 * @node: (non-standard) node structure representing b'cast link's peer node
90 * @flags: represent bclink states
91 * @bcast_nodes: map of broadcast-capable nodes
92 * @retransmit_to: node that most recently requested a retransmit
94 * Handles sequence numbering, fragmentation, bundling, etc.
98 struct tipc_link link
;
99 struct tipc_node node
;
101 struct tipc_node_map bcast_nodes
;
102 struct tipc_node
*retransmit_to
;
105 static struct tipc_bcbearer
*bcbearer
;
106 static struct tipc_bclink
*bclink
;
107 static struct tipc_link
*bcl
;
109 const char tipc_bclink_name
[] = "broadcast-link";
111 static void tipc_nmap_diff(struct tipc_node_map
*nm_a
,
112 struct tipc_node_map
*nm_b
,
113 struct tipc_node_map
*nm_diff
);
114 static void tipc_nmap_add(struct tipc_node_map
*nm_ptr
, u32 node
);
115 static void tipc_nmap_remove(struct tipc_node_map
*nm_ptr
, u32 node
);
117 static void tipc_bclink_lock(void)
119 spin_lock_bh(&bclink
->lock
);
122 static void tipc_bclink_unlock(void)
124 struct tipc_node
*node
= NULL
;
126 if (likely(!bclink
->flags
)) {
127 spin_unlock_bh(&bclink
->lock
);
131 if (bclink
->flags
& TIPC_BCLINK_RESET
) {
132 bclink
->flags
&= ~TIPC_BCLINK_RESET
;
133 node
= tipc_bclink_retransmit_to();
135 spin_unlock_bh(&bclink
->lock
);
138 tipc_link_reset_all(node
);
141 void tipc_bclink_set_flags(unsigned int flags
)
143 bclink
->flags
|= flags
;
146 static u32
bcbuf_acks(struct sk_buff
*buf
)
148 return (u32
)(unsigned long)TIPC_SKB_CB(buf
)->handle
;
151 static void bcbuf_set_acks(struct sk_buff
*buf
, u32 acks
)
153 TIPC_SKB_CB(buf
)->handle
= (void *)(unsigned long)acks
;
156 static void bcbuf_decr_acks(struct sk_buff
*buf
)
158 bcbuf_set_acks(buf
, bcbuf_acks(buf
) - 1);
161 void tipc_bclink_add_node(u32 addr
)
164 tipc_nmap_add(&bclink
->bcast_nodes
, addr
);
165 tipc_bclink_unlock();
168 void tipc_bclink_remove_node(u32 addr
)
171 tipc_nmap_remove(&bclink
->bcast_nodes
, addr
);
172 tipc_bclink_unlock();
175 static void bclink_set_last_sent(void)
178 bcl
->fsm_msg_cnt
= mod(buf_seqno(bcl
->next_out
) - 1);
180 bcl
->fsm_msg_cnt
= mod(bcl
->next_out_no
- 1);
183 u32
tipc_bclink_get_last_sent(void)
185 return bcl
->fsm_msg_cnt
;
188 static void bclink_update_last_sent(struct tipc_node
*node
, u32 seqno
)
190 node
->bclink
.last_sent
= less_eq(node
->bclink
.last_sent
, seqno
) ?
191 seqno
: node
->bclink
.last_sent
;
196 * tipc_bclink_retransmit_to - get most recent node to request retransmission
198 * Called with bclink_lock locked
200 struct tipc_node
*tipc_bclink_retransmit_to(void)
202 return bclink
->retransmit_to
;
206 * bclink_retransmit_pkt - retransmit broadcast packets
207 * @after: sequence number of last packet to *not* retransmit
208 * @to: sequence number of last packet to retransmit
210 * Called with bclink_lock locked
212 static void bclink_retransmit_pkt(u32 after
, u32 to
)
216 buf
= bcl
->first_out
;
217 while (buf
&& less_eq(buf_seqno(buf
), after
))
219 tipc_link_retransmit(bcl
, buf
, mod(to
- after
));
223 * tipc_bclink_acknowledge - handle acknowledgement of broadcast packets
224 * @n_ptr: node that sent acknowledgement info
225 * @acked: broadcast sequence # that has been acknowledged
227 * Node is locked, bclink_lock unlocked.
229 void tipc_bclink_acknowledge(struct tipc_node
*n_ptr
, u32 acked
)
232 struct sk_buff
*next
;
233 unsigned int released
= 0;
236 /* Bail out if tx queue is empty (no clean up is required) */
237 crs
= bcl
->first_out
;
241 /* Determine which messages need to be acknowledged */
242 if (acked
== INVALID_LINK_SEQ
) {
244 * Contact with specified node has been lost, so need to
245 * acknowledge sent messages only (if other nodes still exist)
246 * or both sent and unsent messages (otherwise)
248 if (bclink
->bcast_nodes
.count
)
249 acked
= bcl
->fsm_msg_cnt
;
251 acked
= bcl
->next_out_no
;
254 * Bail out if specified sequence number does not correspond
255 * to a message that has been sent and not yet acknowledged
257 if (less(acked
, buf_seqno(crs
)) ||
258 less(bcl
->fsm_msg_cnt
, acked
) ||
259 less_eq(acked
, n_ptr
->bclink
.acked
))
263 /* Skip over packets that node has previously acknowledged */
264 while (crs
&& less_eq(buf_seqno(crs
), n_ptr
->bclink
.acked
))
267 /* Update packets that node is now acknowledging */
269 while (crs
&& less_eq(buf_seqno(crs
), acked
)) {
272 if (crs
!= bcl
->next_out
)
273 bcbuf_decr_acks(crs
);
275 bcbuf_set_acks(crs
, 0);
276 bcl
->next_out
= next
;
277 bclink_set_last_sent();
280 if (bcbuf_acks(crs
) == 0) {
281 bcl
->first_out
= next
;
282 bcl
->out_queue_size
--;
288 n_ptr
->bclink
.acked
= acked
;
290 /* Try resolving broadcast link congestion, if necessary */
292 if (unlikely(bcl
->next_out
)) {
293 tipc_link_push_queue(bcl
);
294 bclink_set_last_sent();
296 if (unlikely(released
&& !list_empty(&bcl
->waiting_ports
)))
297 tipc_link_wakeup_ports(bcl
, 0);
299 tipc_bclink_unlock();
303 * tipc_bclink_update_link_state - update broadcast link state
305 * RCU and node lock set
307 void tipc_bclink_update_link_state(struct tipc_node
*n_ptr
, u32 last_sent
)
311 /* Ignore "stale" link state info */
313 if (less_eq(last_sent
, n_ptr
->bclink
.last_in
))
316 /* Update link synchronization state; quit if in sync */
318 bclink_update_last_sent(n_ptr
, last_sent
);
320 if (n_ptr
->bclink
.last_sent
== n_ptr
->bclink
.last_in
)
323 /* Update out-of-sync state; quit if loss is still unconfirmed */
325 if ((++n_ptr
->bclink
.oos_state
) == 1) {
326 if (n_ptr
->bclink
.deferred_size
< (TIPC_MIN_LINK_WIN
/ 2))
328 n_ptr
->bclink
.oos_state
++;
331 /* Don't NACK if one has been recently sent (or seen) */
333 if (n_ptr
->bclink
.oos_state
& 0x1)
338 buf
= tipc_buf_acquire(INT_H_SIZE
);
340 struct tipc_msg
*msg
= buf_msg(buf
);
342 tipc_msg_init(msg
, BCAST_PROTOCOL
, STATE_MSG
,
343 INT_H_SIZE
, n_ptr
->addr
);
344 msg_set_non_seq(msg
, 1);
345 msg_set_mc_netid(msg
, tipc_net_id
);
346 msg_set_bcast_ack(msg
, n_ptr
->bclink
.last_in
);
347 msg_set_bcgap_after(msg
, n_ptr
->bclink
.last_in
);
348 msg_set_bcgap_to(msg
, n_ptr
->bclink
.deferred_head
349 ? buf_seqno(n_ptr
->bclink
.deferred_head
) - 1
350 : n_ptr
->bclink
.last_sent
);
353 tipc_bearer_send(MAX_BEARERS
, buf
, NULL
);
354 bcl
->stats
.sent_nacks
++;
355 tipc_bclink_unlock();
358 n_ptr
->bclink
.oos_state
++;
363 * bclink_peek_nack - monitor retransmission requests sent by other nodes
365 * Delay any upcoming NACK by this node if another node has already
366 * requested the first message this node is going to ask for.
368 static void bclink_peek_nack(struct tipc_msg
*msg
)
370 struct tipc_node
*n_ptr
= tipc_node_find(msg_destnode(msg
));
372 if (unlikely(!n_ptr
))
375 tipc_node_lock(n_ptr
);
377 if (n_ptr
->bclink
.recv_permitted
&&
378 (n_ptr
->bclink
.last_in
!= n_ptr
->bclink
.last_sent
) &&
379 (n_ptr
->bclink
.last_in
== msg_bcgap_after(msg
)))
380 n_ptr
->bclink
.oos_state
= 2;
382 tipc_node_unlock(n_ptr
);
386 * tipc_bclink_xmit - broadcast a packet to all nodes in cluster
388 int tipc_bclink_xmit(struct sk_buff
*buf
)
394 if (!bclink
->bcast_nodes
.count
) {
395 res
= msg_data_sz(buf_msg(buf
));
400 res
= __tipc_link_xmit(bcl
, buf
);
401 if (likely(res
>= 0)) {
402 bclink_set_last_sent();
403 bcl
->stats
.queue_sz_counts
++;
404 bcl
->stats
.accu_queue_sz
+= bcl
->out_queue_size
;
407 tipc_bclink_unlock();
412 * bclink_accept_pkt - accept an incoming, in-sequence broadcast packet
414 * Called with both sending node's lock and bclink_lock taken.
416 static void bclink_accept_pkt(struct tipc_node
*node
, u32 seqno
)
418 bclink_update_last_sent(node
, seqno
);
419 node
->bclink
.last_in
= seqno
;
420 node
->bclink
.oos_state
= 0;
421 bcl
->stats
.recv_info
++;
424 * Unicast an ACK periodically, ensuring that
425 * all nodes in the cluster don't ACK at the same time
428 if (((seqno
- tipc_own_addr
) % TIPC_MIN_LINK_WIN
) == 0) {
429 tipc_link_proto_xmit(node
->active_links
[node
->addr
& 1],
430 STATE_MSG
, 0, 0, 0, 0, 0);
431 bcl
->stats
.sent_acks
++;
436 * tipc_bclink_rcv - receive a broadcast packet, and deliver upwards
438 * RCU is locked, no other locks set
440 void tipc_bclink_rcv(struct sk_buff
*buf
)
442 struct tipc_msg
*msg
= buf_msg(buf
);
443 struct tipc_node
*node
;
448 /* Screen out unwanted broadcast messages */
450 if (msg_mc_netid(msg
) != tipc_net_id
)
453 node
= tipc_node_find(msg_prevnode(msg
));
457 tipc_node_lock(node
);
458 if (unlikely(!node
->bclink
.recv_permitted
))
461 /* Handle broadcast protocol message */
463 if (unlikely(msg_user(msg
) == BCAST_PROTOCOL
)) {
464 if (msg_type(msg
) != STATE_MSG
)
466 if (msg_destnode(msg
) == tipc_own_addr
) {
467 tipc_bclink_acknowledge(node
, msg_bcast_ack(msg
));
468 tipc_node_unlock(node
);
470 bcl
->stats
.recv_nacks
++;
471 bclink
->retransmit_to
= node
;
472 bclink_retransmit_pkt(msg_bcgap_after(msg
),
474 tipc_bclink_unlock();
476 tipc_node_unlock(node
);
477 bclink_peek_nack(msg
);
482 /* Handle in-sequence broadcast message */
484 seqno
= msg_seqno(msg
);
485 next_in
= mod(node
->bclink
.last_in
+ 1);
487 if (likely(seqno
== next_in
)) {
489 /* Deliver message to destination */
491 if (likely(msg_isdata(msg
))) {
493 bclink_accept_pkt(node
, seqno
);
494 tipc_bclink_unlock();
495 tipc_node_unlock(node
);
496 if (likely(msg_mcast(msg
)))
497 tipc_port_mcast_rcv(buf
, NULL
);
500 } else if (msg_user(msg
) == MSG_BUNDLER
) {
502 bclink_accept_pkt(node
, seqno
);
503 bcl
->stats
.recv_bundles
++;
504 bcl
->stats
.recv_bundled
+= msg_msgcnt(msg
);
505 tipc_bclink_unlock();
506 tipc_node_unlock(node
);
507 tipc_link_bundle_rcv(buf
);
508 } else if (msg_user(msg
) == MSG_FRAGMENTER
) {
509 tipc_buf_append(&node
->bclink
.reasm_buf
, &buf
);
510 if (unlikely(!buf
&& !node
->bclink
.reasm_buf
))
513 bclink_accept_pkt(node
, seqno
);
514 bcl
->stats
.recv_fragments
++;
516 bcl
->stats
.recv_fragmented
++;
518 tipc_bclink_unlock();
521 tipc_bclink_unlock();
522 tipc_node_unlock(node
);
523 } else if (msg_user(msg
) == NAME_DISTRIBUTOR
) {
525 bclink_accept_pkt(node
, seqno
);
526 tipc_bclink_unlock();
527 tipc_node_unlock(node
);
531 bclink_accept_pkt(node
, seqno
);
532 tipc_bclink_unlock();
533 tipc_node_unlock(node
);
538 /* Determine new synchronization state */
540 tipc_node_lock(node
);
541 if (unlikely(!tipc_node_is_up(node
)))
544 if (node
->bclink
.last_in
== node
->bclink
.last_sent
)
547 if (!node
->bclink
.deferred_head
) {
548 node
->bclink
.oos_state
= 1;
552 msg
= buf_msg(node
->bclink
.deferred_head
);
553 seqno
= msg_seqno(msg
);
554 next_in
= mod(next_in
+ 1);
555 if (seqno
!= next_in
)
558 /* Take in-sequence message from deferred queue & deliver it */
560 buf
= node
->bclink
.deferred_head
;
561 node
->bclink
.deferred_head
= buf
->next
;
562 node
->bclink
.deferred_size
--;
566 /* Handle out-of-sequence broadcast message */
568 if (less(next_in
, seqno
)) {
569 deferred
= tipc_link_defer_pkt(&node
->bclink
.deferred_head
,
570 &node
->bclink
.deferred_tail
,
572 node
->bclink
.deferred_size
+= deferred
;
573 bclink_update_last_sent(node
, seqno
);
581 bcl
->stats
.deferred_recv
++;
583 bcl
->stats
.duplicates
++;
585 tipc_bclink_unlock();
588 tipc_node_unlock(node
);
593 u32
tipc_bclink_acks_missing(struct tipc_node
*n_ptr
)
595 return (n_ptr
->bclink
.recv_permitted
&&
596 (tipc_bclink_get_last_sent() != n_ptr
->bclink
.acked
));
601 * tipc_bcbearer_send - send a packet through the broadcast pseudo-bearer
603 * Send packet over as many bearers as necessary to reach all nodes
604 * that have joined the broadcast link.
606 * Returns 0 (packet sent successfully) under all circumstances,
607 * since the broadcast link's pseudo-bearer never blocks
609 static int tipc_bcbearer_send(struct sk_buff
*buf
, struct tipc_bearer
*unused1
,
610 struct tipc_media_addr
*unused2
)
614 /* Prepare broadcast link message for reliable transmission,
615 * if first time trying to send it;
616 * preparation is skipped for broadcast link protocol messages
617 * since they are sent in an unreliable manner and don't need it
619 if (likely(!msg_non_seq(buf_msg(buf
)))) {
620 struct tipc_msg
*msg
;
622 bcbuf_set_acks(buf
, bclink
->bcast_nodes
.count
);
624 msg_set_non_seq(msg
, 1);
625 msg_set_mc_netid(msg
, tipc_net_id
);
626 bcl
->stats
.sent_info
++;
628 if (WARN_ON(!bclink
->bcast_nodes
.count
)) {
634 /* Send buffer over bearers until all targets reached */
635 bcbearer
->remains
= bclink
->bcast_nodes
;
637 for (bp_index
= 0; bp_index
< MAX_BEARERS
; bp_index
++) {
638 struct tipc_bearer
*p
= bcbearer
->bpairs
[bp_index
].primary
;
639 struct tipc_bearer
*s
= bcbearer
->bpairs
[bp_index
].secondary
;
640 struct tipc_bearer
*b
= p
;
641 struct sk_buff
*tbuf
;
644 break; /* No more bearers to try */
646 tipc_nmap_diff(&bcbearer
->remains
, &b
->nodes
,
647 &bcbearer
->remains_new
);
648 if (bcbearer
->remains_new
.count
== bcbearer
->remains
.count
)
649 continue; /* Nothing added by bearer pair */
652 /* Use original buffer for first bearer */
653 tipc_bearer_send(b
->identity
, buf
, &b
->bcast_addr
);
655 /* Avoid concurrent buffer access */
656 tbuf
= pskb_copy_for_clone(buf
, GFP_ATOMIC
);
659 tipc_bearer_send(b
->identity
, tbuf
, &b
->bcast_addr
);
660 kfree_skb(tbuf
); /* Bearer keeps a clone */
663 /* Swap bearers for next packet */
665 bcbearer
->bpairs
[bp_index
].primary
= s
;
666 bcbearer
->bpairs
[bp_index
].secondary
= p
;
669 if (bcbearer
->remains_new
.count
== 0)
670 break; /* All targets reached */
672 bcbearer
->remains
= bcbearer
->remains_new
;
679 * tipc_bcbearer_sort - create sets of bearer pairs used by broadcast bearer
681 void tipc_bcbearer_sort(struct tipc_node_map
*nm_ptr
, u32 node
, bool action
)
683 struct tipc_bcbearer_pair
*bp_temp
= bcbearer
->bpairs_temp
;
684 struct tipc_bcbearer_pair
*bp_curr
;
685 struct tipc_bearer
*b
;
692 tipc_nmap_add(nm_ptr
, node
);
694 tipc_nmap_remove(nm_ptr
, node
);
696 /* Group bearers by priority (can assume max of two per priority) */
697 memset(bp_temp
, 0, sizeof(bcbearer
->bpairs_temp
));
700 for (b_index
= 0; b_index
< MAX_BEARERS
; b_index
++) {
701 b
= rcu_dereference_rtnl(bearer_list
[b_index
]);
702 if (!b
|| !b
->nodes
.count
)
705 if (!bp_temp
[b
->priority
].primary
)
706 bp_temp
[b
->priority
].primary
= b
;
708 bp_temp
[b
->priority
].secondary
= b
;
712 /* Create array of bearer pairs for broadcasting */
713 bp_curr
= bcbearer
->bpairs
;
714 memset(bcbearer
->bpairs
, 0, sizeof(bcbearer
->bpairs
));
716 for (pri
= TIPC_MAX_LINK_PRI
; pri
>= 0; pri
--) {
718 if (!bp_temp
[pri
].primary
)
721 bp_curr
->primary
= bp_temp
[pri
].primary
;
723 if (bp_temp
[pri
].secondary
) {
724 if (tipc_nmap_equal(&bp_temp
[pri
].primary
->nodes
,
725 &bp_temp
[pri
].secondary
->nodes
)) {
726 bp_curr
->secondary
= bp_temp
[pri
].secondary
;
729 bp_curr
->primary
= bp_temp
[pri
].secondary
;
736 tipc_bclink_unlock();
740 int tipc_bclink_stats(char *buf
, const u32 buf_size
)
743 struct tipc_stats
*s
;
752 ret
= tipc_snprintf(buf
, buf_size
, "Link <%s>\n"
753 " Window:%u packets\n",
754 bcl
->name
, bcl
->queue_limit
[0]);
755 ret
+= tipc_snprintf(buf
+ ret
, buf_size
- ret
,
756 " RX packets:%u fragments:%u/%u bundles:%u/%u\n",
757 s
->recv_info
, s
->recv_fragments
,
758 s
->recv_fragmented
, s
->recv_bundles
,
760 ret
+= tipc_snprintf(buf
+ ret
, buf_size
- ret
,
761 " TX packets:%u fragments:%u/%u bundles:%u/%u\n",
762 s
->sent_info
, s
->sent_fragments
,
763 s
->sent_fragmented
, s
->sent_bundles
,
765 ret
+= tipc_snprintf(buf
+ ret
, buf_size
- ret
,
766 " RX naks:%u defs:%u dups:%u\n",
767 s
->recv_nacks
, s
->deferred_recv
, s
->duplicates
);
768 ret
+= tipc_snprintf(buf
+ ret
, buf_size
- ret
,
769 " TX naks:%u acks:%u dups:%u\n",
770 s
->sent_nacks
, s
->sent_acks
, s
->retransmitted
);
771 ret
+= tipc_snprintf(buf
+ ret
, buf_size
- ret
,
772 " Congestion link:%u Send queue max:%u avg:%u\n",
773 s
->link_congs
, s
->max_queue_sz
,
775 (s
->accu_queue_sz
/ s
->queue_sz_counts
) : 0);
777 tipc_bclink_unlock();
781 int tipc_bclink_reset_stats(void)
787 memset(&bcl
->stats
, 0, sizeof(bcl
->stats
));
788 tipc_bclink_unlock();
792 int tipc_bclink_set_queue_limits(u32 limit
)
796 if ((limit
< TIPC_MIN_LINK_WIN
) || (limit
> TIPC_MAX_LINK_WIN
))
800 tipc_link_set_queue_limits(bcl
, limit
);
801 tipc_bclink_unlock();
805 int tipc_bclink_init(void)
807 bcbearer
= kzalloc(sizeof(*bcbearer
), GFP_ATOMIC
);
811 bclink
= kzalloc(sizeof(*bclink
), GFP_ATOMIC
);
818 bcbearer
->bearer
.media
= &bcbearer
->media
;
819 bcbearer
->media
.send_msg
= tipc_bcbearer_send
;
820 sprintf(bcbearer
->media
.name
, "tipc-broadcast");
822 spin_lock_init(&bclink
->lock
);
823 INIT_LIST_HEAD(&bcl
->waiting_ports
);
824 bcl
->next_out_no
= 1;
825 spin_lock_init(&bclink
->node
.lock
);
826 bcl
->owner
= &bclink
->node
;
827 bcl
->max_pkt
= MAX_PKT_DEFAULT_MCAST
;
828 tipc_link_set_queue_limits(bcl
, BCLINK_WIN_DEFAULT
);
829 bcl
->bearer_id
= MAX_BEARERS
;
830 rcu_assign_pointer(bearer_list
[MAX_BEARERS
], &bcbearer
->bearer
);
831 bcl
->state
= WORKING_WORKING
;
832 strlcpy(bcl
->name
, tipc_bclink_name
, TIPC_MAX_LINK_NAME
);
836 void tipc_bclink_stop(void)
839 tipc_link_purge_queues(bcl
);
840 tipc_bclink_unlock();
842 RCU_INIT_POINTER(bearer_list
[BCBEARER
], NULL
);
849 * tipc_nmap_add - add a node to a node map
851 static void tipc_nmap_add(struct tipc_node_map
*nm_ptr
, u32 node
)
853 int n
= tipc_node(node
);
855 u32 mask
= (1 << (n
% WSIZE
));
857 if ((nm_ptr
->map
[w
] & mask
) == 0) {
859 nm_ptr
->map
[w
] |= mask
;
864 * tipc_nmap_remove - remove a node from a node map
866 static void tipc_nmap_remove(struct tipc_node_map
*nm_ptr
, u32 node
)
868 int n
= tipc_node(node
);
870 u32 mask
= (1 << (n
% WSIZE
));
872 if ((nm_ptr
->map
[w
] & mask
) != 0) {
873 nm_ptr
->map
[w
] &= ~mask
;
879 * tipc_nmap_diff - find differences between node maps
880 * @nm_a: input node map A
881 * @nm_b: input node map B
882 * @nm_diff: output node map A-B (i.e. nodes of A that are not in B)
884 static void tipc_nmap_diff(struct tipc_node_map
*nm_a
,
885 struct tipc_node_map
*nm_b
,
886 struct tipc_node_map
*nm_diff
)
888 int stop
= ARRAY_SIZE(nm_a
->map
);
893 memset(nm_diff
, 0, sizeof(*nm_diff
));
894 for (w
= 0; w
< stop
; w
++) {
895 map
= nm_a
->map
[w
] ^ (nm_a
->map
[w
] & nm_b
->map
[w
]);
896 nm_diff
->map
[w
] = map
;
898 for (b
= 0 ; b
< WSIZE
; b
++) {
907 * tipc_port_list_add - add a port to a port list, ensuring no duplicates
909 void tipc_port_list_add(struct tipc_port_list
*pl_ptr
, u32 port
)
911 struct tipc_port_list
*item
= pl_ptr
;
913 int item_sz
= PLSIZE
;
914 int cnt
= pl_ptr
->count
;
916 for (; ; cnt
-= item_sz
, item
= item
->next
) {
919 for (i
= 0; i
< item_sz
; i
++)
920 if (item
->ports
[i
] == port
)
923 item
->ports
[i
] = port
;
928 item
->next
= kmalloc(sizeof(*item
), GFP_ATOMIC
);
930 pr_warn("Incomplete multicast delivery, no memory\n");
933 item
->next
->next
= NULL
;
939 * tipc_port_list_free - free dynamically created entries in port_list chain
942 void tipc_port_list_free(struct tipc_port_list
*pl_ptr
)
944 struct tipc_port_list
*item
;
945 struct tipc_port_list
*next
;
947 for (item
= pl_ptr
->next
; item
; item
= next
) {