From patchwork Mon May 31 12:38:05 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Liu, Lingyu" X-Patchwork-Id: 93603 X-Patchwork-Delegate: qi.z.zhang@intel.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 67859A0524; Mon, 31 May 2021 08:04:30 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AB7F240E78; Mon, 31 May 2021 08:04:24 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 8168D40E64 for ; Mon, 31 May 2021 08:04:23 +0200 (CEST) IronPort-SDR: ay2LAXd0IWkavKvd8ok5DTbkaD9t3LRENxVMkxKI62r7GffclHSv6rAshxErGKvqGsKvRuwmB/ 7odze/DGmqvA== X-IronPort-AV: E=McAfee;i="6200,9189,10000"; a="183656796" X-IronPort-AV: E=Sophos;i="5.83,236,1616482800"; d="scan'208";a="183656796" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 May 2021 23:04:23 -0700 IronPort-SDR: AKgLKCY49onckX1sINjpFD9+/kk1AhsezflFAuo90jYmCDCZ7FGupewWTteWTGPPf3n16xNCyO tKBaaPIaXJVQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.83,236,1616482800"; d="scan'208";a="416048397" Received: from dpdk-liulingy-1.sh.intel.com ([10.67.118.206]) by orsmga002.jf.intel.com with ESMTP; 30 May 2021 23:04:22 -0700 From: Lingyu Liu To: dev@dpdk.org, qi.z.zhang@intel.com Cc: Lingyu Liu Date: Mon, 31 May 2021 12:38:05 +0000 Message-Id: <20210531123807.56071-3-lingyu.liu@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210531123807.56071-1-lingyu.liu@intel.com> References: <20210528100409.580216-1-lingyu.liu@intel.com> <20210531123807.56071-1-lingyu.liu@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 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. */