From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 09F674404F; Wed, 12 Jun 2024 17:04:39 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6AD8C40E78; Wed, 12 Jun 2024 17:03:31 +0200 (CEST) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.10]) by mails.dpdk.org (Postfix) with ESMTP id 88CD340E35 for ; Wed, 12 Jun 2024 17:03:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1718204609; x=1749740609; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=VaBcUQy3HiDoTAyG/AGK/e26kspNH3NP+bq+xoSfG6w=; b=k3KjUjBLN5bKBALo51v1LKsrzDNTejA9QGkXPqV6Q15p843t7jXzNC0n oBQ4MAmFVo77zV0aMNm9WEfmxkn8vKFk2gH4CXuNHSd+lCm0jqkmNuEZG jfdhNE830XWEkXxrraliX2F0KU9T3PiksEwP0T03O51uhtz5tzvVwW27p YtXOqk9mZuJC9XSeoUU/HarpeyMei9A0KUO97x8L+gTDzMZMrLpoPxWo9 7gMF0v/rE4lrsU34oBgzUD2vOBK3SVDg0ZMvQoaaIcbH8HLSdV2ubcp0p D3BfP7pq1lIYOaUyXd45CsjdIyJf1V2MEwmpLpxSTZeaaEhJUtURl1i2e A==; X-CSE-ConnectionGUID: CpZpo3fhSxeOyCHF5aTiyg== X-CSE-MsgGUID: 3IjUSZCPTDmOONzWXnxe5g== X-IronPort-AV: E=McAfee;i="6700,10204,11101"; a="32459085" X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="32459085" Received: from orviesa009.jf.intel.com ([10.64.159.149]) by orvoesa102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Jun 2024 08:03:26 -0700 X-CSE-ConnectionGUID: EWuYz/s+RmG6+HJ7FeV21g== X-CSE-MsgGUID: OIU7OVzsRP+CQ9KTL3J56Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.08,233,1712646000"; d="scan'208";a="39924827" Received: from silpixa00401119.ir.intel.com ([10.55.129.167]) by orviesa009.jf.intel.com with ESMTP; 12 Jun 2024 08:03:24 -0700 From: Anatoly Burakov To: dev@dpdk.org Cc: Ian Stokes , bruce.richardson@intel.com, Jesse Brandeburg Subject: [PATCH v2 006/148] net/ice/base: add missing include for flow Date: Wed, 12 Jun 2024 16:00:00 +0100 Message-ID: X-Mailer: git-send-email 2.43.0 In-Reply-To: References: <20240430154014.1026-1-ian.stokes@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 From: Ian Stokes When building with certain targets, a missing include was causing a compilation failure. Add the missing include. Signed-off-by: Jesse Brandeburg Signed-off-by: Ian Stokes --- drivers/net/ice/base/ice_flow.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ice/base/ice_flow.h b/drivers/net/ice/base/ice_flow.h index 4f9206db1f..7811c38e15 100644 --- a/drivers/net/ice/base/ice_flow.h +++ b/drivers/net/ice/base/ice_flow.h @@ -7,6 +7,7 @@ #include "ice_flex_type.h" #include "ice_acl.h" +#include "ice_parser.h" #define ICE_IPV4_MAKE_PREFIX_MASK(prefix) ((u32)(~0) << (32 - (prefix))) #define ICE_FLOW_PROF_ID_INVAL 0xfffffffffffffffful -- 2.43.0