Re: [PATCH 0/3] net: Use kzfree() directly

2019-09-05 Thread David Miller
From: zhong jiang Date: Wed, 4 Sep 2019 10:39:09 +0800 > With the help of Coccinelle. We find some place to replace. > > @@ > expression M, S; > @@ > > - memset(M, 0, S); > - kfree(M); > + kzfree(M); Series applied to net-next.

[PATCH 0/3] net: Use kzfree() directly

2019-09-03 Thread zhong jiang
With the help of Coccinelle. We find some place to replace. @@ expression M, S; @@ - memset(M, 0, S); - kfree(M); + kzfree(M); zhong jiang (3): ixgbe: Use kzfree() rather than its implementation. sunrpc: Use kzfree rather than its implementation. net: mpoa: Use kzfree rather than its