Skip to content
Commit 09ea989e authored by David S. Miller's avatar David S. Miller
Browse files

Merge branch 'net-kzfree'



zhong jiang says:

====================
net: Use kzfree() directly

With the help of Coccinelle. We find some place to replace.

@@
expression M, S;
@@

- memset(M, 0, S);
- kfree(M);
+ kzfree(M);
====================

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parents b06b3992 da3a3b65
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment