All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vladimir Oltean <olteanv@gmail.com>
To: Nikolay Aleksandrov <nikolay@nvidia.com>
Cc: patchwork-bot+netdevbpf@kernel.org,
	Vladimir Oltean <vladimir.oltean@nxp.com>,
	netdev <netdev@vger.kernel.org>, Ido Schimmel <idosch@nvidia.com>,
	Jakub Kicinski <kuba@kernel.org>,
	"David S. Miller" <davem@davemloft.net>,
	Roopa Prabhu <roopa@nvidia.com>, Andrew Lunn <andrew@lunn.ch>,
	Florian Fainelli <f.fainelli@gmail.com>,
	Vivien Didelot <vivien.didelot@gmail.com>,
	Jiri Pirko <jiri@nvidia.com>
Subject: Re: [PATCH net-next 0/8] Bridge FDB refactoring
Date: Wed, 27 Oct 2021 17:46:05 +0300	[thread overview]
Message-ID: <CA+h21hoYXvATh5_MCDvCUYit11T9Za9DvRnLeNs3yeRRRQ+H=A@mail.gmail.com> (raw)
In-Reply-To: <c9da923f-42b8-8771-8867-9ea35f10da91@nvidia.com>

On Wed, 27 Oct 2021 at 17:44, Nikolay Aleksandrov <nikolay@nvidia.com> wrote:
>
> On 27/10/2021 17:40, patchwork-bot+netdevbpf@kernel.org wrote:
> > Hello:
> >
> > This series was applied to netdev/net-next.git (master)
> > by David S. Miller <davem@davemloft.net>:
> >
> > On Tue, 26 Oct 2021 17:27:35 +0300 you wrote:
> >> This series refactors the br_fdb.c, br_switchdev.c and switchdev.c files
> >> to offer the same level of functionality with a bit less code, and to
> >> clarify the purpose of some functions.
> >>
> >> No functional change intended.
> >>
> >> Vladimir Oltean (8):
> >>   net: bridge: remove fdb_notify forward declaration
> >>   net: bridge: remove fdb_insert forward declaration
> >>   net: bridge: rename fdb_insert to fdb_add_local
> >>   net: bridge: rename br_fdb_insert to br_fdb_add_local
> >>   net: bridge: reduce indentation level in fdb_create
> >>   net: bridge: move br_fdb_replay inside br_switchdev.c
> >>   net: bridge: create a common function for populating switchdev FDB
> >>     entries
> >>   net: switchdev: merge switchdev_handle_fdb_{add,del}_to_device
> >>
> >> [...]
> >
> > Here is the summary with links:
> >   - [net-next,1/8] net: bridge: remove fdb_notify forward declaration
> >     https://git.kernel.org/netdev/net-next/c/4682048af0c8
> >   - [net-next,2/8] net: bridge: remove fdb_insert forward declaration
> >     https://git.kernel.org/netdev/net-next/c/5f94a5e276ae
> >   - [net-next,3/8] net: bridge: rename fdb_insert to fdb_add_local
> >     https://git.kernel.org/netdev/net-next/c/4731b6d6b257
> >   - [net-next,4/8] net: bridge: rename br_fdb_insert to br_fdb_add_local
> >     https://git.kernel.org/netdev/net-next/c/f6814fdcfe1b
> >   - [net-next,5/8] net: bridge: reduce indentation level in fdb_create
> >     https://git.kernel.org/netdev/net-next/c/9574fb558044
> >   - [net-next,6/8] net: bridge: move br_fdb_replay inside br_switchdev.c
> >     https://git.kernel.org/netdev/net-next/c/5cda5272a460
> >   - [net-next,7/8] net: bridge: create a common function for populating switchdev FDB entries
> >     https://git.kernel.org/netdev/net-next/c/fab9eca88410
> >   - [net-next,8/8] net: switchdev: merge switchdev_handle_fdb_{add,del}_to_device
> >     https://git.kernel.org/netdev/net-next/c/716a30a97a52
> >
> > You are awesome, thank you!
> >
>
> There was a discussion about patch 06 which we agreed have to turn into its own series
> with more changes. Vladimir, since the set got applied please send a follow-up to
> finish those changes.

Wait a minute, even I got the impression that the next series I'll be
sending would be completely separate from this one...

>
> Thanks,
>  Nik
>

  reply	other threads:[~2021-10-27 14:46 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-26 14:27 [PATCH net-next 0/8] Bridge FDB refactoring Vladimir Oltean
2021-10-26 14:27 ` [PATCH net-next 1/8] net: bridge: remove fdb_notify forward declaration Vladimir Oltean
2021-10-27  7:45   ` Ido Schimmel
2021-10-27  8:29   ` Nikolay Aleksandrov
2021-10-26 14:27 ` [PATCH net-next 2/8] net: bridge: remove fdb_insert " Vladimir Oltean
2021-10-27  7:47   ` Ido Schimmel
2021-10-27  8:29   ` Nikolay Aleksandrov
2021-10-26 14:27 ` [PATCH net-next 3/8] net: bridge: rename fdb_insert to fdb_add_local Vladimir Oltean
2021-10-27  7:51   ` Ido Schimmel
2021-10-27  8:31   ` Nikolay Aleksandrov
2021-10-26 14:27 ` [PATCH net-next 4/8] net: bridge: rename br_fdb_insert to br_fdb_add_local Vladimir Oltean
2021-10-27  7:54   ` Ido Schimmel
2021-10-27  8:32   ` Nikolay Aleksandrov
2021-10-26 14:27 ` [PATCH net-next 5/8] net: bridge: reduce indentation level in fdb_create Vladimir Oltean
2021-10-27  8:05   ` Ido Schimmel
2021-10-27  8:32   ` Nikolay Aleksandrov
2021-10-26 14:27 ` [PATCH net-next 6/8] net: bridge: move br_fdb_replay inside br_switchdev.c Vladimir Oltean
2021-10-27  8:16   ` Ido Schimmel
2021-10-27  8:28     ` Nikolay Aleksandrov
2021-10-27 12:58       ` Vladimir Oltean
2021-10-27 13:04         ` Vladimir Oltean
2021-10-26 14:27 ` [PATCH net-next 7/8] net: bridge: create a common function for populating switchdev FDB entries Vladimir Oltean
2021-10-27  8:26   ` Ido Schimmel
2021-10-27  8:39   ` Nikolay Aleksandrov
2021-10-26 14:27 ` [PATCH net-next 8/8] net: switchdev: merge switchdev_handle_fdb_{add,del}_to_device Vladimir Oltean
2021-10-27  8:46   ` Ido Schimmel
2021-10-27 11:28     ` Vladimir Oltean
2021-10-27 14:40 ` [PATCH net-next 0/8] Bridge FDB refactoring patchwork-bot+netdevbpf
2021-10-27 14:44   ` Nikolay Aleksandrov
2021-10-27 14:46     ` Vladimir Oltean [this message]
2021-10-27 14:49       ` Vladimir Oltean

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='CA+h21hoYXvATh5_MCDvCUYit11T9Za9DvRnLeNs3yeRRRQ+H=A@mail.gmail.com' \
    --to=olteanv@gmail.com \
    --cc=andrew@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=f.fainelli@gmail.com \
    --cc=idosch@nvidia.com \
    --cc=jiri@nvidia.com \
    --cc=kuba@kernel.org \
    --cc=netdev@vger.kernel.org \
    --cc=nikolay@nvidia.com \
    --cc=patchwork-bot+netdevbpf@kernel.org \
    --cc=roopa@nvidia.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.