From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from wout3-smtp.messagingengine.com (wout3-smtp.messagingengine.com [64.147.123.19]) by dpdk.org (Postfix) with ESMTP id EE40A1B467 for ; Wed, 11 Jul 2018 18:50:27 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id E279F252; Wed, 11 Jul 2018 12:50:26 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Wed, 11 Jul 2018 12:50:27 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=DtH8HPKcrTWFUpxh6/Sd4F1UWV hXOqBwLONUYF8QVuk=; b=NiLI+DU0Xo+T0HdL4u28ol7HP0Xx1OYteZ+te2v0x4 /IGmctA/4oP63TGKFcGcFT4b8GE5uOoJ9facTluPtWtKc5g2eQBV86TZRDyRsyE4 H3ymT2PG71Br9NgBclxzk4zyEH+XgA2rWAlJdKpnzoazb+XeSHZG1dR2cAuz/Jdm M= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=DtH8HP KcrTWFUpxh6/Sd4F1UWVhXOqBwLONUYF8QVuk=; b=pvCflmMPRB23sIQjG/3T84 c79wJiwXirg8NFkX2Uc2/8XIYY7Rf3IXHVedxP/w3ITXcPZC8HJkGE80kRa7HmmD f1pqVWfK+eVM3RqSdHTQSsWpSJuICLU9pjd4TD8TZBqNuK6ohXiC0EYw+vkKMyXg kd/nqnw0N16fwNiJIar1ElxsCTMFq/UzdIe/vM63Rh4u2d8Ir4a/ojBi9WL1rGgN cF0H5kJhonxAUsaI3nnOITJQ3oCdVwo76UBvcBs91l+KXI/vDxMo4o5dtOKpnfsV 1BadeGSFDigpJccnJywDWOO5gaNoKHiosnmfSk+5bFMVpuPKF6uuC6RbOw/89RTg == X-ME-Proxy: X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 8AE16E4621; Wed, 11 Jul 2018 12:50:25 -0400 (EDT) From: Thomas Monjalon To: David Marchand Cc: dev@dpdk.org, Ferruh Yigit Date: Wed, 11 Jul 2018 18:50:24 +0200 Message-ID: <1708109.YB2S6V1xCz@xps> In-Reply-To: <5708e1f9-d3de-fd65-0562-fca0b10feac9@intel.com> References: <1530267237-17275-1-git-send-email-david.marchand@6wind.com> <5708e1f9-d3de-fd65-0562-fca0b10feac9@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] igb_uio: fix build issue with lock down checks 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: Wed, 11 Jul 2018 16:50:28 -0000 29/06/2018 12:54, Ferruh Yigit: > On 6/29/2018 11:13 AM, David Marchand wrote: > > Caught on ubuntu-16.04 with hwe kernel for aarch64: > >=20 > > $ uname -a > > Linux ubuntu1604arm64es 4.13.0-43-generic #48~16.04.1-Ubuntu SMP Thu May > > 17 13:08:01 UTC 2018 aarch64 aarch64 aarch64 GNU/Linux > >=20 > > =3D=3D Build kernel/linux/igb_uio > > CC [M] .../kernel/linux/igb_uio/igb_uio.o > > In file included from .../kernel/linux/igb_uio/igb_uio.c:20:0: > > .../igb_uio/compat.h: In function =E2=80=98igbuio_kernel_is_locked_down= =E2=80=99: > > .../igb_uio/compat.h:146:7: > > error: "CONFIG_EFI_SECURE_BOOT_LOCK_DOWN" is not defined [-Werror=3Dund= ef] > > #elif CONFIG_EFI_SECURE_BOOT_LOCK_DOWN > > ^ > > cc1: all warnings being treated as errors > >=20 > > Fixes: d67014c3d38b ("igb_uio: fail and log if kernel lock down is enab= led") > > Signed-off-by: David Marchand >=20 > Acked-by: Ferruh Yigit >=20 > Thanks for the fix. Applied, thanks