Re: [ovs-dev] [PATCH] dpif-linux: Avoid valgrind warning in epoll_ctl() call.

2011-12-12 Thread Ben Pfaff
Thanks, I pushed this to master. On Mon, Dec 12, 2011 at 12:55:21PM -0800, Justin Pettit wrote: > Looks good. > > --Justin > > > On Dec 9, 2011, at 3:59 PM, Ben Pfaff wrote: > > > Valgrind points out correctly that there are uninitialized bytes in the > > 'event' structure. That's OK, but it

Re: [ovs-dev] [PATCH] dpif-linux: Avoid valgrind warning in epoll_ctl() call.

2011-12-12 Thread Justin Pettit
Looks good. --Justin On Dec 9, 2011, at 3:59 PM, Ben Pfaff wrote: > Valgrind points out correctly that there are uninitialized bytes in the > 'event' structure. That's OK, but it doesn't hurt to suppress the warning > by zeroing all of the bytes. > > This doesn't fix a real bug. > > Signed-o

[ovs-dev] [PATCH] dpif-linux: Avoid valgrind warning in epoll_ctl() call.

2011-12-09 Thread Ben Pfaff
Valgrind points out correctly that there are uninitialized bytes in the 'event' structure. That's OK, but it doesn't hurt to suppress the warning by zeroing all of the bytes. This doesn't fix a real bug. Signed-off-by: Ben Pfaff --- lib/dpif-linux.c |1 + 1 files changed, 1 insertions(+),