mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Wei Fang (OSS) <wei.fang@oss.nxp.com>
Cc: claudiu.manoil@nxp.com, vladimir.oltean@nxp.com,
	xiaoning.wang@nxp.com, andrew@lunn.ch, olteanv@gmail.com,
	andrew+netdev@lunn.ch, davem@davemloft.net, edumazet@google.com,
	kuba@kernel.org, pabeni@redhat.com, linux@armlinux.org.uk,
	wei.fang@nxp.com, imx@lists.linux.dev, netdev@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4 net-next 00/15] net: enetc: SR-IOV improvements and ENETC v4 VF support
Date: Tue, 15 Sep 2026 10:20:06 +0000	[thread overview]
Message-ID: <178946760664.1496640.10712113445214724532.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20260909100733.1139689-1-wei.fang@oss.nxp.com>

Hello:

This series was applied to netdev/net-next.git (main)
by Paolo Abeni <pabeni@redhat.com>:

On Wed,  9 Sep 2026 18:07:18 +0800 you wrote:
> From: Wei Fang <wei.fang@nxp.com>
> 
> This series enhances SR-IOV support for ENETC v1 and adds VF support
> for ENETC v4. For ENETC v1, the trusted VF management and per-VF
> configuration query via ndo_get_vf_config() are added. For ENETC v4,
> preliminary VF support is introduced for i.MX94 and i.MX95 platforms.
> 
> [...]

