Re: [PATCH net-next] net/tls: Removed redundant checks for non-NULL

2018-07-26 Thread David Miller
From: Vakul Garg Date: Tue, 24 Jul 2018 16:54:27 +0530 > Removed checks against non-NULL before calling kfree_skb() and > crypto_free_aead(). These functions are safe to be called with NULL > as an argument. > > Signed-off-by: Vakul Garg Applied.

Re: [PATCH net-next] net/tls: Removed redundant checks for non-NULL

2018-07-25 Thread Dave Watson
On 07/24/18 04:54 PM, Vakul Garg wrote: > Removed checks against non-NULL before calling kfree_skb() and > crypto_free_aead(). These functions are safe to be called with NULL > as an argument. > > Signed-off-by: Vakul Garg Acked-by: Dave Watson

[PATCH net-next] net/tls: Removed redundant checks for non-NULL

2018-07-23 Thread Vakul Garg
Removed checks against non-NULL before calling kfree_skb() and crypto_free_aead(). These functions are safe to be called with NULL as an argument. Signed-off-by: Vakul Garg --- net/tls/tls_sw.c | 9 +++-- 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/net/tls/tls_sw.c b/net/tl