]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
cxgb4: Remove redundant memset before memcpy
authorShyam Saini <mayhs11saini@gmail.com>
Sat, 14 Jan 2017 01:17:40 +0000 (06:47 +0530)
committerDavid S. Miller <davem@davemloft.net>
Sat, 14 Jan 2017 17:00:00 +0000 (12:00 -0500)
commitca4b5eb88aa0da96ede750d8b894e7079612aa65
treeb89f666993e3808c06be7b09d31cebd40de12a79
parentf750e82e7fcba219a0b401d75a58d9fbd956744c
cxgb4: Remove redundant memset before memcpy

The region set by the call to memset, immediately overwritten by
the subsequent call to memcpy and thus makes the  memset redundant.

Also remove the memset((&info, 0, sizeof(info)) on line 398 because
info is memcpy()'ed to before being used in the loop and it isn't
used outside of the loop.

Signed-off-by: Shyam Saini <mayhs11saini@gmail.com>
Reviewed-by: Tobias Klauser <tklauser@distanz.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/chelsio/cxgb4/sched.c