patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Michael Baum <michaelba@nvidia.com>
To: Luca Boccassi <bluca@debian.org>, "stable@dpdk.org" <stable@dpdk.org>
Cc: Matan Azrad <matan@nvidia.com>,
	Slava Ovsiienko <viacheslavo@nvidia.com>,
	 Alexander Kozyrev <akozyrev@nvidia.com>
Subject: RE: [PATCH 20.11 0/5] mlx5: some fixes
Date: Wed, 23 Feb 2022 16:06:53 +0000	[thread overview]
Message-ID: <DM5PR12MB4661A8A34FA53FAF7D423E7BCC3C9@DM5PR12MB4661.namprd12.prod.outlook.com> (raw)
In-Reply-To: <0e6ff0d6796fd80691bc1f1e1d9a5bfaecb5d97c.camel@debian.org>

Hi

> -----Original Message-----
> From: Luca Boccassi <bluca@debian.org>
> Sent: Tuesday, February 22, 2022 4:33 PM
> To: Michael Baum <michaelba@nvidia.com>; stable@dpdk.org
> Cc: Matan Azrad <matan@nvidia.com>; Slava Ovsiienko
> <viacheslavo@nvidia.com>; Alexander Kozyrev <akozyrev@nvidia.com>
> Subject: Re: [PATCH 20.11 0/5] mlx5: some fixes
> 
> External email: Use caution opening links or attachments
> 
> 
> On Mon, 2022-02-21 at 21:46 +0200, Michael Baum wrote:
> > Backport some fixes to 20.11.5
> >
> > The upstream commits:
> >  - 10599cf83e  common/mlx5: add minimum WQE size for striding RQ
> >  - 8928997a13  common/mlx5: fix error handling in multi-class probe
> >  - 147f6fb42b  net/mlx5: fix memory socket selection in ASO management
> >  - 34776af600  net/mlx5: fix MPRQ stride devargs adjustment
> >  - 0947ed380f  net/mlx5: improve stride parameter names
> >
> > The following commit [1] sent by Alexander Kozyrev fixes one of them
> > [2], so I integrated it inside.
> >
> > [1] 728b6447e7  net/mlx5: fix MPRQ WQE size assertion
> >
> > [2] 34776af600  net/mlx5: fix MPRQ stride devargs adjustment
> >
> > Cc: akozyrev@nvidia.com
> >
> > Michael Baum (5):
> >   common/mlx5: add minimum WQE size for striding RQ
> >   net/mlx5: improve stride parameter names
> >   net/mlx5: fix MPRQ stride devargs adjustment
> >   net/mlx5: fix memory socket selection in ASO management
> >   common/mlx5: fix error handling in multi-class probe
> >
> >  drivers/common/mlx5/mlx5_common_pci.c |   7 +-
> >  drivers/common/mlx5/mlx5_devx_cmds.c  |  28 +++
> >  drivers/common/mlx5/mlx5_devx_cmds.h  |   1 +
> >  drivers/common/mlx5/mlx5_prm.h        |  38 +++-
> >  drivers/net/mlx5/linux/mlx5_os.c      |  48 ++---
> >  drivers/net/mlx5/linux/mlx5_verbs.c   |   4 +-
> >  drivers/net/mlx5/mlx5.c               |   4 +-
> >  drivers/net/mlx5/mlx5.h               |  12 +-
> >  drivers/net/mlx5/mlx5_defs.h          |   4 +-
> >  drivers/net/mlx5/mlx5_devx.c          |   4 +-
> >  drivers/net/mlx5/mlx5_flow_age.c      |  27 ++-
> >  drivers/net/mlx5/mlx5_rxq.c           | 249 +++++++++++++++++---------
> >  drivers/net/mlx5/mlx5_rxtx.c          |  22 +--
> >  drivers/net/mlx5/mlx5_rxtx.h          |  10 +-
> >  drivers/net/mlx5/mlx5_rxtx_vec.c      |   8 +-
> >  15 files changed, 290 insertions(+), 176 deletions(-)
> >
> 
> The second patch does not apply:
> 
> --- a/drivers/net/mlx5/mlx5_rxq.c
> +++ b/drivers/net/mlx5/mlx5_rxq.c
> @@@ -205,9 -205,9 +205,15 @@@ rxq_alloc_elts_sprq(struct mlx5_rxq_ctr
>   {
>         const unsigned int sges_n = 1 << rxq_ctrl->rxq.sges_n;
>         unsigned int elts_n = mlx5_rxq_mprq_enabled(&rxq_ctrl->rxq) ?
> ++<<<<<<< HEAD
>  +              (1 << rxq_ctrl->rxq.elts_n) * (1 << rxq_ctrl->rxq.strd_num_n) :
>  +              (1 << rxq_ctrl->rxq.elts_n);
>  +      bool has_vec_support = mlx5_rxq_check_vec_support(&rxq_ctrl->rxq)
> > 0;
> ++=======
> +                             RTE_BIT32(rxq_ctrl->rxq.elts_n) *
> +                             RTE_BIT32(rxq_ctrl->rxq.log_strd_num) :
> +                             RTE_BIT32(rxq_ctrl->rxq.elts_n);
> ++>>>>>>> net/mlx5: improve stride parameter names
>         unsigned int i;
>         int err;
> 
> Did you test it with the 20.11 branch from the staging area at
> https://github.com/bluca/dpdk-stable.git ?

I'm sorry, I made a mistake in the branch.
I'm sending v2.

> 
> --
> Kind regards,
> Luca Boccassi

      reply	other threads:[~2022-02-23 16:06 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-21 19:46 Michael Baum
2022-02-21 19:46 ` [PATCH 20.11 1/5] common/mlx5: add minimum WQE size for striding RQ Michael Baum
2022-02-21 19:46 ` [PATCH 20.11 2/5] net/mlx5: improve stride parameter names Michael Baum
2022-02-21 19:46 ` [PATCH 20.11 3/5] net/mlx5: fix MPRQ stride devargs adjustment Michael Baum
2022-02-21 19:46 ` [PATCH 20.11 4/5] net/mlx5: fix memory socket selection in ASO management Michael Baum
2022-02-21 19:46 ` [PATCH 20.11 5/5] common/mlx5: fix error handling in multi-class probe Michael Baum
2022-02-22 14:32 ` [PATCH 20.11 0/5] mlx5: some fixes Luca Boccassi
2022-02-23 16:06   ` Michael Baum [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=DM5PR12MB4661A8A34FA53FAF7D423E7BCC3C9@DM5PR12MB4661.namprd12.prod.outlook.com \
    --to=michaelba@nvidia.com \
    --cc=akozyrev@nvidia.com \
    --cc=bluca@debian.org \
    --cc=matan@nvidia.com \
    --cc=stable@dpdk.org \
    --cc=viacheslavo@nvidia.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).