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 B387BA04C8; Fri, 18 Sep 2020 20:11:05 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6F65D1DB11; Fri, 18 Sep 2020 20:11:04 +0200 (CEST) Received: from mail-oi1-f196.google.com (mail-oi1-f196.google.com [209.85.167.196]) by dpdk.org (Postfix) with ESMTP id 967D81DB09 for ; Fri, 18 Sep 2020 20:11:02 +0200 (CEST) Received: by mail-oi1-f196.google.com with SMTP id a3so8088835oib.4 for ; Fri, 18 Sep 2020 11:11:02 -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=tjRXMOiPnbJMUrWkosYhXVRaG1HM6pw99i5mqI9VSrs=; b=PtQylh+3ZiN6xGe9Ha7DxgkX7YyV6qayGlSO7iCsXqDOonVoqXnVLsklUSelDELURe HsWtP9uUFzFepoyqB5eA//51wB0BoDOj3yjlZtu0qpbCKhcJYwdornNISF+3YBI9nizs 2Otz3gyos1ZKc9N+JDfuvwJ6fviq6/mE9yRHg= 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=tjRXMOiPnbJMUrWkosYhXVRaG1HM6pw99i5mqI9VSrs=; b=ih17afQ25f1i7cAm+SGYWX+zFo+WDkM/5pu0Yc9OvO0DJsu7HYnbCuzLG4McmKXQoD 5y7sPDrQDXQk/EG+rErM+ie99ZkLEz7M6x41Gx5tBEeQIy0/U6DArwGDbkGLVWS+f8KQ rq/rkQLsfmSbbGLRTjWNDw3PzdWvoIWnSU8LaDcNHrZLNOLQG87N9UZ+S1S3poPd8FHD 7c/PtmiPaYx1R14NzBCppMqd6YAGt+BrBBlX6SyRK//ghLNQd8QYMl4jNWOBE8jeBoYn pGXcYyAhi29ooXrXIPoRMwbOPzFkvilgt5FZ6vxB1Gn2IREpOkJV0rUgqS43/grK76vW 7B6A== X-Gm-Message-State: AOAM5335fVnhQRU4AQNrrGoOfEYDaBUBVeIuraCn5shL8pSZE7cq6Itv c2VVZxN5yBzIM1WfCVFLAJLc2w9xkQYycqAG6vdGaw== X-Google-Smtp-Source: ABdhPJyZqz3F/6ALf9QylmcBlyGIg+EsQv3aaA9JSZYHlT0ln/8BJvPuuv6XxVpzIxf1vjaMcftQqGC0lxLedH7Af88= X-Received: by 2002:aca:4904:: with SMTP id w4mr10353690oia.179.1600452661623; Fri, 18 Sep 2020 11:11:01 -0700 (PDT) MIME-Version: 1.0 References: <1599534347-20430-1-git-send-email-humin29@huawei.com> <1600429707-6879-1-git-send-email-humin29@huawei.com> <1600429707-6879-2-git-send-email-humin29@huawei.com> In-Reply-To: From: Ajit Khaparde Date: Fri, 18 Sep 2020 11:10:45 -0700 Message-ID: To: "Ananyev, Konstantin" Cc: "Min Hu (Connor)" , "dev@dpdk.org" , "thomas@monjalon.net" , "arybchenko@solarflare.com" , "Yigit, Ferruh" , "linuxarm@huawei.com" Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH V7 1/3] ethdev: introduce FEC API 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 Fri, Sep 18, 2020 at 5:13 AM Ananyev, Konstantin wrote: > > > > This patch adds Forward error correction(FEC) support for ethdev. > > Introduce APIs which support query and config FEC information in > > hardware. > > > > Signed-off-by: Min Hu (Connor) > > Reviewed-by: Wei Hu (Xavier) > > Reviewed-by: Chengwen Feng > > Reviewed-by: Chengchang Tang > > --- > > v6->v7: > > deleted RTE_ETH_FEC_NUM to prevent ABI breakage. > > add new macro to indicate translation from fec mode > > to capa. > > > > --- > > v5->v6: > > modified release notes. > > deleted check duplicated for FEC API > > fixed code styles according to DPDK coding style. > > added _eth prefix. > > > > --- > > v4->v5: > > Modifies FEC capa definitions using macros. > > Add RTE_ prefix for public FEC mode enum. > > add release notes about FEC for dpdk20_11. > > > > --- > > v2->v3: > > add function return value "-ENOTSUP" for API > > > > --- > > Acked-by: Konstantin Ananyev Reviewed-by: Ajit Khaparde > > > 2.7.4 >