aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc/monitor.h
diff options
context:
space:
mode:
authorHoang Le <hoang.h.le@dektech.com.au>2019-11-12 07:40:04 +0700
committerDavid S. Miller <davem@davemloft.net>2019-11-12 19:45:45 -0800
commit46cb01eeeb86fca6afe24dda1167b0cb95424e29 (patch)
tree521333f62319b6a56a518f1cc6444a7b05f7be5a /net/tipc/monitor.h
parentMerge branch 'netfilter-flowtable-hardware-offload' (diff)
downloadlinux-dev-46cb01eeeb86fca6afe24dda1167b0cb95424e29.tar.xz
linux-dev-46cb01eeeb86fca6afe24dda1167b0cb95424e29.zip
tipc: update mon's self addr when node addr generated
In commit 25b0b9c4e835 ("tipc: handle collisions of 32-bit node address hash values"), the 32-bit node address only generated after one second trial period expired. However the self's addr in struct tipc_monitor do not update according to node address generated. This lead to it is always zero as initial value. As result, sorting algorithm using this value does not work as expected, neither neighbor monitoring framework. In this commit, we add a fix to update self's addr when 32-bit node address generated. Fixes: 25b0b9c4e835 ("tipc: handle collisions of 32-bit node address hash values") Acked-by: Jon Maloy <jon.maloy@ericsson.com> Signed-off-by: Hoang Le <hoang.h.le@dektech.com.au> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/monitor.h')
-rw-r--r--net/tipc/monitor.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/tipc/monitor.h b/net/tipc/monitor.h
index 2a21b93e0d04..ed63d2e650b0 100644
--- a/net/tipc/monitor.h
+++ b/net/tipc/monitor.h
@@ -77,6 +77,7 @@ int __tipc_nl_add_monitor(struct net *net, struct tipc_nl_msg *msg,
u32 bearer_id);
int tipc_nl_add_monitor_peer(struct net *net, struct tipc_nl_msg *msg,
u32 bearer_id, u32 *prev_node);
+void tipc_mon_reinit_self(struct net *net);
extern const int tipc_max_domain_size;
#endif