Here is the summary with links:
  - [v4,net-next,01/15] net: enetc: add trusted VF support
    https://git.kernel.org/netdev/net-next/c/aeb505f83f7b
  - [v4,net-next,02/15] net: enetc: move msg_task and msg_int_name to struct enetc_si
    https://git.kernel.org/netdev/net-next/c/99ace7602482
  - [v4,net-next,03/15] net: enetc: add link status message support to PF driver
    https://git.kernel.org/netdev/net-next/c/83d385c67af5
  - [v4,net-next,04/15] net: enetc: add link speed message support to PF driver
    https://git.kernel.org/netdev/net-next/c/f7e86f8ae699
  - [v4,net-next,05/15] net: enetc: use enetc_set_si_hw_addr() to set VF MAC address
    https://git.kernel.org/netdev/net-next/c/fba13302b996
  - [v4,net-next,06/15] net: enetc: relocate enetc_pf_set_vf_mac() for common PF support
    https://git.kernel.org/netdev/net-next/c/f37718e9210b
  - [v4,net-next,07/15] net: enetc: add .ndo_set_vf_mac() to the enetc v4 driver
    https://git.kernel.org/netdev/net-next/c/18c66a9a4fae
  - [v4,net-next,08/15] net: enetc: move mac_filter from struct enetc_pf to struct enetc_si
    https://git.kernel.org/netdev/net-next/c/261be512194d
  - [v4,net-next,09/15] net: enetc: add MAC address filtering support for VFs of ENETC v4
    https://git.kernel.org/netdev/net-next/c/e7ac83644e28
  - [v4,net-next,10/15] net: enetc: simplify and rename PSIIER enable/disable helpers
    https://git.kernel.org/netdev/net-next/c/76fb8ad66d3d
  - [v4,net-next,11/15] net: enetc: restore VF MAC promiscuous mode after FLR for ENETC v4
    https://git.kernel.org/netdev/net-next/c/f539a68b0aa1
  - [v4,net-next,12/15] net: enetc: add VF support for i.MX94 and i.MX95
    https://git.kernel.org/netdev/net-next/c/fd793705e62f
  - [v4,net-next,13/15] net: enetc: implement ndo_set_rx_mode_async for ENETC v4 VF
    https://git.kernel.org/netdev/net-next/c/e05f2902925e
  - [v4,net-next,14/15] net: enetc: add PSI-to-VSI link status notification support for VF
    https://git.kernel.org/netdev/net-next/c/36a16ed591b3
  - [v4,net-next,15/15] net: enetc: add ndo_get_vf_config() support
    https://git.kernel.org/netdev/net-next/c/5822ab0f3e89

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



      parent reply	other threads:[~2026-09-15 10:21 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-09 10:07 wei.fang
2026-09-09 10:07 ` [PATCH v4 net-next 01/15] net: enetc: add trusted " wei.fang
2026-09-10 11:20   ` netdev-bot+sashiko
2026-09-11  2:29     ` Wei Fang
2026-09-09 10:07 ` [PATCH v4 net-next 02/15] net: enetc: move msg_task and msg_int_name to struct enetc_si wei.fang
2026-09-11 20:14   ` Claudiu Manoil
2026-09-09 10:07 ` [PATCH v4 net-next 03/15] net: enetc: add link status message support to PF driver wei.fang
2026-09-10 11:20   ` netdev-bot+sashiko
2026-09-11  5:55     ` Wei Fang
2026-09-11 20:15   ` Claudiu Manoil
2026-09-09 10:07 ` [PATCH v4 net-next 04/15] net: enetc: add link speed " wei.fang
2026-09-10 11:20   ` netdev-bot+sashiko
2026-09-11  2:56     ` Wei Fang
2026-09-11 20:16   ` Claudiu Manoil
2026-09-09 10:07 ` [PATCH v4 net-next 05/15] net: enetc: use enetc_set_si_hw_addr() to set VF MAC address wei.fang
2026-09-09 10:07 ` [PATCH v4 net-next 06/15] net: enetc: relocate enetc_pf_set_vf_mac() for common PF support wei.fang
2026-09-09 10:07 ` [PATCH v4 net-next 07/15] net: enetc: add .ndo_set_vf_mac() to the enetc v4 driver wei.fang
2026-09-09 10:07 ` [PATCH v4 net-next 08/15] net: enetc: move mac_filter from struct enetc_pf to struct enetc_si wei.fang
2026-09-09 10:07 ` [PATCH v4 net-next 09/15] net: enetc: add MAC address filtering support for VFs of ENETC v4 wei.fang
2026-09-10 11:21   ` netdev-bot+sashiko
2026-09-11  6:13     ` Wei Fang
2026-09-09 10:07 ` [PATCH v4 net-next 10/15] net: enetc: simplify and rename PSIIER enable/disable helpers wei.fang
2026-09-09 10:07 ` [PATCH v4 net-next 11/15] net: enetc: restore VF MAC promiscuous mode after FLR for ENETC v4 wei.fang
2026-09-10 11:21   ` netdev-bot+sashiko
2026-09-11  6:23     ` Wei Fang
2026-09-11 20:17   ` Claudiu Manoil
2026-09-09 10:07 ` [PATCH v4 net-next 12/15] net: enetc: add VF support for i.MX94 and i.MX95 wei.fang
2026-09-09 10:07 ` [PATCH v4 net-next 13/15] net: enetc: implement ndo_set_rx_mode_async for ENETC v4 VF wei.fang
2026-09-10 11:21   ` netdev-bot+sashiko
2026-09-11  7:17     ` Wei Fang
2026-09-09 10:07 ` [PATCH v4 net-next 14/15] net: enetc: add PSI-to-VSI link status notification support for VF wei.fang
2026-09-09 10:07 ` [PATCH v4 net-next 15/15] net: enetc: add ndo_get_vf_config() support wei.fang
2026-09-15 10:08 ` [PATCH v4 net-next 00/15] net: enetc: SR-IOV improvements and ENETC v4 VF support Paolo Abeni
2026-09-15 10:20 ` 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=178946760664.1496640.10712113445214724532.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=andrew+netdev@lunn.ch \
    --cc=andrew@lunn.ch \
    --cc=claudiu.manoil@nxp.com \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=imx@lists.linux.dev \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=netdev@vger.kernel.org \
    --cc=olteanv@gmail.com \
    --cc=pabeni@redhat.com \
    --cc=vladimir.oltean@nxp.com \
    --cc=wei.fang@nxp.com \
    --cc=wei.fang@oss.nxp.com \
    --cc=xiaoning.wang@nxp.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

all inboxes | Powered by JetHome®