On Sun, 3 Sep 2017 23:49:44 +0800 Jeff Guo <[email protected]> wrote:
> +int
> +rte_eal_uev_fd_new(void)
> +{
> +
> + int netlink_fd = -1;
> +
> + netlink_fd = socket(PF
Please don't use the "initialize everything" style of programming.
Gcc has good detection and warning about uninitalized variables, and this style
defeats that.

