From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id AB32BA04BC; Thu, 8 Oct 2020 12:02:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 707E41BCE1; Thu, 8 Oct 2020 12:02:41 +0200 (CEST) Received: from huawei.com (szxga07-in.huawei.com [45.249.212.35]) by dpdk.org (Postfix) with ESMTP id B91481B6F6 for ; Thu, 8 Oct 2020 12:02:39 +0200 (CEST) Received: from DGGEMS402-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 1F8823F7E29C32976F62; Thu, 8 Oct 2020 18:02:37 +0800 (CST) Received: from localhost.localdomain (10.69.192.56) by DGGEMS402-HUB.china.huawei.com (10.3.19.202) with Microsoft SMTP Server id 14.3.487.0; Thu, 8 Oct 2020 18:02:27 +0800 From: "Min Hu (Connor)" To: CC: , , , , Date: Thu, 8 Oct 2020 18:02:53 +0800 Message-ID: <1602151376-23766-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 V16 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 | 232 ++++++++++++++++++ app/test-pmd/config.c | 91 +++++++ app/test-pmd/testpmd.h | 2 + doc/guides/rel_notes/release_20_11.rst | 10 + doc/guides/testpmd_app_ug/testpmd_funcs.rst | 22 ++ drivers/net/hns3/hns3_cmd.h | 19 +- drivers/net/hns3/hns3_ethdev.c | 356 ++++++++++++++++++++++++++++ drivers/net/hns3/hns3_ethdev.h | 1 + lib/librte_ethdev/rte_ethdev.c | 44 ++++ lib/librte_ethdev/rte_ethdev.h | 105 ++++++++ lib/librte_ethdev/rte_ethdev_driver.h | 88 +++++++ lib/librte_ethdev/rte_ethdev_version.map | 3 + 12 files changed, 972 insertions(+), 1 deletion(-) -- 2.7.4