From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] examples/fips_validation: fix build Date: Mon, 5 Nov 2018 18:45:27 +0100 Message-ID: <20181105174527.15671-1-thomas@monjalon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: ferruh.yigit@intel.com, marko.kovacevic@intel.com To: dev@dpdk.org Return-path: Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id EC6A04CBD for ; Mon, 5 Nov 2018 18:45:38 +0100 (CET) List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The example was not added to the Makefile and there are some compilation errors: examples/fips_validation/main.c: In function ‘prepare_aead_op’: error: control reaches end of non-void function examples/fips_validation/main.c: In function ‘prepare_auth_op’: error: control reaches end of non-void function Fixes: f64adb6714e0 ("examples/fips_validation: support HMAC parsing") Fixes: 4aaad2995e13 ("examples/fips_validation: support GCM parsing") Cc: marko.kovacevic@intel.com Signed-off-by: Thomas Monjalon --- examples/Makefile | 1 + examples/fips_validation/main.c | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/examples/Makefile b/examples/Makefile index 356fcb1cd..33fe0e586 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -17,6 +17,7 @@ DIRS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR) += distributor DIRS-y += ethtool DIRS-y += exception_path DIRS-$(CONFIG_RTE_LIBRTE_EFD) += server_node_efd +DIRS-$(CONFIG_RTE_LIBRTE_CRYPTODEV) += fips_validation DIRS-$(CONFIG_RTE_LIBRTE_FLOW_CLASSIFY) += flow_classify DIRS-y += flow_filtering DIRS-y += helloworld diff --git a/examples/fips_validation/main.c b/examples/fips_validation/main.c index 0a7e75fc8..85f54cbf0 100644 --- a/examples/fips_validation/main.c +++ b/examples/fips_validation/main.c @@ -459,6 +459,8 @@ prepare_auth_op(void) } rte_crypto_op_attach_sym_session(env.op, env.sess); + + return 0; } static int @@ -526,6 +528,8 @@ prepare_aead_op(void) } rte_crypto_op_attach_sym_session(env.op, env.sess); + + return 0; } static int -- 2.19.0