From patchwork Tue Feb 7 18:06:15 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Dmitry Eremin-Solenikov X-Patchwork-Id: 93577 Delivered-To: patch@linaro.org Received: by 10.140.20.99 with SMTP id 90csp2318871qgi; Tue, 7 Feb 2017 10:06:32 -0800 (PST) X-Received: by 10.55.127.4 with SMTP id a4mr17551547qkd.215.1486490792266; Tue, 07 Feb 2017 10:06:32 -0800 (PST) Return-Path: Received: from lists.linaro.org (lists.linaro.org. [54.225.227.206]) by mx.google.com with ESMTP id z59si3533346qtd.75.2017.02.07.10.06.31; Tue, 07 Feb 2017 10:06:32 -0800 (PST) Received-SPF: pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) client-ip=54.225.227.206; Authentication-Results: mx.google.com; spf=pass (google.com: domain of lng-odp-bounces@lists.linaro.org designates 54.225.227.206 as permitted sender) smtp.mailfrom=lng-odp-bounces@lists.linaro.org; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id 8A38B62FA2; Tue, 7 Feb 2017 18:06:31 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on ip-10-142-244-252 X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, URIBL_BLOCKED autolearn=disabled version=3.4.0 Received: from [127.0.0.1] (localhost [127.0.0.1]) by lists.linaro.org (Postfix) with ESMTP id BD2DB62F23; Tue, 7 Feb 2017 18:06:27 +0000 (UTC) X-Original-To: lng-odp@lists.linaro.org Delivered-To: lng-odp@lists.linaro.org Received: by lists.linaro.org (Postfix, from userid 109) id 7882962F7A; Tue, 7 Feb 2017 18:06:25 +0000 (UTC) Received: from mail-lf0-f54.google.com (mail-lf0-f54.google.com [209.85.215.54]) by lists.linaro.org (Postfix) with ESMTPS id 2F38060EAB for ; Tue, 7 Feb 2017 18:06:23 +0000 (UTC) Received: by mail-lf0-f54.google.com with SMTP id v186so67746174lfa.1 for ; Tue, 07 Feb 2017 10:06:23 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=QgMFjpTIxhGbwpa0sd3iORNS3pqwcoUsFuzslp9Yew0=; b=VAB6LV0iDwvkMpoQHIOLkkiKGPGbssQ4Qv4e3r5HouwWf/lPqz2iFqOPzOIQ8w3idt z25I9EuYdXLrtY9Q9cxehLJcXapFsiHj3XQ8bn/Y7Dw+0j3ipWbNrH06BpDbaOdDZkwE UwRu3+Tt85/IrG3n/JSb7KJKyg+MPZXou/Svy2T7MQhfGdBBE0kL/Yr5I4nigx60HrYu XeERG4FHHdFT3kwykKk9bR9aqzYMxx5rLlbI45kOuIKCLg++SKGZave3UrpOerwV8Lb3 AFmgeE190zcCS58zlrTmDzXv16etKvPW7FowpdbbcYJFhP9D3lsJEkmD4cCkwZ00TQoh VEcg== X-Gm-Message-State: AIkVDXIWt2e8VlsBEGfN9AKeXCF7Mxue3v/l2q6P/xWOPzFkYq1gjL/UtmoxpcFxt3U5zGy0Q6Y= X-Received: by 10.25.92.217 with SMTP id u86mr6542655lfi.5.1486490781690; Tue, 07 Feb 2017 10:06:21 -0800 (PST) Received: from forlindon.lumag.auriga.ru ([93.185.26.131]) by smtp.gmail.com with ESMTPSA id s20sm1548331lfe.41.2017.02.07.10.06.20 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 07 Feb 2017 10:06:20 -0800 (PST) From: Dmitry Eremin-Solenikov To: lng-odp@lists.linaro.org Date: Tue, 7 Feb 2017 21:06:15 +0300 Message-Id: <20170207180617.5169-1-dmitry.ereminsolenikov@linaro.org> X-Mailer: git-send-email 2.11.0 MIME-Version: 1.0 Subject: [lng-odp] [PATCH v2 1/3] linux-generic: crypto: add missing include X-BeenThere: lng-odp@lists.linaro.org X-Mailman-Version: 2.1.16 Precedence: list List-Id: "The OpenDataPlane \(ODP\) List" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: lng-odp-bounces@lists.linaro.org Sender: "lng-odp" OpenSSL 1.1.0 headers do not include , so include it manually to fix the following error: In file included from ./include/odp_packet_internal.h:28:0, from odp_classification.c:13: ./include/odp_crypto_internal.h:55:5: error: unknown type name ‘EVP_CIPHER_CTX’ EVP_CIPHER_CTX *ctx; ^~~~~~~~~~~~~~ Signed-off-by: Dmitry Eremin-Solenikov --- platform/linux-generic/include/odp_crypto_internal.h | 1 + 1 file changed, 1 insertion(+) -- 2.11.0 Reviewed-by: Bill Fischofer diff --git a/platform/linux-generic/include/odp_crypto_internal.h b/platform/linux-generic/include/odp_crypto_internal.h index c7b893aa..f85b76ea 100644 --- a/platform/linux-generic/include/odp_crypto_internal.h +++ b/platform/linux-generic/include/odp_crypto_internal.h @@ -13,6 +13,7 @@ extern "C" { #include #include +#include #define MAX_IV_LEN 64 #define OP_RESULT_MAGIC 0x91919191