From: Hangbin Liu <liuhangbin@gmail.com>
To: Paolo Abeni <pabeni@redhat.com>
Cc: netdev@vger.kernel.org, Jay Vosburgh <j.vosburgh@gmail.com>,
"David S . Miller" <davem@davemloft.net>,
Jakub Kicinski <kuba@kernel.org>,
Eric Dumazet <edumazet@google.com>, Liang Li <liali@redhat.com>,
Jiri Pirko <jiri@nvidia.com>,
Nikolay Aleksandrov <razor@blackwall.org>
Subject: Re: [PATCHv2 net 2/2] team: reset team's flags when down link is P2P device
Date: Tue, 18 Jul 2023 17:10:56 +0800 [thread overview]
Message-ID: <ZLZXIMk9dCm5PgM4@Laptop-X1> (raw)
In-Reply-To: <33950173db97ff49475551cd53ae287be895a6be.camel@redhat.com>
On Tue, Jul 18, 2023 at 10:01:27AM +0200, Paolo Abeni wrote:
> > diff --git a/drivers/net/team/team.c b/drivers/net/team/team.c
> > index 555b0b1e9a78..9104e373c8cb 100644
> > --- a/drivers/net/team/team.c
> > +++ b/drivers/net/team/team.c
> > @@ -2135,6 +2135,11 @@ static void team_setup_by_port(struct net_device *dev,
> > dev->mtu = port_dev->mtu;
> > memcpy(dev->broadcast, port_dev->broadcast, port_dev->addr_len);
> > eth_hw_addr_inherit(dev, port_dev);
> > +
> > + if (port_dev->flags & IFF_POINTOPOINT) {
> > + dev->flags &= ~(IFF_BROADCAST | IFF_MULTICAST);
> > + dev->flags |= (IFF_POINTOPOINT | IFF_NOARP);
> > + }
>
> It's unclear to me what happens with the following sequence of events:
>
> * p2p dev is enslaved to team (IFF_BROADCAST cleared)
> * p2p dev is removed from team
> * plain ether device is enslaved to team.
>
> I don't see where/when IFF_BROADCAST is set again. Could you please
> point it out?
Hmm, you are right. Bonding will call bond_ether_setup(), ether_setup() to
reset the dev flags. But team didn't do that. I will fix it.
Thanks
Hangbin
prev parent reply other threads:[~2023-07-18 9:11 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-14 8:13 [PATCHv2 net 0/2] Fix up dev flags when add P2P down link Hangbin Liu
2023-07-14 8:13 ` [PATCHv2 net 1/2] bonding: reset bond's flags when down link is P2P device Hangbin Liu
2023-07-14 8:13 ` [PATCHv2 net 2/2] team: reset team's " Hangbin Liu
2023-07-18 8:01 ` Paolo Abeni
2023-07-18 9:10 ` Hangbin Liu [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=ZLZXIMk9dCm5PgM4@Laptop-X1 \
--to=liuhangbin@gmail.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=j.vosburgh@gmail.com \
--cc=jiri@nvidia.com \
--cc=kuba@kernel.org \
--cc=liali@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=razor@blackwall.org \
/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).