From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f177.google.com (mail-wr0-f177.google.com [209.85.128.177]) by dpdk.org (Postfix) with ESMTP id 9D370108D for ; Thu, 6 Apr 2017 17:35:13 +0200 (CEST) Received: by mail-wr0-f177.google.com with SMTP id w11so62326178wrc.3 for ; Thu, 06 Apr 2017 08:35:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=mB5twIiTLwvME83xXehEXwv4j+HVUInic9ZX7AgbyIY=; b=04h66cHO8uIcOaNmPG+LiK0TgHisHufjEATq31ugDg9cyBnOI+h/pUtOfCx5BnaHNO G3UtWSe2HsT/PpeJi7mth3MboYeMWwk54hRr9RbAIpCTpnSPsc99Xn9FZGFInUTyFpqZ tNfp/NmfmM6Vm7XHkTb/gwSzcBPW0GAAV7MnJ88CN27L64/smDOQdGN51Af0hFucbxv1 +yJKmRTfqBOFV16QFWz6ww/3ZVZQ9hDzqfpla4skqjvIUfGBnaHUxt80b9lcQsCnpTkH YCnNz7kfcKpK0z0e1XD31q+wNMMvHR5/Flz13qLZziAg3ryoJf/HeHAb8PWdfYbTzjEh kzBw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=mB5twIiTLwvME83xXehEXwv4j+HVUInic9ZX7AgbyIY=; b=uVUActM4bT+i7EnAVrNmxOQfTNFa52hqbBfpL5K3zO8EJzPs0JhjmXgdt6jmp0AUMR Y6iaEPvTGMdMtwYKnM3iK12WXtKlmhkFK7TLLi/7iLH7wixBt8gjf1h/a+TzD0Vy8Loq m6vyU6et8hqE353Xe0exjWLQASUxzZAMzMdE3aRbeyV9F1tBvponJBt0UXA5mpQ1DY75 A5DGsQG0l5JAr55ALgl8X1+ffbQ4rS+fLoJM9nRRoOizDjPBOF0x28HcRr9drmnN3iBn xer8jVKkYzKjzMOfu5wjGjFe6UZvg0VhujhSgQ7clLOqTqazadYyWyK1T2pCZPVM1n+d YJEw== X-Gm-Message-State: AFeK/H1DrXBHf20RkoRoAJU5x26gGnqwbuLfuCLjogHzhYvCqy+cISNiz/ozUTLKrdlQQTFK X-Received: by 10.28.22.129 with SMTP id 123mr23491683wmw.10.1491492911469; Thu, 06 Apr 2017 08:35:11 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id d10sm2541251wrd.54.2017.04.06.08.35.10 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 06 Apr 2017 08:35:10 -0700 (PDT) From: Thomas Monjalon To: Olivier Matz Cc: dev@dpdk.org, Jerin Jacob Date: Thu, 06 Apr 2017 17:35:09 +0200 Message-ID: <13684487.oz0q4FAmd1@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20170406150928.GA21546@jerin> References: <20170406141337.14167-1-olivier.matz@6wind.com> <20170406150928.GA21546@jerin> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] test/eventdev: fix compilation with crypto disabled X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Apr 2017 15:35:13 -0000 > > There is a compilation error in the following case: > > > > make config T=x86_64-native-linuxapp-gcc > > sed -i 's,CONFIG_RTE_LIBRTE_CRYPTODEV=y,CONFIG_RTE_LIBRTE_CRYPTODEV=n,' \ > > build/.config > > sed -i 's,CONFIG_RTE_APP_CRYPTO_PERF=y,CONFIG_RTE_APP_CRYPTO_PERF=n,' \ > > build/.config > > make -j4 > > make -j4 test-build > > > > test_eventdev.c:39:27: fatal error: > > rte_cryptodev.h: No such file or directory > > #include > > ^ > > > > Removing the include induces a new error, (missing declaration of > > rte_eal_vdev_init()), which is fixed by including rte_dev.h. > > > > Fixes: f8f9d233ea0e ("test/eventdev: add unit tests") > > > > Signed-off-by: Olivier Matz > > Acked-by: Jerin Jacob Applied, thanks