dpif-linux: Avoid valgrind warning in epoll_ctl() call.
authorBen Pfaff <blp@nicira.com>
Fri, 9 Dec 2011 23:54:43 +0000 (15:54 -0800)
committerBen Pfaff <blp@nicira.com>
Mon, 12 Dec 2011 22:47:10 +0000 (14:47 -0800)
commit733c8d13d7c247245209f9fe54134f35051d3e88
tree0b7a6eb0c42e7cc1074f5a36bf4f2797b6586ca1
parentacaf14866175dc0a301d11cb78f955a3dd8e4cdc
dpif-linux: Avoid valgrind warning in epoll_ctl() call.

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 <blp@nicira.com>
lib/dpif-linux.c