Re: [PATCH 1/2] net: smc: fix missing brace warning for old compilers

2020-10-10 Thread Jakub Kicinski
On Thu, 8 Oct 2020 20:19:28 +0800 Pujin Shi wrote: > For older versions of gcc, the array = {0}; will cause warnings: > > net/smc/smc_llc.c: In function 'smc_llc_send_link_delete_all': > net/smc/smc_llc.c:1317:9: warning: missing braces around initializer > [-Wmissing-braces] > struct smc_llc_

Re: [PATCH 1/2] net: smc: fix missing brace warning for old compilers

2020-10-09 Thread Karsten Graul
On Thu, 8 Oct 2020 20:19:28 +0800 Pujin Shi wrote: > For older versions of gcc, the array = {0}; will cause warnings: > > net/smc/smc_llc.c: In function 'smc_llc_send_link_delete_all': > net/smc/smc_llc.c:1317:9: warning: missing braces around initializer > [-Wmissing-braces] > struct smc_ll

[PATCH 1/2] net: smc: fix missing brace warning for old compilers

2020-10-08 Thread Pujin Shi
For older versions of gcc, the array = {0}; will cause warnings: net/smc/smc_llc.c: In function 'smc_llc_send_link_delete_all': net/smc/smc_llc.c:1317:9: warning: missing braces around initializer [-Wmissing-braces] struct smc_llc_msg_del_link delllc = {0}; ^ net/smc/smc_llc.c:1317:9: