aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc
diff options
context:
space:
mode:
authorAllan Stephens <Allan.Stephens@windriver.com>2011-01-18 15:15:34 -0500
committerPaul Gortmaker <paul.gortmaker@windriver.com>2011-02-23 18:05:16 -0500
commitf23d9bf2b7ba22fe49b65d344b3651049cecc51d (patch)
tree7a0746bdfcdab2d8f4a8db18b5f7db65398fb155 /net/tipc
parent9bd80b60827fe8d84c0e594895acb8a44f2b98b1 (diff)
downloadkernel_samsung_smdk4412-f23d9bf2b7ba22fe49b65d344b3651049cecc51d.zip
kernel_samsung_smdk4412-f23d9bf2b7ba22fe49b65d344b3651049cecc51d.tar.gz
kernel_samsung_smdk4412-f23d9bf2b7ba22fe49b65d344b3651049cecc51d.tar.bz2
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 <Allan.Stephens@windriver.com> Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Diffstat (limited to 'net/tipc')
-rw-r--r--net/tipc/link.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c
index d1818fb..754e310 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);