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 67F9CA0548; Fri, 23 Apr 2021 10:03:21 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D582C4067E; Fri, 23 Apr 2021 10:03:20 +0200 (CEST) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 22A5F4014F for ; Fri, 23 Apr 2021 10:03:18 +0200 (CEST) IronPort-SDR: DAvQ0RqlKvc0QKUUX1O1GZD2zHdB6ocH5MB0B3ReT7b7uFweDs/CvaD/sGBsInZURy5lrgDH05 UX5+AGh+dTYA== X-IronPort-AV: E=McAfee;i="6200,9189,9962"; a="193916926" X-IronPort-AV: E=Sophos;i="5.82,245,1613462400"; d="scan'208";a="193916926" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Apr 2021 01:03:18 -0700 IronPort-SDR: lHkvN4lZjSdqp8h+sH1nuAdhbkfAN38FMODO1rhFKmeENVoq6hCaIRJIGamhdUpLP7lbOe5BR/ KcdaGMLyGXjw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,245,1613462400"; d="scan'208";a="524931576" Received: from dpdk-xuting-second.sh.intel.com ([10.67.116.154]) by fmsmga001.fm.intel.com with ESMTP; 23 Apr 2021 01:03:16 -0700 From: Ting Xu To: dev@dpdk.org Cc: beilei.xing@intel.com, jingjing.wu@intel.com, qi.z.zhang@intel.com, Ting Xu Date: Fri, 23 Apr 2021 16:06:37 +0800 Message-Id: <20210423080637.11879-1-ting.xu@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH v1 1/2] common/iavf: add header types for PPPoL2TPv2oUDP 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" Added two virtchnl protocol header types for L2TPv2 and PPP to support the RSS hash for PPPoL2TPv2oUDP. Signed-off-by: Ting Xu --- drivers/common/iavf/virtchnl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/common/iavf/virtchnl.h b/drivers/common/iavf/virtchnl.h index e3eb767d66..139569787f 100644 --- a/drivers/common/iavf/virtchnl.h +++ b/drivers/common/iavf/virtchnl.h @@ -1432,6 +1432,8 @@ enum virtchnl_proto_hdr_type { VIRTCHNL_PROTO_HDR_PFCP, VIRTCHNL_PROTO_HDR_GTPC, VIRTCHNL_PROTO_HDR_ECPRI, + VIRTCHNL_PROTO_HDR_L2TPV2, + VIRTCHNL_PROTO_HDR_PPP, }; /* Protocol header field within a protocol header. */ -- 2.17.1