diff options
author | Wei Yongjun <yjwei@cn.fujitsu.com> | 2009-02-25 00:37:32 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-02-27 07:07:36 (GMT) |
commit | f3fbbe0f6f6cbac4c2aa3d71d95e49cf148286d6 (patch) | |
tree | 2d1ba3f45f771308ffa2b4c950055bcd1945df69 /net/core/neighbour.c | |
parent | acb5d75b9bcff73d32d3471a9b3e9a4189223e48 (diff) | |
download | linux-fsl-qoriq-f3fbbe0f6f6cbac4c2aa3d71d95e49cf148286d6.tar.xz |
core: remove some pointless conditionals before kfree_skb()
Remove some pointless conditionals before kfree_skb().
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/neighbour.c')
-rw-r--r-- | net/core/neighbour.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net/core/neighbour.c b/net/core/neighbour.c index e1144cb..417b6d7 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c @@ -871,8 +871,7 @@ static void neigh_timer_handler(unsigned long arg) write_unlock(&neigh->lock); neigh->ops->solicit(neigh, skb); atomic_inc(&neigh->probes); - if (skb) - kfree_skb(skb); + kfree_skb(skb); } else { out: write_unlock(&neigh->lock); @@ -908,8 +907,7 @@ int __neigh_event_send(struct neighbour *neigh, struct sk_buff *skb) neigh->updated = jiffies; write_unlock_bh(&neigh->lock); - if (skb) - kfree_skb(skb); + kfree_skb(skb); return 1; } } else if (neigh->nud_state & NUD_STALE) { |