From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id C2474A04DD; Tue, 26 Nov 2019 15:53:35 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 35C792C60; Tue, 26 Nov 2019 15:53:35 +0100 (CET) Received: from wout4-smtp.messagingengine.com (wout4-smtp.messagingengine.com [64.147.123.20]) by dpdk.org (Postfix) with ESMTP id 7BF11A3 for ; Tue, 26 Nov 2019 15:53:33 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id 878ED7F2; Tue, 26 Nov 2019 09:53:32 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Tue, 26 Nov 2019 09:53:32 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=QSC1bgMZuaBOFErDoILkG5P2X0KJvD1It82H3TFzaMM=; b=IbeA8XHwlx/S rQiEe8ds3iGSBsUFE8yaMk/9/wL5AlvUxkjDCvXI4jI4uoV0njQ99JxqFNdiVUqB A+LnruzP+olIb1eemZN2TLYbJkGoWT9Z+uecc/ENO/BSBfdVYlUbQ67kkxNgti1F 1MrQwCeTM3e/6cV83yQHh/PFJ8WrFS4= 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-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=QSC1bgMZuaBOFErDoILkG5P2X0KJvD1It82H3TFza MM=; b=iTtn23epYyevhW7dBJTahzPSo8kwizfxSQmuUqELRDBBh0f8tIZ/n9CBV /kP+fYxutHmg3QkXzATf1A/MzT1B/X+1QsmsIKEAu6zbp4sffmAtwYUWb1klyqJR NSKKFwQv3AJUoRBX9VJL66jJgxyPTAZo66LR2g2eXjeZ0378s9aBSmpD3JfUhaNr zaH3Mvk0Vi8EY1YdL1ajiR9vvyLbPIj4ReKFX6Qj/iCa4CDO8UtkBJuZYcR8BnjI CXZB29XTFUwSc8H/8JE7WId8DsO2RjQnNPcZphuI+3J5tXSdrEFQTaDgxPm8FIVT JlHeIetXUKzh9xvItK4MQYyI617sw== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedufedrudeifedgjeduucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufffkfgjfhgggfgtsehtufertddttddvnecuhfhrohhmpefvhhhomhgr shcuofhonhhjrghlohhnuceothhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecukf hppeejjedrudefgedrvddtfedrudekgeenucfrrghrrghmpehmrghilhhfrhhomhepthhh ohhmrghssehmohhnjhgrlhhonhdrnhgvthenucevlhhushhtvghrufhiiigvpedt X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 5A0D1306005E; Tue, 26 Nov 2019 09:53:31 -0500 (EST) From: Thomas Monjalon To: Ali Alnubani Cc: dev@dpdk.org Date: Tue, 26 Nov 2019 15:53:30 +0100 Message-ID: <2595156.0HA6zLzNml@xps> In-Reply-To: <20191126083503.23498-1-alialnu@mellanox.com> References: <20191126083503.23498-1-alialnu@mellanox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] net/mlx5: fix build with dlopen linkage 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 26/11/2019 09:35, Ali Alnubani: > The header mlx5_glue.h includes rte_byteorder.h, which isn't > pulled by global_inc. This patch adds the missing include directory > and fixes the build error: > > In file included from drivers/net/mlx5/mlx5_glue.c:31: > drivers/net/mlx5/mlx5_glue.h:12:10: fatal error: > rte_byteorder.h: No such file or directory > > The build failure can be triggered with: > meson -Dibverbs_link=dlopen build && ninja -C build > > Fixes: 400d985eb586 ("net/mlx5: add VLAN push/pop DR commands to glue") > > Signed-off-by: Ali Alnubani Acked-by: Thomas Monjalon