mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-25 08:02:56 +00:00
tipc: introduce replicast as transport option for multicast
TIPC multicast messages are currently carried over a reliable 'broadcast link', making use of the underlying media's ability to transport packets as L2 broadcast or IP multicast to all nodes in the cluster. When the used bearer is lacking that ability, we can instead emulate the broadcast service by replicating and sending the packets over as many unicast links as needed to reach all identified destinations. We now introduce a new TIPC link-level 'replicast' service that does this. Reviewed-by: Parthasarathy Bhuvaragan <parthasarathy.bhuvaragan@ericsson.com> Acked-by: Ying Xue <ying.xue@windriver.com> Signed-off-by: Jon Maloy <jon.maloy@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2ae0b8af1f
commit
a853e4c6d0
7 changed files with 149 additions and 47 deletions
|
@ -607,6 +607,23 @@ error:
|
|||
return false;
|
||||
}
|
||||
|
||||
bool tipc_msg_pskb_copy(u32 dst, struct sk_buff_head *msg,
|
||||
struct sk_buff_head *cpy)
|
||||
{
|
||||
struct sk_buff *skb, *_skb;
|
||||
|
||||
skb_queue_walk(msg, skb) {
|
||||
_skb = pskb_copy(skb, GFP_ATOMIC);
|
||||
if (!_skb) {
|
||||
__skb_queue_purge(cpy);
|
||||
return false;
|
||||
}
|
||||
msg_set_destnode(buf_msg(_skb), dst);
|
||||
__skb_queue_tail(cpy, _skb);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/* tipc_skb_queue_sorted(); sort pkt into list according to sequence number
|
||||
* @list: list to be appended to
|
||||
* @seqno: sequence number of buffer to add
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue