From patchwork Thu Jan 14 11:05:51 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 86596 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 02716A0A02; Thu, 14 Jan 2021 12:06:58 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 04B5B14116D; Thu, 14 Jan 2021 12:06:27 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 8548F14114D; Thu, 14 Jan 2021 12:06:20 +0100 (CET) IronPort-SDR: UGuZ9QVjbrrkk3JUkD+1T790edMzIN9/Vs5xW8MsEkLP7bV3RbZkoREn3GjV+BfFvAApMwtoya 9Mwtm2oVc0lw== X-IronPort-AV: E=McAfee;i="6000,8403,9863"; a="178498508" X-IronPort-AV: E=Sophos;i="5.79,347,1602572400"; d="scan'208";a="178498508" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2021 03:06:19 -0800 IronPort-SDR: +MJVJq38MpjP3BnmZK0i6/ajpU/C1975ZoCCcqxwlNwmEK1iW+kzQtjftFJzlnPisRVs6oLP2F wRJg86b/W7dw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.79,347,1602572400"; d="scan'208";a="568139817" Received: from silpixa00399126.ir.intel.com ([10.237.222.4]) by orsmga005.jf.intel.com with ESMTP; 14 Jan 2021 03:06:18 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , stable@dpdk.org Date: Thu, 14 Jan 2021 11:05:51 +0000 Message-Id: <20210114110606.21142-6-bruce.richardson@intel.com> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20210114110606.21142-1-bruce.richardson@intel.com> References: <20210114110606.21142-1-bruce.richardson@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH 05/20] net: fix missing header include X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" The Geneve protocol header file is missing the rte_byteorder.h header. Fixes: ea0e711b8ae0 ("app/testpmd: add GENEVE parsing") Cc: stable@dpdk.org Signed-off-by: Bruce Richardson --- lib/librte_net/rte_geneve.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_net/rte_geneve.h b/lib/librte_net/rte_geneve.h index bb67724c31..7c3d477dcb 100644 --- a/lib/librte_net/rte_geneve.h +++ b/lib/librte_net/rte_geneve.h @@ -11,6 +11,7 @@ * GENEVE-related definitions */ #include +#include #ifdef __cplusplus extern "C" {