From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, HK_RANDOM_FROM,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 65331C38A2A for ; Sat, 9 May 2020 03:40:49 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 196A920746 for ; Sat, 9 May 2020 03:40:48 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 196A920746 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=huawei.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2C0FC1D66B; Sat, 9 May 2020 05:40:48 +0200 (CEST) Received: from huawei.com (szxga07-in.huawei.com [45.249.212.35]) by dpdk.org (Postfix) with ESMTP id 956F51D65B for ; Sat, 9 May 2020 05:40:45 +0200 (CEST) Received: from DGGEMS405-HUB.china.huawei.com (unknown [172.30.72.60]) by Forcepoint Email with ESMTP id A198FB9F72ADF3E66588; Sat, 9 May 2020 11:40:40 +0800 (CST) Received: from tester.localdomain (10.175.119.39) by DGGEMS405-HUB.china.huawei.com (10.3.19.205) with Microsoft SMTP Server id 14.3.487.0; Sat, 9 May 2020 11:40:32 +0800 From: Xiaoyun wang To: CC: , , , , , , , , , , Xiaoyun wang Date: Sat, 9 May 2020 12:04:12 +0800 Message-ID: X-Mailer: git-send-email 1.8.3.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.175.119.39] X-CFilter-Loop: Reflected Subject: [dpdk-dev] [PATCH v5 0/4] Support ipv6 flow rules 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" This patch adds jumbo frame offload flag, increases judgment whether Tx/Rx queues is non-null when free resources, and if card mode does not support nic, driver will be initialized failed, supports ipv6 flow director for BGP or ICMP packets. -- v4->v5: - increase Tx/Rx queues non-null judgment - add jumbo frame offload flag - increase judgment for support NIC or not - support ipv6 flow rules v3->v4: - fix PF firmware hotactive problem - optimize log style - adds txq xstats members v2->v3: - fix FW hotactive problem - optimize log style v1->v2: - Fix LRO problems - Fix hotupdate firmware problem - Optimize doorbell area initialization - Remove 40GE Mezz card id - Add Fdir filter type - Optimize log files - Support pause flow control v1: - Allocate IO memory with socketid Xiaoyun wang (4): net/hinic: increase Tx/Rx queues non-null judgment net/hinic: add jumbo frame offload flag net/hinic: increase judgment for support NIC or not net/hinic/base: support ipv6 flow rules drivers/net/hinic/base/hinic_pmd_cfg.c | 3 +- drivers/net/hinic/base/hinic_pmd_cmdq.h | 2 +- drivers/net/hinic/base/hinic_pmd_hwif.c | 2 +- drivers/net/hinic/base/hinic_pmd_nicio.c | 1 - drivers/net/hinic/hinic_pmd_ethdev.c | 32 +++-- drivers/net/hinic/hinic_pmd_ethdev.h | 57 ++++++++- drivers/net/hinic/hinic_pmd_flow.c | 209 ++++++++++++++++++++++++++++--- drivers/net/hinic/hinic_pmd_rx.c | 3 +- drivers/net/hinic/hinic_pmd_tx.c | 5 +- 9 files changed, 281 insertions(+), 33 deletions(-) -- 1.8.3.1