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 11786A034F; Mon, 7 Jun 2021 08:18:17 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DD246410EE; Mon, 7 Jun 2021 08:18:07 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 6C24D410ED for ; Mon, 7 Jun 2021 08:18:06 +0200 (CEST) IronPort-SDR: vjxsk68llIQpNFtCEzpv8Dd5BRZqVjBWstWDex0izaB1bGfbeMAspakzc9g1zHEn8CmryWmRu+ Q0WJMTvISmgg== X-IronPort-AV: E=McAfee;i="6200,9189,10007"; a="202707706" X-IronPort-AV: E=Sophos;i="5.83,254,1616482800"; d="scan'208";a="202707706" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Jun 2021 23:18:06 -0700 IronPort-SDR: w13xXl1+wgA20KemgfNr4xFPEJV/5k7TSlLDuEx6X1dyOws4aPiHglt5myVS+5+zVSytgj36dh cbLJcmTmEW1g== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.83,254,1616482800"; d="scan'208";a="401588766" Received: from dpdk-liulingy-1.sh.intel.com ([10.67.118.206]) by orsmga003.jf.intel.com with ESMTP; 06 Jun 2021 23:18:04 -0700 From: Lingyu Liu To: dev@dpdk.org, qi.z.zhang@intel.com, beilei.xing@intel.com, jingjing.wu@intel.com Cc: junfeng.guo@intel.com, Lingyu Liu Date: Mon, 7 Jun 2021 12:51:13 +0000 Message-Id: <20210607125115.193212-3-lingyu.liu@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210607125115.193212-1-lingyu.liu@intel.com> References: <20210607125115.193212-1-lingyu.liu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v4 2/4] common/iavf: add header types for GRE 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" Add a virtchnl protocol header type to support AVF FDIR and RSS for GRE. Signed-off-by: Lingyu Liu --- drivers/common/iavf/virtchnl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/common/iavf/virtchnl.h b/drivers/common/iavf/virtchnl.h index 3a60faff93..197edce8a1 100644 --- a/drivers/common/iavf/virtchnl.h +++ b/drivers/common/iavf/virtchnl.h @@ -1504,6 +1504,7 @@ enum virtchnl_proto_hdr_type { */ VIRTCHNL_PROTO_HDR_IPV4_FRAG, VIRTCHNL_PROTO_HDR_IPV6_EH_FRAG, + VIRTCHNL_PROTO_HDR_GRE, }; /* Protocol header field within a protocol header. */ -- 2.25.1