From: Himanshu Jha
Date: Tue, 12 Sep 2017 16:49:22 +0530
> call to memset to assign 0 value immediately after allocating
> memory with kzalloc is unnecesaary as kzalloc allocates the memory
> filled with 0 value.
>
> Semantic patch used to resolve this issue:
>
> @@
> expression e,e2; constant
-Original Message-
From: Himanshu Jha [mailto:himanshujha199...@gmail.com]
Sent: 12 September 2017 16:49
To: Mintz, Yuval
Cc: Elior, Ariel ; Dept-Eng Everest Linux L2
; netdev@vger.kernel.org;
linux-ker...@vger.kernel.org; Himanshu Jha
Subject: [PATCH] qed: remove unnecessary call
call to memset to assign 0 value immediately after allocating
memory with kzalloc is unnecesaary as kzalloc allocates the memory
filled with 0 value.
Semantic patch used to resolve this issue:
@@
expression e,e2; constant c;
statement S;
@@
e = kzalloc(e2, c);
if(e == NULL) S
- memset(e, 0,