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>
此提交包含在:
Wei Yongjun
2009-02-25 00:37:32 +00:00
提交者 David S. Miller
父節點 acb5d75b9b
當前提交 f3fbbe0f6f
共有 2 個檔案被更改,包括 3 行新增6 行删除

查看文件

@@ -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) {