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 BF9C2A04B5; Thu, 10 Sep 2020 23:03:00 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1D02C1B9B7; Thu, 10 Sep 2020 23:03:00 +0200 (CEST) Received: from mail-oi1-f193.google.com (mail-oi1-f193.google.com [209.85.167.193]) by dpdk.org (Postfix) with ESMTP id 25D36E07 for ; Thu, 10 Sep 2020 23:02:59 +0200 (CEST) Received: by mail-oi1-f193.google.com with SMTP id x14so7304128oic.9 for ; Thu, 10 Sep 2020 14:02:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=1cEKcZx3kPGvxiGEj/lyTUaVpdFzu1B7lPlT62xe8aA=; b=OtVYVTvWFk/xHERru72dS0Fpv2CyVqxG6hJa05dSrwIQy9gmsaHvPZbai6YQ3wssWl +rjLl99fu2mdHFUPfvNW4jrtqB0Oih5Yi0ZZGTzWyYZ+uv5y0b2Dl48he/m+Bu16DVqs szWGUEfc8F5fM8Dq9XKThqoPlKM5Guj7qZFyI= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=1cEKcZx3kPGvxiGEj/lyTUaVpdFzu1B7lPlT62xe8aA=; b=m79oqxBVa46rGdenAtMy/EWnIQgD8iWx43k2cixs/YrIVTFcXh2tRCfc2mAWALw6UV fco8s7gar+Y836bq+uVGuOPz2zY/la6LBTt1P+T80456GwIZAHRnTHg2bzRh6hNsb/Q3 zKT5qZXgY46jXa0T+cH14qJx3xytCAkuoX1RkINwvj8XGsf8wfT5bgPz7gVxyMOqBDK1 HWhpwu5vrqaUyD7Cg1WB+muzewwVVsTHKG+MwPilIt5YOdO2BLW2Itgsh19k9/6gHonk mLA2fjDS3ko3seLa8Wq1TlOwTnj39TGeX5wh13EpL5+D6h36ajUCfa9rUN+EAtaJgKy7 QCaw== X-Gm-Message-State: AOAM531q2uchvFxK4lNSvguOcSGmVdw+/p8YzRAHkrIG3hfAA1GDCrrT CLR+sBDFYn6Lv4T2H1RquCbRylwGHF6jxpKCUNJ8eA== X-Google-Smtp-Source: ABdhPJw/08W4r+0QxTMtJk8y+bJXbC2Il/PtLFkuYwQjAnrc9yiWObZpksIRCRQsZki9L1Vb+oUqZ13oa8ER2r6kJ0s= X-Received: by 2002:aca:4904:: with SMTP id w4mr1229296oia.179.1599771778126; Thu, 10 Sep 2020 14:02:58 -0700 (PDT) MIME-Version: 1.0 References: <1599534347-20430-1-git-send-email-humin29@huawei.com> <1599722646-19188-1-git-send-email-humin29@huawei.com> In-Reply-To: <1599722646-19188-1-git-send-email-humin29@huawei.com> From: Ajit Khaparde Date: Thu, 10 Sep 2020 14:02:41 -0700 Message-ID: To: "Min Hu (Connor)" Cc: dpdk-dev , Thomas Monjalon , Andrew Rybchenko , Ferruh Yigit , linuxarm@huawei.com Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: Re: [dpdk-dev] [PATCH V4 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" On Thu, Sep 10, 2020 at 12:26 AM Min Hu (Connor) wrote: > This series add FEC support for ethdev. > Can you tell why DPDK applications need this info? > > 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 + > drivers/net/hns3/hns3_cmd.h | 19 ++- > drivers/net/hns3/hns3_ethdev.c | 156 ++++++++++++++++++++++ > drivers/net/hns3/hns3_ethdev.h | 1 + > lib/librte_ethdev/rte_ethdev.c | 50 +++++++ > lib/librte_ethdev/rte_ethdev.h | 75 +++++++++++ > lib/librte_ethdev/rte_ethdev_core.h | 77 +++++++++++ > lib/librte_ethdev/rte_ethdev_version.map | 5 + > 10 files changed, 657 insertions(+), 1 deletion(-) > > -- > 2.7.4 > >