From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx.bisdn.de (mx.bisdn.de [185.27.182.31]) by dpdk.org (Postfix) with ESMTP id A9CAC7E80 for ; Wed, 22 Oct 2014 09:02:52 +0200 (CEST) Received: from localhost.localdomain (unknown [172.16.251.36]) by mx.bisdn.de (Postfix) with ESMTP id E203BA2DA9; Wed, 22 Oct 2014 09:11:10 +0200 (CEST) From: Marc Sune To: dev@dpdk.org Date: Wed, 22 Oct 2014 09:10:51 +0200 Message-Id: <1413961851-13230-1-git-send-email-marc.sune@bisdn.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1ED644BD7E0A5F4091CF203DAFB8E4CC01D8288F@SHSMSX101.ccr.corp.intel.com> References: <1ED644BD7E0A5F4091CF203DAFB8E4CC01D8288F@SHSMSX101.ccr.corp.intel.com> Subject: [dpdk-dev] [PATCH] KNI: fix compilation warning 'missing-field-initializers' X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Oct 2014 07:02:53 -0000 Fix for compilation warning 'missing-field-initializers' for some GCC and clang versions introduced in commit 0c6bc8e Signed-off-by: Marc Sune --- lib/librte_kni/rte_kni.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/librte_kni/rte_kni.c b/lib/librte_kni/rte_kni.c index f64a0a8..de29b99 100644 --- a/lib/librte_kni/rte_kni.c +++ b/lib/librte_kni/rte_kni.c @@ -131,7 +131,14 @@ static void kni_free_mbufs(struct rte_kni *kni); static void kni_allocate_mbufs(struct rte_kni *kni); static volatile int kni_fd = -1; -static struct rte_kni_memzone_pool kni_memzone_pool = {0}; +static struct rte_kni_memzone_pool kni_memzone_pool = { + .initialized = 0, + .max_ifaces = 0, + .slots = 0, + .mutex = RTE_SPINLOCK_INITIALIZER, + .free = NULL, + .free_tail = NULL +}; static const struct rte_memzone * kni_memzone_reserve(const char *name, size_t len, int socket_id, -- 1.7.10.4