enic: fix initialization error with clang
authorBruce Richardson <bruce.richardson@intel.com>
Fri, 5 Dec 2014 15:57:11 +0000 (15:57 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 5 Dec 2014 21:09:23 +0000 (22:09 +0100)
This patch fixes the following compiler error raised by clang 3.3
on FreeBSD 10:

  CC enic_clsf.o
lib/librte_pmd_enic/enic_clsf.c:99:25: fatal error: missing field 'u' initializer [-Wmissing-field-initializers]
        struct filter fltr = {0};

It fixes it by changing the initializer to set a named field to zero,
thereby automatically setting the rest of the unnamed fields also to
zero.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
lib/librte_pmd_enic/enic_clsf.c

index 30a4def..577a382 100644 (file)
@@ -96,7 +96,7 @@ int enic_fdir_add_fltr(struct enic *enic, struct rte_fdir_filter *params,
        u16 queue, u8 drop)
 {
        struct enic_fdir_node *key;
-       struct filter fltr = {0};
+       struct filter fltr = {.type = 0};
        int32_t pos;
        u8 do_free = 0;
        u16 old_fltr_id = 0;