Re: [PATCH] qed: remove unnecessary call to memset

2017-09-15 Thread David Miller
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

RE: [PATCH] qed: remove unnecessary call to memset

2017-09-13 Thread Kalluru, Sudarsana
-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

[PATCH] qed: remove unnecessary call to memset

2017-09-12 Thread Himanshu Jha
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,