From: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
To: Jason Xing <kerneljasonxing@gmail.com>
Cc: <davem@davemloft.net>, <edumazet@google.com>, <kuba@kernel.org>,
<pabeni@redhat.com>, <horms@kernel.org>, <andrew+netdev@lunn.ch>,
<anthony.l.nguyen@intel.com>, <przemyslaw.kitszel@intel.com>,
<sdf@fomichev.me>, <larysa.zaremba@intel.com>,
<intel-wired-lan@lists.osuosl.org>, <netdev@vger.kernel.org>,
Jason Xing <kernelxing@tencent.com>
Subject: Re: [PATCH iwl-net v2 1/3] ixgbe: xsk: remove budget from ixgbe_clean_xdp_tx_irq
Date: Tue, 12 Aug 2025 17:42:56 +0200 [thread overview]
Message-ID: <aJthAHfC2dK/Tyen@boxer> (raw)
In-Reply-To: <20250812075504.60498-2-kerneljasonxing@gmail.com>
On Tue, Aug 12, 2025 at 03:55:02PM +0800, Jason Xing wrote:
> From: Jason Xing <kernelxing@tencent.com>
>
> Since 'budget' parameter in ixgbe_clean_xdp_tx_irq() takes no effect,
> the patch removes it. No functional change here.
>
> Reviewed-by: Larysa Zaremba <larysa.zaremba@intel.com>
> Signed-off-by: Jason Xing <kernelxing@tencent.com>
Acked-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
> ---
> drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 2 +-
> drivers/net/ethernet/intel/ixgbe/ixgbe_txrx_common.h | 2 +-
> drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c | 2 +-
> 3 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> index 9a6a67a6d644..7a9508e1c05a 100644
> --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> @@ -3585,7 +3585,7 @@ int ixgbe_poll(struct napi_struct *napi, int budget)
>
> ixgbe_for_each_ring(ring, q_vector->tx) {
> bool wd = ring->xsk_pool ?
> - ixgbe_clean_xdp_tx_irq(q_vector, ring, budget) :
> + ixgbe_clean_xdp_tx_irq(q_vector, ring) :
> ixgbe_clean_tx_irq(q_vector, ring, budget);
>
> if (!wd)
> diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_txrx_common.h b/drivers/net/ethernet/intel/ixgbe/ixgbe_txrx_common.h
> index 78deea5ec536..788722fe527a 100644
> --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_txrx_common.h
> +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_txrx_common.h
> @@ -42,7 +42,7 @@ int ixgbe_clean_rx_irq_zc(struct ixgbe_q_vector *q_vector,
> const int budget);
> void ixgbe_xsk_clean_rx_ring(struct ixgbe_ring *rx_ring);
> bool ixgbe_clean_xdp_tx_irq(struct ixgbe_q_vector *q_vector,
> - struct ixgbe_ring *tx_ring, int napi_budget);
> + struct ixgbe_ring *tx_ring);
> int ixgbe_xsk_wakeup(struct net_device *dev, u32 queue_id, u32 flags);
> void ixgbe_xsk_clean_tx_ring(struct ixgbe_ring *tx_ring);
>
> diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c
> index 7b941505a9d0..a463c5ac9c7c 100644
> --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c
> +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_xsk.c
> @@ -456,7 +456,7 @@ static void ixgbe_clean_xdp_tx_buffer(struct ixgbe_ring *tx_ring,
> }
>
> bool ixgbe_clean_xdp_tx_irq(struct ixgbe_q_vector *q_vector,
> - struct ixgbe_ring *tx_ring, int napi_budget)
> + struct ixgbe_ring *tx_ring)
> {
> u16 ntc = tx_ring->next_to_clean, ntu = tx_ring->next_to_use;
> unsigned int total_packets = 0, total_bytes = 0;
> --
> 2.41.3
>
next prev parent reply other threads:[~2025-08-12 15:43 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-12 7:55 [PATCH iwl-net v2 0/3] ixgbe: xsk: a couple of changes for zerocopy Jason Xing
2025-08-12 7:55 ` [PATCH iwl-net v2 1/3] ixgbe: xsk: remove budget from ixgbe_clean_xdp_tx_irq Jason Xing
2025-08-12 15:42 ` Maciej Fijalkowski [this message]
2025-08-12 7:55 ` [PATCH iwl-net v2 2/3] ixgbe: xsk: use ixgbe_desc_unused as the budget in ixgbe_xmit_zc Jason Xing
2025-08-13 11:14 ` [Intel-wired-lan] " Loktionov, Aleksandr
2025-08-13 11:44 ` Jason Xing
2025-08-12 7:55 ` [PATCH iwl-net v2 3/3] ixgbe: xsk: support batched xsk Tx interfaces to increase performance Jason Xing
2025-08-12 15:42 ` Maciej Fijalkowski
2025-08-13 0:34 ` Jason Xing
2025-08-13 18:08 ` Maciej Fijalkowski
2025-08-14 0:33 ` Jason Xing
2025-08-12 20:44 ` [PATCH iwl-net v2 0/3] ixgbe: xsk: a couple of changes for zerocopy Tony Nguyen
2025-08-12 23:38 ` Jason Xing
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=aJthAHfC2dK/Tyen@boxer \
--to=maciej.fijalkowski@intel.com \
--cc=andrew+netdev@lunn.ch \
--cc=anthony.l.nguyen@intel.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=horms@kernel.org \
--cc=intel-wired-lan@lists.osuosl.org \
--cc=kerneljasonxing@gmail.com \
--cc=kernelxing@tencent.com \
--cc=kuba@kernel.org \
--cc=larysa.zaremba@intel.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=przemyslaw.kitszel@intel.com \
--cc=sdf@fomichev.me \
/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).