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 750101B1B6 for ; Wed, 24 Jan 2018 16:41:59 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 5A6AF22710; Wed, 24 Jan 2018 10:41:58 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Wed, 24 Jan 2018 10:41:58 -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=44+qrJkz2jlkGs8I1 JwS4OZwVZB3PxPlvsMg76m/dwo=; b=i6sezlY9PMJza7w5i1xLjWGfvWetQCqVK kT684IpN04+7A3u3mk03pS1LZe7s6dtA29fDvdxEo3foB0cpXiCe6bzyKBPSj4mW P0PUYx0ahxX4/VrkPsoxaOOkzv+RV26x4VHkbm/NT4IlPVIQdWzxZDqCwn2SZeVW DsFWS1zao0sejaPzk4XPct9vHbhLLt9fFryGB7BRuD0acc3iynsCWy2Q9wmOutRU QE52DL2Is6x6wJ/IG7otsBaA3WlS2j2QwSmM9PJWR3UlRvdeP84b8T4xvqRM4EI/ AL8YCNDZ73ZrgorPYgXxIgk6x5Xd7EllUyE2Y17b+1k1n3lPmyBBg== 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=44+qrJkz2jlkGs8I1JwS4OZwVZB3PxPlvsMg76m/dwo=; b=JUHYXtuc 3j6/i14KJ9YpnK+iYzHW5kUkTS6wkdWjKnG3cZU2Be6wjxSK3UKNm0OmqBwUh5ud 23dDdpRQEkVCExEak6ySPcSdUggd6OO2T7LhNoFWDx6IIYqjlCr7yGmrGVAyELx/ cvurwjH6PawgL9sRPuxqPQSXrnseABP6fipJvFfNrX/w3HV8V9CpJQiVDkg9uJI5 +L5KGqFOdWA9C3sUAH4aumFCLiUBkS4oOCpL/o76dC+HgirU7sQXLHbctM8u9Y/P /U8fCmR5tLGOwG34XxjRRkGwhs74wBsEgfYBobxacPe8FKfc/+yjlELjU7j7NnqW g8iCPC6GhWxBkQ== X-ME-Sender: Received: from localhost.localdomain (unknown [115.150.27.206]) by mail.messagingengine.com (Postfix) with ESMTPA id A7EE97E1BE; Wed, 24 Jan 2018 10:41:56 -0500 (EST) From: Yuanhan Liu To: Jerin Jacob Cc: dpdk stable Date: Wed, 24 Jan 2018 23:33:24 +0800 Message-Id: <1516808026-25523-136-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 'test/crypto: fix missing include' 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:41:59 -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 d4779d2c006d8d31b9b9f268736ce9ba0e027604 Mon Sep 17 00:00:00 2001 From: Jerin Jacob Date: Tue, 28 Nov 2017 18:20:59 +0530 Subject: [PATCH] test/crypto: fix missing include [ upstream commit 3a55855081da3a354eedf51e37af4bad8b13c22a ] time() is defined in time.h Fixes: ffbe3be0d4 ("app/test: add libcrypto") Signed-off-by: Jerin Jacob --- test/test/test_cryptodev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test/test_cryptodev.c b/test/test/test_cryptodev.c index 1bed65d..7997b48 100644 --- a/test/test/test_cryptodev.c +++ b/test/test/test_cryptodev.c @@ -30,6 +30,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include + #include #include #include -- 2.7.4