diff options
author | Allan Stephens <allan.stephens@windriver.com> | 2008-05-21 17:53:34 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-05-21 17:53:34 -0400 |
commit | 811102ca23dfdde5ee8b782b3a4bbff44c499cb2 (patch) | |
tree | 5572b81137018dc0ce931f6fcea46e0e090b762e /net/tipc | |
parent | 2ecb0924d7791372a70ef8f1174e37b329b955c3 (diff) |
tipc: Optimize null pointer check during neighbor discovery
This patch optimizes TIPC neighbor discovery code to avoid testing for
a null node pointer when the pointer is already known to be non-null.
Signed-off-by: Allan Stephens <allan.stephens@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc')
-rw-r--r-- | net/tipc/discover.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net/tipc/discover.c b/net/tipc/discover.c index 5d643e5721eb..faeaf06d377e 100644 --- a/net/tipc/discover.c +++ b/net/tipc/discover.c | |||
@@ -200,9 +200,8 @@ void tipc_disc_recv_msg(struct sk_buff *buf) | |||
200 | dbg(" in own cluster\n"); | 200 | dbg(" in own cluster\n"); |
201 | if (n_ptr == NULL) { | 201 | if (n_ptr == NULL) { |
202 | n_ptr = tipc_node_create(orig); | 202 | n_ptr = tipc_node_create(orig); |
203 | } | 203 | if (!n_ptr) |
204 | if (n_ptr == NULL) { | 204 | return; |
205 | return; | ||
206 | } | 205 | } |
207 | spin_lock_bh(&n_ptr->lock); | 206 | spin_lock_bh(&n_ptr->lock); |
208 | link = n_ptr->links[b_ptr->identity]; | 207 | link = n_ptr->links[b_ptr->identity]; |