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 DD394A0546; Thu, 27 May 2021 10:06:14 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8956641106; Thu, 27 May 2021 10:06:06 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 19B9A41105 for ; Thu, 27 May 2021 10:06:04 +0200 (CEST) IronPort-SDR: 9FLixkyfteQJSWgrthch5BZuQO9OIMIE6EbQEhond8ixOHD6VT5SDigNq3Kr4Z74iC9I7xqWIs Sqjx9bnNZNKw== X-IronPort-AV: E=McAfee;i="6200,9189,9996"; a="223877754" X-IronPort-AV: E=Sophos;i="5.82,334,1613462400"; d="scan'208";a="223877754" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 May 2021 01:06:04 -0700 IronPort-SDR: 8pEvG/OhCoLMRZKz/efVbzeHyoFANrOhsw1vYrj9UaJ7FrYoGkWnymCSBn5qxlSYQ9r5spue5j 5gbmDEN+Za+Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,334,1613462400"; d="scan'208";a="477382062" Received: from wuwenjun.sh.intel.com ([10.67.110.159]) by orsmga001.jf.intel.com with ESMTP; 27 May 2021 01:06:03 -0700 From: Wenjun Wu To: dev@dpdk.org, jingjing.wu@intel.com, beilei.xing@intel.com Cc: Wenjun Wu Date: Thu, 27 May 2021 15:48:41 +0800 Message-Id: <20210527074845.1263679-3-wenjun1.wu@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210527074845.1263679-1-wenjun1.wu@intel.com> References: <20210527074845.1263679-1-wenjun1.wu@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v1 2/6] 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: Wenjun Wu --- 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