Re: [dpdk-dev] [dpdk-stable] [PATCH] eal: fix unitialized data warning

2019-12-04 Thread David Marchand
On Wed, Dec 4, 2019 at 1:17 PM Andrew Rybchenko wrote: > > On 12/4/19 2:12 PM, David Marchand wrote: > > Fixed title s/unitialized/uninitialized/ > > > > On Wed, Nov 27, 2019 at 11:32 PM Stephen Hemminger > > wrote: > >> > >> Valgrind reports that eal interrupt thread is calling epoll_ctl > >> wi

Re: [dpdk-dev] [dpdk-stable] [PATCH] eal: fix unitialized data warning

2019-12-04 Thread Andrew Rybchenko
On 12/4/19 2:12 PM, David Marchand wrote: > Fixed title s/unitialized/uninitialized/ > > On Wed, Nov 27, 2019 at 11:32 PM Stephen Hemminger > wrote: >> >> Valgrind reports that eal interrupt thread is calling epoll_ctl >> with uninitialized data. Trivial to fix by initializing it. > > Added a n

Re: [dpdk-dev] [dpdk-stable] [PATCH] eal: fix unitialized data warning

2019-12-04 Thread David Marchand
Fixed title s/unitialized/uninitialized/ On Wed, Nov 27, 2019 at 11:32 PM Stephen Hemminger wrote: > > Valgrind reports that eal interrupt thread is calling epoll_ctl > with uninitialized data. Trivial to fix by initializing it. Added a note on it being a Valgrind false positive. > Fixes: af7

Re: [dpdk-dev] [dpdk-stable] [PATCH] eal: fix unitialized data warning

2019-11-29 Thread Stephen Hemminger
On Fri, 29 Nov 2019 09:25:15 +0100 David Marchand wrote: > On Wed, Nov 27, 2019 at 11:32 PM Stephen Hemminger > wrote: > > > > Valgrind reports that eal interrupt thread is calling epoll_ctl > > with uninitialized data. Trivial to fix by initializing it. > > > > Fixes: af75078fece3 ("first publ

Re: [dpdk-dev] [dpdk-stable] [PATCH] eal: fix unitialized data warning

2019-11-29 Thread David Marchand
On Wed, Nov 27, 2019 at 11:32 PM Stephen Hemminger wrote: > > Valgrind reports that eal interrupt thread is calling epoll_ctl > with uninitialized data. Trivial to fix by initializing it. > > Fixes: af75078fece3 ("first public release") > Cc: sta...@dpdk.org > Signed-off-by: Stephen Hemminger >