[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <49A5208E.3050302@cn.fujitsu.com>
Date: Wed, 25 Feb 2009 18:42:22 +0800
From: Wei Yongjun <yjwei@...fujitsu.com>
To: Arnaldo Carvalho de Melo <acme@...stprotocols.net>
CC: netdev@...r.kernel.org
Subject: [PATCH] llc: remove some pointless conditionals before kfree_skb()
Remove some pointless conditionals before kfree_skb().
Signed-off-by: Wei Yongjun <yjwei@...fujitsu.com>
---
net/llc/llc_conn.c | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/net/llc/llc_conn.c b/net/llc/llc_conn.c
index 5c6d89c..3477624 100644
--- a/net/llc/llc_conn.c
+++ b/net/llc/llc_conn.c
@@ -332,8 +332,7 @@ int llc_conn_remove_acked_pdus(struct sock *sk, u8 nr, u16 *how_many_unacked)
for (i = 0; i < pdu_pos && i < q_len; i++) {
skb = skb_dequeue(&llc->pdu_unack_q);
- if (skb)
- kfree_skb(skb);
+ kfree_skb(skb);
nbr_acked++;
}
out:
--
1.5.3.8
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists