public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Breno Leitao <leitao@debian.org>
To: "Creeley, Brett" <bcreeley@amd.com>
Cc: Ajit Khaparde <ajit.khaparde@broadcom.com>,
	 Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>,
	Somnath Kotur <somnath.kotur@broadcom.com>,
	 Andrew Lunn <andrew+netdev@lunn.ch>,
	"David S. Miller" <davem@davemloft.net>,
	 Eric Dumazet <edumazet@google.com>,
	Jakub Kicinski <kuba@kernel.org>,
	 Paolo Abeni <pabeni@redhat.com>,
	Igor Russkikh <irusskikh@marvell.com>,
	 Simon Horman <horms@kernel.org>,
	"K. Y. Srinivasan" <kys@microsoft.com>,
	 Haiyang Zhang <haiyangz@microsoft.com>,
	Wei Liu <wei.liu@kernel.org>, Dexuan Cui <decui@microsoft.com>,
	 Long Li <longli@microsoft.com>,
	Alexander Duyck <alexanderduyck@fb.com>,
	kernel-team@meta.com,  Edward Cree <ecree.xilinx@gmail.com>,
	Brett Creeley <brett.creeley@amd.com>,
	netdev@vger.kernel.org,  linux-kernel@vger.kernel.org,
	oss-drivers@corigine.com, linux-hyperv@vger.kernel.org,
	 linux-net-drivers@amd.com
Subject: Re: [PATCH net-next 2/9] net: atlantic: convert to use .get_rx_ring_count
Date: Thu, 22 Jan 2026 02:43:16 -0800	[thread overview]
Message-ID: <aXH--MjkP03_aDkB@gmail.com> (raw)
In-Reply-To: <4daf0901-20a6-4c9b-9b56-32efef24e5e5@amd.com>

Hello Brett,

On Wed, Jan 21, 2026 at 08:49:23AM -0800, Creeley, Brett wrote:
> On 1/21/2026 7:54 AM, Breno Leitao wrote:
> > Caution: This message originated from an External Source. Use proper caution when opening attachments, clicking links, or responding.
> > 
> > 
> > Use the newly introduced .get_rx_ring_count ethtool ops callback instead
> > of handling ETHTOOL_GRXRINGS directly in .get_rxnfc().
> > 
> > Signed-off-by: Breno Leitao <leitao@debian.org>
> > ---
> >   drivers/net/ethernet/aquantia/atlantic/aq_ethtool.c | 15 +++++++++------
> >   1 file changed, 9 insertions(+), 6 deletions(-)
> > 
> > diff --git a/drivers/net/ethernet/aquantia/atlantic/aq_ethtool.c b/drivers/net/ethernet/aquantia/atlantic/aq_ethtool.c
> > index 6fef47ba0a59b..d8b5491c9cb2b 100644
> > --- a/drivers/net/ethernet/aquantia/atlantic/aq_ethtool.c
> > +++ b/drivers/net/ethernet/aquantia/atlantic/aq_ethtool.c
> > @@ -500,20 +500,22 @@ static int aq_ethtool_set_rss(struct net_device *netdev,
> >          return err;
> >   }
> > 
> > +static u32 aq_ethtool_get_rx_ring_count(struct net_device *ndev)
> > +{
> > +       struct aq_nic_s *aq_nic = netdev_priv(ndev);
> > +       struct aq_nic_cfg_s *cfg = aq_nic_get_cfg(aq_nic);
> > +
> > +       return cfg->vecs;
> > +}
> > +
> 
> Tiny nit, but RCT ordering is not maintained.

Damn, I will re-spin. Thanks for catching it.

--breno
--
pw-bot: cr

  reply	other threads:[~2026-01-22 10:43 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-21 15:54 [PATCH net-next 0/9] net: convert drivers to .get_rx_ring_count (last part) Breno Leitao
2026-01-21 15:54 ` [PATCH net-next 1/9] net: benet: convert to use .get_rx_ring_count Breno Leitao
2026-01-21 15:54 ` [PATCH net-next 2/9] net: atlantic: " Breno Leitao
2026-01-21 16:49   ` Creeley, Brett
2026-01-22 10:43     ` Breno Leitao [this message]
2026-01-21 15:54 ` [PATCH net-next 3/9] net: nfp: " Breno Leitao
2026-01-22  7:03   ` Subbaraya Sundeep
2026-01-21 15:54 ` [PATCH net-next 4/9] net: mana: " Breno Leitao
2026-01-22  7:06   ` Subbaraya Sundeep
2026-01-21 15:54 ` [PATCH net-next 5/9] net: fbnic: " Breno Leitao
2026-01-21 15:54 ` [PATCH net-next 6/9] net: ionic: " Breno Leitao
2026-01-21 16:47   ` Creeley, Brett
2026-01-21 15:54 ` [PATCH net-next 7/9] net: sfc: efx: " Breno Leitao
2026-01-21 15:54 ` [PATCH net-next 8/9] net: sfc: siena: " Breno Leitao
2026-01-21 15:54 ` [PATCH net-next 9/9] net: sfc: falcon: " Breno Leitao

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=aXH--MjkP03_aDkB@gmail.com \
    --to=leitao@debian.org \
    --cc=ajit.khaparde@broadcom.com \
    --cc=alexanderduyck@fb.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=bcreeley@amd.com \
    --cc=brett.creeley@amd.com \
    --cc=davem@davemloft.net \
    --cc=decui@microsoft.com \
    --cc=ecree.xilinx@gmail.com \
    --cc=edumazet@google.com \
    --cc=haiyangz@microsoft.com \
    --cc=horms@kernel.org \
    --cc=irusskikh@marvell.com \
    --cc=kernel-team@meta.com \
    --cc=kuba@kernel.org \
    --cc=kys@microsoft.com \
    --cc=linux-hyperv@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-net-drivers@amd.com \
    --cc=longli@microsoft.com \
    --cc=netdev@vger.kernel.org \
    --cc=oss-drivers@corigine.com \
    --cc=pabeni@redhat.com \
    --cc=somnath.kotur@broadcom.com \
    --cc=sriharsha.basavapatna@broadcom.com \
    --cc=wei.liu@kernel.org \
    /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