From patchwork Wed Mar 2 06:30:48 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Zhang, Ke1X" X-Patchwork-Id: 108466 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 A21F9A04A4; Wed, 2 Mar 2022 07:35:37 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 392144014E; Wed, 2 Mar 2022 07:35:37 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id B17BB40141 for ; Wed, 2 Mar 2022 07:35:35 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1646202936; x=1677738936; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=qh6Dat9zqs1dzYtsjnl2esI+UXET13/s0Ceha7kdxm0=; b=XNchVRWbhpKMklKPegloguMd0x060XpKKTJGLx/b5PobHvZz9bGn9UVt V6WzUXy5dRtXysoA6vXVSIwtdAXp7n8ttTgLcOz315s+4FZ04nXCtU817 PAGHRFxyyAOaru35cY8MqwTexpKT6g9bwn8fW2gkaQ6669o0zTy8mexes ry2bwEp62h17gKD2TLJ0VbrRGw6EXC23/ac61FZq8PoVTQUZ9BA2ZZE+Y se2i851nuBZGwn/w/KY/I/XAEL/nZk0azIv/Sz07KoyTF4j8kn3vWF56v n/WP7tei2JHs9AuYh/5ebgpVrlMjFFt+yTj00k7mnJkfsFP3yFZhO6xDx g==; X-IronPort-AV: E=McAfee;i="6200,9189,10273"; a="233290284" X-IronPort-AV: E=Sophos;i="5.90,148,1643702400"; d="scan'208";a="233290284" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Mar 2022 22:35:34 -0800 X-IronPort-AV: E=Sophos;i="5.90,148,1643702400"; d="scan'208";a="641583240" Received: from intel-corei7-64.sh.intel.com (HELO localhost.localdomain) ([10.239.251.104]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Mar 2022 22:35:32 -0800 From: Ke Zhang To: dev@dpdk.org, qiming.yang@intel.com, qi.z.zhang@intel.com Cc: Ke Zhang Subject: [PATCH v6 0/4] ice repr functions by DCF Date: Wed, 2 Mar 2022 06:30:48 +0000 Message-Id: <20220302063052.347122-1-ke1x.zhang@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: References: MIME-Version: 1.0 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 This feature add some functions associated with representor: 1. DCF is able to configure the VLAN filter for VFs. 2. DCF is able to configure promiscuous mode for VFs 3. Add / Remove VF mac address 4. display VF stats; 5. reset VF stats Ke Zhang (3): net/ice: add support for display/reset stats by DCF net/ice: add support for add/remove mac addr by DCF net/ice: add support to configure the VLAN filter by DCF Yiding Zhou (1): net/ice: add support for setting promisc by DCF drivers/net/ice/ice_dcf_ethdev.h | 1 + drivers/net/ice/ice_dcf_vf_representor.c | 317 +++++++++++++++++++++-- 2 files changed, 300 insertions(+), 18 deletions(-)