From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 6468B1B1BD for ; Wed, 24 Jan 2018 16:42:10 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 1BFFD22701; Wed, 24 Jan 2018 10:42:10 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Wed, 24 Jan 2018 10:42:10 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux.org; h=cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=u/QFxYI4rlc3SDOh7 DoHfIdyAVq0QM+2UACba6OaUFM=; b=J49DgcjhsNYy0E9NLf5SbudcgEhK8avoU iH/Y3IINu9/VBkWX+xUWvNkcNONGUFwPa+idVwo0v2tFmyfIvIdfL4kLHLcaNARX H93skuiE5iIFM2MhsHjkecxNcpoAtDAZZAZoBHynsGF62u/R0fiuZcTOx25sF7gU xWObfrw2l9Yh+Sk06L7ZplDKL56TFYcbD1KlZvY8ySJvCD7Nn4eK9/UyGNiMTT1J kUntYZ24GwB5MSkSCC9pWq7YrD7CwmCRxcDuma5CtsFYkgvsnrantR9pQgzL5ozN RsXvP89UnsXGMoaHy+bLtGr+Q/NSaYn2PqF7iADDyoINkrY+hxknQ== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm1; bh=u/QFxYI4rlc3SDOh7DoHfIdyAVq0QM+2UACba6OaUFM=; b=Cj5XdMjE wCK41RrDINaHyb4ORNyjNUzSwxoDEf80S/Sn/+rIGscQfUTfvP4a8jLOdmKK/mLW Pxa8ak7J9exgoWek/q21YsDwYVhsXlGmR0AaKOM2TuLc3qpG6xCVBOcMsNqVkHWs AhuSajb4Or+Tb04tWrY7zKEbf3uKVvd1PMbPzRjSCMqwFKp3gFuRR1aHRHgJYA+B PfpLVIys3JSGAtozz1rL5+N5egoi421IkKJI6pwIWCbzGUPhhaaIciZ7Ip9OOqqg jXtQ4nwALhfnI0ZdPGLhYL4jyW5Vdsa19FOppXzuNyIf1K+ghqjLZUWblG6ChV5s FgiHW6NY9oMh8g== X-ME-Sender: Received: from localhost.localdomain (unknown [115.150.27.206]) by mail.messagingengine.com (Postfix) with ESMTPA id 6564A7E354; Wed, 24 Jan 2018 10:42:07 -0500 (EST) From: Yuanhan Liu To: =?UTF-8?q?N=C3=A9lio=20Laranjeiro?= Cc: Akhil Goyal , dpdk stable Date: Wed, 24 Jan 2018 23:33:28 +0800 Message-Id: <1516808026-25523-140-git-send-email-yliu@fridaylinux.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1516808026-25523-1-git-send-email-yliu@fridaylinux.org> References: <1516808026-25523-1-git-send-email-yliu@fridaylinux.org> Subject: [dpdk-stable] patch 'security: fix pedantic compilation' has been queued to LTS release 17.11.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Jan 2018 15:42:10 -0000 Hi, FYI, your patch has been queued to LTS release 17.11.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 01/26/18. So please shout if anyone has objections. Thanks. --yliu --- >>From 8168c08caa8146249a6f9ba504e038d3c0f49e98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A9lio=20Laranjeiro?= Date: Thu, 23 Nov 2017 11:02:39 +0100 Subject: [PATCH] security: fix pedantic compilation [ upstream commit 9ee625c2cfaa2bd0e0b8f8beecdd3ed0a06e8cd5 ] /x86_64-native-linuxapp-gcc/include/rte_security.h:229:8: error: struct has no members [-Werror=pedantic] struct rte_security_macsec_xform { ^~~~~~~~~~~~~~~~~~~~~~~~~ /x86_64-native-linuxapp-gcc/include/rte_security.h:453:3: error: struct has no members [-Werror=pedantic] struct { ^~~~~~ Fixes: c261d1431bd8 ("security: introduce security API and framework") Signed-off-by: Nelio Laranjeiro Acked-by: Akhil Goyal --- lib/librte_security/rte_security.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_security/rte_security.h b/lib/librte_security/rte_security.h index 629f547..fc4cec2 100644 --- a/lib/librte_security/rte_security.h +++ b/lib/librte_security/rte_security.h @@ -228,6 +228,7 @@ struct rte_security_ipsec_xform { */ struct rte_security_macsec_xform { /** To be Filled */ + int dummy; }; /** @@ -452,6 +453,7 @@ struct rte_security_capability { /**< IPsec capability */ struct { /* To be Filled */ + int dummy; } macsec; /**< MACsec capability */ }; -- 2.7.4