BPF List
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Tony Nguyen <anthony.l.nguyen@intel.com>
Cc: davem@davemloft.net, kuba@kernel.org, pabeni@redhat.com,
	edumazet@google.com, andrew+netdev@lunn.ch,
	netdev@vger.kernel.org, faizal.abdul.rahim@linux.intel.com,
	vinicius.gomes@intel.com, vitaly.lifshits@intel.com,
	dima.ruinskiy@intel.com, przemyslaw.kitszel@intel.com,
	chwee.lin.choong@intel.com, yong.liang.choong@linux.intel.com,
	vladimir.oltean@nxp.com, horms@kernel.org, linux@armlinux.org.uk,
	xiaolei.wang@windriver.com, hayashi.kunihiko@socionext.com,
	ast@kernel.org, jesper.nilsson@axis.com,
	mcoquelin.stm32@gmail.com, rmk+kernel@armlinux.org.uk,
	fancer.lancer@gmail.com, kory.maincent@bootlin.com,
	linux-stm32@st-md-mailman.stormreply.com, hkelam@marvell.com,
	alexandre.torgue@foss.st.com, daniel@iogearbox.net,
	linux-arm-kernel@lists.infradead.org, hawk@kernel.org,
	quic_jsuraj@quicinc.com, gal@nvidia.com,
	john.fastabend@gmail.com, 0x1207@gmail.com, bpf@vger.kernel.org
Subject: Re: [PATCH net-next 00/14][pull request] igc: Add support for Frame Preemption
Date: Thu, 24 Apr 2025 01:50:48 +0000	[thread overview]
Message-ID: <174545944873.2829412.16224274758028926959.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20250418163822.3519810-1-anthony.l.nguyen@intel.com>

Hello:

This series was applied to netdev/net-next.git (main)
by Tony Nguyen <anthony.l.nguyen@intel.com>:

On Fri, 18 Apr 2025 09:38:06 -0700 you wrote:
> Faizal Rahim says:
> 
> Introduce support for the FPE feature in the IGC driver.
> 
> The patches aligns with the upstream FPE API:
> https://patchwork.kernel.org/project/netdevbpf/cover/20230220122343.1156614-1-vladimir.oltean@nxp.com/
> https://patchwork.kernel.org/project/netdevbpf/cover/20230119122705.73054-1-vladimir.oltean@nxp.com/
> 
> [...]

Here is the summary with links:
  - [net-next,01/14] net: stmmac: move frag_size handling out of spin_lock
    https://git.kernel.org/netdev/net-next/c/b375984f0df0
  - [net-next,02/14] net: ethtool: mm: extract stmmac verification logic into common library
    https://git.kernel.org/netdev/net-next/c/9ff2aa4206ef
  - [net-next,03/14] net: ethtool: mm: reset verification status when link is down
    https://git.kernel.org/netdev/net-next/c/dda666343cc8
  - [net-next,04/14] igc: rename xdp_get_tx_ring() for non-xdp usage
    https://git.kernel.org/netdev/net-next/c/19d629079c0e
  - [net-next,05/14] igc: rename I225_RXPBSIZE_DEFAULT and I225_TXPBSIZE_DEFAULT
    https://git.kernel.org/netdev/net-next/c/67287d67bebd
  - [net-next,06/14] igc: use FIELD_PREP and GENMASK for existing TX packet buffer size
    https://git.kernel.org/netdev/net-next/c/425d8d9cb092
  - [net-next,07/14] igc: optimize TX packet buffer utilization for TSN mode
    https://git.kernel.org/netdev/net-next/c/0d58cdc902da
  - [net-next,08/14] igc: use FIELD_PREP and GENMASK for existing RX packet buffer size
    https://git.kernel.org/netdev/net-next/c/9cd87aafc7a8
  - [net-next,09/14] igc: set the RX packet buffer size for TSN mode
    https://git.kernel.org/netdev/net-next/c/7663370e32b3
  - [net-next,10/14] igc: add support for frame preemption verification
    https://git.kernel.org/netdev/net-next/c/5422570c0010
  - [net-next,11/14] igc: add support to set tx-min-frag-size
    https://git.kernel.org/netdev/net-next/c/55ececab9885
  - [net-next,12/14] igc: block setting preemptible traffic class in taprio
    https://git.kernel.org/netdev/net-next/c/e9074d7f3768
  - [net-next,13/14] igc: add support to get MAC Merge data via ethtool
    https://git.kernel.org/netdev/net-next/c/10e2ffe10e43
  - [net-next,14/14] igc: add support to get frame preemption statistics via ethtool
    https://git.kernel.org/netdev/net-next/c/f05ce73cc3b2

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



      parent reply	other threads:[~2025-04-24  1:50 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-18 16:38 [PATCH net-next 00/14][pull request] igc: Add support for Frame Preemption Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 01/14] net: stmmac: move frag_size handling out of spin_lock Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 02/14] net: ethtool: mm: extract stmmac verification logic into common library Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 03/14] net: ethtool: mm: reset verification status when link is down Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 04/14] igc: rename xdp_get_tx_ring() for non-xdp usage Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 05/14] igc: rename I225_RXPBSIZE_DEFAULT and I225_TXPBSIZE_DEFAULT Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 06/14] igc: use FIELD_PREP and GENMASK for existing TX packet buffer size Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 07/14] igc: optimize TX packet buffer utilization for TSN mode Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 08/14] igc: use FIELD_PREP and GENMASK for existing RX packet buffer size Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 09/14] igc: set the RX packet buffer size for TSN mode Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 10/14] igc: add support for frame preemption verification Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 11/14] igc: add support to set tx-min-frag-size Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 12/14] igc: block setting preemptible traffic class in taprio Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 13/14] igc: add support to get MAC Merge data via ethtool Tony Nguyen
2025-04-18 16:38 ` [PATCH net-next 14/14] igc: add support to get frame preemption statistics " Tony Nguyen
2025-04-24  1:50 ` patchwork-bot+netdevbpf [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=174545944873.2829412.16224274758028926959.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=0x1207@gmail.com \
    --cc=alexandre.torgue@foss.st.com \
    --cc=andrew+netdev@lunn.ch \
    --cc=anthony.l.nguyen@intel.com \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=chwee.lin.choong@intel.com \
    --cc=daniel@iogearbox.net \
    --cc=davem@davemloft.net \
    --cc=dima.ruinskiy@intel.com \
    --cc=edumazet@google.com \
    --cc=faizal.abdul.rahim@linux.intel.com \
    --cc=fancer.lancer@gmail.com \
    --cc=gal@nvidia.com \
    --cc=hawk@kernel.org \
    --cc=hayashi.kunihiko@socionext.com \
    --cc=hkelam@marvell.com \
    --cc=horms@kernel.org \
    --cc=jesper.nilsson@axis.com \
    --cc=john.fastabend@gmail.com \
    --cc=kory.maincent@bootlin.com \
    --cc=kuba@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-stm32@st-md-mailman.stormreply.com \
    --cc=linux@armlinux.org.uk \
    --cc=mcoquelin.stm32@gmail.com \
    --cc=netdev@vger.kernel.org \
    --cc=pabeni@redhat.com \
    --cc=przemyslaw.kitszel@intel.com \
    --cc=quic_jsuraj@quicinc.com \
    --cc=rmk+kernel@armlinux.org.uk \
    --cc=vinicius.gomes@intel.com \
    --cc=vitaly.lifshits@intel.com \
    --cc=vladimir.oltean@nxp.com \
    --cc=xiaolei.wang@windriver.com \
    --cc=yong.liang.choong@linux.intel.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