From patchwork Mon May 31 12:38:03 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Liu, Lingyu" X-Patchwork-Id: 93601 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 A8A36A0524; Mon, 31 May 2021 08:04:19 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7031140040; Mon, 31 May 2021 08:04:19 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 2488D4003E for ; Mon, 31 May 2021 08:04:17 +0200 (CEST) IronPort-SDR: G6Esra/Pp33YhAdG5fbiVcewkiVa7Z9hUr52gxnfzxZlmehJ2By8Qr04Quxf7aLidILvdwWmCA SE30nGye0s5Q== X-IronPort-AV: E=McAfee;i="6200,9189,10000"; a="183656786" X-IronPort-AV: E=Sophos;i="5.83,236,1616482800"; d="scan'208";a="183656786" 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:17 -0700 IronPort-SDR: 5OzJWFeBu8JM8vTbGVLXduAsXRoY9EAuePvEYDY7woNKtGBvMVOHvz4Dz6rQ8pnH6bkQzx2FIB C6ThBdRShkJg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.83,236,1616482800"; d="scan'208";a="416048374" Received: from dpdk-liulingy-1.sh.intel.com ([10.67.118.206]) by orsmga002.jf.intel.com with ESMTP; 30 May 2021 23:04:15 -0700 From: Lingyu Liu To: dev@dpdk.org, qi.z.zhang@intel.com Cc: Lingyu Liu Date: Mon, 31 May 2021 12:38:03 +0000 Message-Id: <20210531123807.56071-1-lingyu.liu@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210528100409.580216-1-lingyu.liu@intel.com> References: <20210528100409.580216-1-lingyu.liu@intel.com> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v2 0/4] support AVF RSS and FDIR for GTPoGRE packet 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" Support AVF RSS and FDIR for GTPoGRE packet. Lingyu Liu (4): net/iavf: support flow pattern for GTPoGRE common/iavf: add header types for GRE net/iavf: support AVF FDIR for GTPoGRE tunnel packet net/iavf: support AVF RSS for GTPoGRE packet --- V2 change: - append new protocol to the tail - correct commit message title drivers/common/iavf/virtchnl.h | 1 + drivers/net/iavf/iavf_fdir.c | 42 ++++ drivers/net/iavf/iavf_generic_flow.c | 288 +++++++++++++++++++++++++++ drivers/net/iavf/iavf_generic_flow.h | 40 ++++ drivers/net/iavf/iavf_hash.c | 24 +++ 5 files changed, 395 insertions(+)