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=-6.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,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 C0210C43464 for ; Fri, 18 Sep 2020 09:07:52 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 540B2208DB for ; Fri, 18 Sep 2020 09:07:52 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 540B2208DB 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 F05EF1D950; Fri, 18 Sep 2020 11:07:31 +0200 (CEST) Received: from huawei.com (szxga06-in.huawei.com [45.249.212.32]) by dpdk.org (Postfix) with ESMTP id 4C85B1C2E7 for ; Fri, 18 Sep 2020 11:07:26 +0200 (CEST) Received: from DGGEMS413-HUB.china.huawei.com (unknown [172.30.72.58]) by Forcepoint Email with ESMTP id 351D5282673C9507EA16; Fri, 18 Sep 2020 17:07:24 +0800 (CST) Received: from localhost.localdomain (10.69.192.56) by DGGEMS413-HUB.china.huawei.com (10.3.19.213) with Microsoft SMTP Server id 14.3.487.0; Fri, 18 Sep 2020 17:07:16 +0800 From: "Min Hu (Connor)" To: CC: , , , , Date: Fri, 18 Sep 2020 17:04:49 +0800 Message-ID: <1600419892-8826-1-git-send-email-humin29@huawei.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1599534347-20430-1-git-send-email-humin29@huawei.com> References: <1599534347-20430-1-git-send-email-humin29@huawei.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.69.192.56] X-CFilter-Loop: Reflected Subject: [dpdk-dev] [PATCH V6 0/3] add FEC support 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 series add FEC support for ethdev. Min Hu (Connor) (3): ethdev: introduce FEC API net/hns3: support FEC app/testpmd: add FEC command app/test-pmd/cmdline.c | 219 +++++++++++++++++++++++++++++++ app/test-pmd/config.c | 54 ++++++++ app/test-pmd/testpmd.h | 2 + doc/guides/rel_notes/release_20_11.rst | 10 ++ drivers/net/hns3/hns3_cmd.h | 19 ++- drivers/net/hns3/hns3_ethdev.c | 157 ++++++++++++++++++++++ drivers/net/hns3/hns3_ethdev.h | 1 + lib/librte_ethdev/rte_ethdev.c | 49 +++++++ lib/librte_ethdev/rte_ethdev.h | 83 ++++++++++++ lib/librte_ethdev/rte_ethdev_core.h | 78 +++++++++++ lib/librte_ethdev/rte_ethdev_version.map | 5 + 11 files changed, 676 insertions(+), 1 deletion(-) -- 2.7.4