From: Allan Stephens Date: Tue, 18 Jan 2011 20:15:34 +0000 (-0500) Subject: tipc: Set unused probe field of link protocol messages to defined value X-Git-Tag: Ubuntu-5.4-5.4.0-11.14~22752^2~274^2~6 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=f23d9bf2b7ba22fe49b65d344b3651049cecc51d;p=mirror_ubuntu-focal-kernel.git tipc: Set unused probe field of link protocol messages to defined value Ensures that a link reset or activate message has a "probe" field of zero. (This field is currently unused in these messages, but this could potentially change in future versions of TIPC.) Signed-off-by: Allan Stephens Signed-off-by: Paul Gortmaker --- diff --git a/net/tipc/link.c b/net/tipc/link.c index d1818fbc19a3..754e3109038b 100644 --- a/net/tipc/link.c +++ b/net/tipc/link.c @@ -1946,6 +1946,7 @@ void tipc_link_send_proto_msg(struct link *l_ptr, u32 msg_typ, int probe_msg, msg_set_ack(msg, mod(l_ptr->reset_checkpoint - 1)); msg_set_seq_gap(msg, 0); msg_set_next_sent(msg, 1); + msg_set_probe(msg, 0); msg_set_link_tolerance(msg, l_ptr->tolerance); msg_set_linkprio(msg, l_ptr->priority); msg_set_max_pkt(msg, l_ptr->max_pkt_target);