From: Wei Yongjun <yongjun_...@trendmicro.com.cn> Remove pointless conditional before kfree_skb().
Signed-off-by: Wei Yongjun <yongjun_...@trendmicro.com.cn> --- kernel/audit.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kernel/audit.c b/kernel/audit.c index ea3b7b6..ba9dd4d 100644 --- a/kernel/audit.c +++ b/kernel/audit.c @@ -1024,8 +1024,7 @@ static void audit_buffer_free(struct audit_buffer *ab) if (!ab) return; - if (ab->skb) - kfree_skb(ab->skb); + kfree_skb(ab->skb); spin_lock_irqsave(&audit_freelist_lock, flags); if (audit_freelist_count > AUDIT_MAXFREE) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/