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 2438EA00C5 for ; Fri, 29 May 2020 10:47:23 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 646E71D531; Fri, 29 May 2020 10:47:22 +0200 (CEST) Received: from mail-wr1-f65.google.com (mail-wr1-f65.google.com [209.85.221.65]) by dpdk.org (Postfix) with ESMTP id D22971D531 for ; Fri, 29 May 2020 10:47:20 +0200 (CEST) Received: by mail-wr1-f65.google.com with SMTP id x14so2589558wrp.2 for ; Fri, 29 May 2020 01:47:20 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:subject:from:to:cc:date:in-reply-to :references:content-transfer-encoding:user-agent:mime-version; bh=sp9BGPb6NBzOP/KUJgfNz0CETffq8+kFWSmbnDoE9Z4=; b=NRnHYF9UDdFeejzFt+YECHtR9Kr+6o+/7D2QfONMYGQA+GsbJvYzoSXYc481/auwBx 43RXpxRDqktr+8M8byycCWtcjJ8dVMyLjh75pwxZ2OvKclLuFAaDPVIaNb9gW5vetRc1 4a3eUqf7qGhzzULUbx6wiOOJrnoi8Stnd8kXLpNy6riDmPoNzw3Fra3t2hlvuq9Clhm5 /3CH/NmnXpUuTu70sPXwi354WdCcS9DGT4CAZ66rH758JXhRw/ydiASM/sEaEoIiqTIA lZ2RD2kFbKr0sRzCPL0MbJQ3udwpPoLQYI265PSI8GRS5wUkX/ZAc4u/p5AFen/ImzKP kEaw== X-Gm-Message-State: AOAM531mSI3tURnunQMldDwdYn7gtrA67ZdtjXFpzQDnrEow1AcEdI25 F/gMzmyakUXVX1KDqkrIaU8= X-Google-Smtp-Source: ABdhPJz2jTVhlRQy1pXUZmuEUSakZys+UnMoOvL7tfZnRP5/MKFdjDvcQWw2Kgwr+TFsCnVMZagzRQ== X-Received: by 2002:adf:ee47:: with SMTP id w7mr7467390wro.171.1590742040471; Fri, 29 May 2020 01:47:20 -0700 (PDT) Received: from localhost ([88.98.246.218]) by smtp.gmail.com with ESMTPSA id h5sm9243765wrw.85.2020.05.29.01.47.19 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 29 May 2020 01:47:19 -0700 (PDT) Message-ID: <089e702de370078a5ae629962cdc15670cbb91c5.camel@debian.org> From: Luca Boccassi To: "Wei Hu (Xavier)" Cc: stable@dpdk.org Date: Fri, 29 May 2020 09:47:19 +0100 In-Reply-To: <1590724654-23075-1-git-send-email-xavier.huwei@huawei.com> References: <1590724654-23075-1-git-send-email-xavier.huwei@huawei.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.30.5-1.1 MIME-Version: 1.0 Subject: Re: [dpdk-stable] [PATCH 19.11 0/6] backport for hns3 PMD driver X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Fri, 2020-05-29 at 11:57 +0800, Wei Hu (Xavier) wrote: > This series are backport patches to DPDK 19.11.3 for hns3 PMD driver. >=20 > Chengwen Feng (1): > net/hns3: fix Rx interrupt after reset >=20 > Hao Chen (1): > net/hns3: support Rx interrupt >=20 > Lijun Ou (1): > net/hns3: fix RSS indirection table configuration >=20 > Wei Hu (Xavier) (3): > net/hns3: support different numbers of Rx and Tx queues > net/hns3: fix Tx interrupt when enabling Rx interrupt > net/hns3: fix MSI-X interrupt during initialization >=20 > doc/guides/nics/features/hns3.ini | 1 + > doc/guides/nics/features/hns3_vf.ini | 1 + > doc/guides/nics/hns3.rst | 1 + > drivers/net/hns3/hns3_cmd.h | 49 ++- > drivers/net/hns3/hns3_dcb.c | 103 +++-- > drivers/net/hns3/hns3_dcb.h | 4 +- > drivers/net/hns3/hns3_ethdev.c | 363 +++++++++++++++-- > drivers/net/hns3/hns3_ethdev.h | 17 +- > drivers/net/hns3/hns3_ethdev_vf.c | 398 ++++++++++++++++-- > drivers/net/hns3/hns3_flow.c | 22 +- > drivers/net/hns3/hns3_intr.c | 2 + > drivers/net/hns3/hns3_mbx.h | 13 + > drivers/net/hns3/hns3_regs.h | 10 + > drivers/net/hns3/hns3_rss.c | 28 +- > drivers/net/hns3/hns3_rss.h | 2 + > drivers/net/hns3/hns3_rxtx.c | 769 +++++++++++++++++++++++++++++= +----- > drivers/net/hns3/hns3_rxtx.h | 19 + > 17 files changed, 1578 insertions(+), 224 deletions(-) Series-acked-by: Luca Boccassi Thanks, applied