Re: [ovs-dev] [PATCH] netdev-dpdk: fix warning with gcc 13

2023-05-31 Thread David Marchand
In OVS, commit titles start with a capital letter and ends with a . I suggest: netdev-dpdk: Fix build with gcc 13. On Tue, May 30, 2023 at 4:23 PM Robin Jarry wrote: > > GCC now reports uninitialized warnings from function return values. > > ../lib/netdev-dpdk.c: In function

[ovs-dev] [PATCH] netdev-dpdk: fix warning with gcc 13

2023-05-30 Thread Robin Jarry
GCC now reports uninitialized warnings from function return values. ../lib/netdev-dpdk.c: In function 'netdev_dpdk_mempool_configure': ../lib/netdev-dpdk.c:964:22: warning: 'dmp' may be used uninitialized [-Wmaybe-uninitialized] 964 | dev->dpdk_mp = dmp; |