diff options
author | David S. Miller <davem@davemloft.net> | 2012-04-20 20:40:31 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-20 20:40:31 -0400 |
commit | 167de77fd4e5646f98f67bd9f0a0054a891f6ff4 (patch) | |
tree | abe31d384dbe9c7bad0da839600423d1eda4b6e2 /net/tipc/node.c | |
parent | 2528a5dc4331aebbb990f2a56d179dfa35de4a4f (diff) | |
parent | 9d52ce4bd3fa9e0cf1658791f2c680e20e0598a1 (diff) |
Merge branch 'tipc_net-next' of git://git.kernel.org/pub/scm/linux/kernel/git/paulg/linux
Diffstat (limited to 'net/tipc/node.c')
-rw-r--r-- | net/tipc/node.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/tipc/node.c b/net/tipc/node.c index a34cabc2c43..6a71bea91db 100644 --- a/net/tipc/node.c +++ b/net/tipc/node.c @@ -72,7 +72,7 @@ struct tipc_node *tipc_node_find(u32 addr) struct tipc_node *node; struct hlist_node *pos; - if (unlikely(!in_own_cluster(addr))) + if (unlikely(!in_own_cluster_exact(addr))) return NULL; hlist_for_each_entry(node, pos, &node_htable[tipc_hashfn(addr)], hash) { |