linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: patchwork-bot+netdevbpf@kernel.org
To: Vladimir Oltean <olteanv@gmail.com>
Cc: kuba@kernel.org, davem@davemloft.net, andrew@lunn.ch,
	vivien.didelot@gmail.com, f.fainelli@gmail.com,
	tobias@waldekranz.com, claudiu.manoil@nxp.com,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	roopa@nvidia.com, nikolay@nvidia.com, jiri@resnulli.us,
	idosch@idosch.org, alexandre.belloni@bootlin.com,
	UNGLinuxDriver@microchip.com, ivecera@redhat.com,
	linux-omap@vger.kernel.org, vladimir.oltean@nxp.com
Subject: Re: [PATCH v4 net-next 00/11] Better support for sandwiched LAGs with bridge and DSA
Date: Tue, 23 Mar 2021 22:00:10 +0000	[thread overview]
Message-ID: <161653681026.23298.16920654325980262719.git-patchwork-notify@kernel.org> (raw)
In-Reply-To: <20210322235152.268695-1-olteanv@gmail.com>

Hello:

This series was applied to netdev/net-next.git (refs/heads/master):

On Tue, 23 Mar 2021 01:51:41 +0200 you wrote:
> From: Vladimir Oltean <vladimir.oltean@nxp.com>
> 
> Changes in v4:
> - Added missing EXPORT_SYMBOL_GPL
> - Using READ_ONCE(fdb->dst)
> - Split patches into (a) adding the bridge helpers (b) making DSA use them
> - br_mdb_replay went back to the v1 approach where it allocated memory
>   in atomic context
> - Created a br_switchdev_mdb_populate which reduces some of the code
>   duplication
> - Fixed the error message in dsa_port_clear_brport_flags
> - Replaced "dsa_port_vlan_filtering(dp, br, extack)" with
>   "dsa_port_vlan_filtering(dp, br_vlan_enabled(br), extack)" (duh)
> - Added review tags (sorry if I missed any)
> 
> [...]

Here is the summary with links:
  - [v4,net-next,01/11] net: bridge: add helper for retrieving the current bridge port STP state
    https://git.kernel.org/netdev/net-next/c/c0e715bbd50e
  - [v4,net-next,02/11] net: bridge: add helper to retrieve the current ageing time
    https://git.kernel.org/netdev/net-next/c/f1d42ea10056
  - [v4,net-next,03/11] net: bridge: add helper to replay port and host-joined mdb entries
    https://git.kernel.org/netdev/net-next/c/4f2673b3a2b6
  - [v4,net-next,04/11] net: bridge: add helper to replay port and local fdb entries
    https://git.kernel.org/netdev/net-next/c/04846f903b53
  - [v4,net-next,05/11] net: bridge: add helper to replay VLANs installed on port
    https://git.kernel.org/netdev/net-next/c/22f67cdfae6a
  - [v4,net-next,06/11] net: dsa: call dsa_port_bridge_join when joining a LAG that is already in a bridge
    https://git.kernel.org/netdev/net-next/c/185c9a760a61
  - [v4,net-next,07/11] net: dsa: pass extack to dsa_port_{bridge,lag}_join
    https://git.kernel.org/netdev/net-next/c/2afc526ab342
  - [v4,net-next,08/11] net: dsa: inherit the actual bridge port flags at join time
    https://git.kernel.org/netdev/net-next/c/5961d6a12c13
  - [v4,net-next,09/11] net: dsa: sync up switchdev objects and port attributes when joining the bridge
    https://git.kernel.org/netdev/net-next/c/010e269f91be
  - [v4,net-next,10/11] net: ocelot: call ocelot_netdevice_bridge_join when joining a bridged LAG
    https://git.kernel.org/netdev/net-next/c/81ef35e7619a
  - [v4,net-next,11/11] net: ocelot: replay switchdev events when joining bridge
    https://git.kernel.org/netdev/net-next/c/e4bd44e89dcf

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



      parent reply	other threads:[~2021-03-23 22:01 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-22 23:51 [PATCH v4 net-next 00/11] Better support for sandwiched LAGs with bridge and DSA Vladimir Oltean
2021-03-22 23:51 ` [PATCH v4 net-next 01/11] net: bridge: add helper for retrieving the current bridge port STP state Vladimir Oltean
2021-03-23 10:33   ` Nikolay Aleksandrov
2021-03-22 23:51 ` [PATCH v4 net-next 02/11] net: bridge: add helper to retrieve the current ageing time Vladimir Oltean
2021-03-23 10:36   ` Nikolay Aleksandrov
2021-03-22 23:51 ` [PATCH v4 net-next 03/11] net: bridge: add helper to replay port and host-joined mdb entries Vladimir Oltean
2021-03-23 12:00   ` Nikolay Aleksandrov
2021-03-22 23:51 ` [PATCH v4 net-next 04/11] net: bridge: add helper to replay port and local fdb entries Vladimir Oltean
2021-03-23 11:12   ` Nikolay Aleksandrov
2021-03-23 18:11     ` Vladimir Oltean
2021-03-22 23:51 ` [PATCH v4 net-next 05/11] net: bridge: add helper to replay VLANs installed on port Vladimir Oltean
2021-03-23 14:06   ` Nikolay Aleksandrov
2021-03-22 23:51 ` [PATCH v4 net-next 06/11] net: dsa: call dsa_port_bridge_join when joining a LAG that is already in a bridge Vladimir Oltean
2021-03-22 23:51 ` [PATCH v4 net-next 07/11] net: dsa: pass extack to dsa_port_{bridge,lag}_join Vladimir Oltean
2021-03-22 23:51 ` [PATCH v4 net-next 08/11] net: dsa: inherit the actual bridge port flags at join time Vladimir Oltean
2021-03-22 23:51 ` [PATCH v4 net-next 09/11] net: dsa: sync up switchdev objects and port attributes when joining the bridge Vladimir Oltean
2021-03-22 23:51 ` [PATCH v4 net-next 10/11] net: ocelot: call ocelot_netdevice_bridge_join when joining a bridged LAG Vladimir Oltean
2021-03-22 23:51 ` [PATCH v4 net-next 11/11] net: ocelot: replay switchdev events when joining bridge Vladimir Oltean
2021-03-23 22:00 ` 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=161653681026.23298.16920654325980262719.git-patchwork-notify@kernel.org \
    --to=patchwork-bot+netdevbpf@kernel.org \
    --cc=UNGLinuxDriver@microchip.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=andrew@lunn.ch \
    --cc=claudiu.manoil@nxp.com \
    --cc=davem@davemloft.net \
    --cc=f.fainelli@gmail.com \
    --cc=idosch@idosch.org \
    --cc=ivecera@redhat.com \
    --cc=jiri@resnulli.us \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=nikolay@nvidia.com \
    --cc=olteanv@gmail.com \
    --cc=roopa@nvidia.com \
    --cc=tobias@waldekranz.com \
    --cc=vivien.didelot@gmail.com \
    --cc=vladimir.oltean@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;
as well as URLs for NNTP newsgroup(s).