From patchwork Thu Jun 11 08:43:20 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qi Zhang X-Patchwork-Id: 71239 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E0934A00C5; Thu, 11 Jun 2020 10:39:37 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DA6284CA6; Thu, 11 Jun 2020 10:39:36 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 7256B49E0 for ; Thu, 11 Jun 2020 10:39:34 +0200 (CEST) IronPort-SDR: G82RK9/lcc0KmvlLwWmC48b5D8RZc8xp9p97CIuBh8P0uVcTZeUZRPUzBpEGiDur1127u0bs1t oW7gvba9xWHw== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 11 Jun 2020 01:39:33 -0700 IronPort-SDR: KIqASSenQ725bss0onQbs7PUAyjvsOLgmwDDzW2vHRc2uuwTEQz8fELT0xKdzeWkNY+CfujGoV 5poOKw8RVmow== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,499,1583222400"; d="scan'208";a="419039112" Received: from dpdk51.sh.intel.com ([10.67.111.82]) by orsmga004.jf.intel.com with ESMTP; 11 Jun 2020 01:39:31 -0700 From: Qi Zhang To: qiming.yang@intel.com Cc: dev@dpdk.org, xiaolong.ye@intel.com, Qi Zhang Date: Thu, 11 Jun 2020 16:43:20 +0800 Message-Id: <20200611084330.18301-1-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.13.6 Subject: [dpdk-dev] [PATCH 00/10] net/ice: base code update for 20.08 batch 2 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" Main changes: 1. support outer IP filter for GTPU (include IPv6) 2. recipe can be reused between PFs. 3. fix VSI ID mask 4. some code refactor and clean Qi Zhang (10): net/ice/base: adjust profile id map locks net/ice/base: refactor to avoid need to retry net/ice/base: add FD support for outer IP of GTPU net/ice/base: add commands for system diagnostic net/ice/base: rename misleading variable net/ice/base: add FD support for GTPU with outer IPv6 net/ice/base: get tunnel type for recipe net/ice/base: choose TCP dummy packet by protocol net/ice/base: fix the VSI ID mask to be 10 bit net/ice/base: replace RSS profile locks drivers/net/ice/base/ice_adminq_cmd.h | 56 ++++++++++- drivers/net/ice/base/ice_common.c | 53 ++++------ drivers/net/ice/base/ice_fdir.c | 42 +++++++- drivers/net/ice/base/ice_fdir.h | 2 + drivers/net/ice/base/ice_flex_pipe.c | 95 +++++++++--------- drivers/net/ice/base/ice_flow.c | 29 ++++-- drivers/net/ice/base/ice_switch.c | 184 +++++++++++++++++++++++++++++++++- drivers/net/ice/base/ice_switch.h | 2 + drivers/net/ice/base/ice_type.h | 1 + 9 files changed, 363 insertions(+), 101 deletions(-) Acked-by: Qiming Yang Reviewed-by: Qiming Yang