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 9867CA0546; Thu, 27 May 2021 10:06:21 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A47164110C; Thu, 27 May 2021 10:06:09 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id DEC504110D for ; Thu, 27 May 2021 10:06:07 +0200 (CEST) IronPort-SDR: ah/kFjz4OJFsXi+2Ja427L14SAfHLbZg0aq5JH2DWDjHbnQISha9Q//9x4akos2YwjXDXe9IOc wJJwoo8hfJKw== X-IronPort-AV: E=McAfee;i="6200,9189,9996"; a="223877757" X-IronPort-AV: E=Sophos;i="5.82,334,1613462400"; d="scan'208";a="223877757" 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:07 -0700 IronPort-SDR: hAidH5aPta3VRHPoviVdAeiWsT/xuGWyCYkCJLZ0A+u6OgweD4FneWQO4WgEwH8+MiRESSf5mm fhvzszktdbYQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.82,334,1613462400"; d="scan'208";a="477382082" Received: from wuwenjun.sh.intel.com ([10.67.110.159]) by orsmga001.jf.intel.com with ESMTP; 27 May 2021 01:06:06 -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:42 +0800 Message-Id: <20210527074845.1263679-4-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 3/6] ethdev: add GRE RSS offload type 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" Define new RSS offload type for GRE. Signed-off-by: Wenjun Wu --- lib/ethdev/rte_ethdev.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ethdev/rte_ethdev.h b/lib/ethdev/rte_ethdev.h index faf3bd901d..be83456257 100644 --- a/lib/ethdev/rte_ethdev.h +++ b/lib/ethdev/rte_ethdev.h @@ -537,6 +537,7 @@ struct rte_eth_rss_conf { #define ETH_RSS_PPPOE (1ULL << 31) #define ETH_RSS_ECPRI (1ULL << 32) #define ETH_RSS_MPLS (1ULL << 33) +#define ETH_RSS_GRE (1ULL << 34) /* * We use the following macros to combine with above ETH_RSS_* for -- 2.25.1