netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lance Richardson <lrichard@redhat.com>
To: David Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org, nicolas dichtel <nicolas.dichtel@6wind.com>
Subject: Re: [PATCHi next] veth: advertise peer link relationship for both devices
Date: Sat, 11 Jun 2016 22:04:13 -0400 (EDT)	[thread overview]
Message-ID: <489378018.52267492.1465697053847.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <20160611.154340.1340829899277605940.davem@davemloft.net>

----- Original Message -----
> From: "David Miller" <davem@davemloft.net>
> To: lrichard@redhat.com
> Cc: netdev@vger.kernel.org, "nicolas dichtel" <nicolas.dichtel@6wind.com>
> Sent: Saturday, June 11, 2016 6:43:40 PM
> Subject: Re: [PATCHi next] veth: advertise peer link relationship for both devices
> 
> From: Lance Richardson <lrichard@redhat.com>
> Date: Fri, 10 Jun 2016 12:32:19 -0400
> 
> > Currently, when creating a veth pair, notfications to user
> > space only include link peer for one end of the veth pair:
> >    # ip monitor link &
> >    # ip link add dev vm1 type veth peer name vm2
> >    30: vm2@NONE: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN
> >        link/ether be:e3:b7:0e:14:52 brd ff:ff:ff:ff:ff:ff
> >    31: vm1@vm2: <BROADCAST,MULTICAST,M-DOWN> mtu 1500 qdisc noop state DOWN
> >        link/ether da:e6:a6:c5:42:54 brd ff:ff:ff:ff:ff:ff
> > 
> > With this change, netlink notifications are sent with complete
> > information for both interfaces of the veth pair:
> > 
> >    # 3: vm2@NONE: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN
> >        link/ether e2:94:54:8a:ac:f5 brd ff:ff:ff:ff:ff:ff
> >    4: vm1@vm2: <BROADCAST,MULTICAST,M-DOWN> mtu 1500 qdisc noop state DOWN
> >        link/ether b2:05:70:e0:fc:35 brd ff:ff:ff:ff:ff:ff
> >    3: vm2@vm1: <BROADCAST,MULTICAST,M-DOWN> mtu 1500 qdisc noop state DOWN
> >        link/ether e2:94:54:8a:ac:f5 brd ff:ff:ff:ff:ff:ff
> > 
> > Signed-off-by: Lance Richardson <lrichard@redhat.com>
> 
> I don't know about this.
> 
> First of all, those notifications you get above tell you everything you
> need to know in order to figure out what both ends of the veth pair are.
> 
> In fact, I would say that the vm1@vm2 notification #31 above is the _only_
> one you absolutely need.
> 
> > @@ -466,8 +466,16 @@ static int veth_newlink(struct net *src_net, struct
> > net_device *dev,
> >  
> >  	priv = netdev_priv(peer);
> >  	rcu_assign_pointer(priv->peer, dev);
> > +
> > +	err = rtnl_configure_link(dev, NULL);
> > +	if (err < 0)
> > +		goto err_configure_dev;
> > +
> > +	rtmsg_ifinfo(RTM_NEWLINK, peer, 0, GFP_KERNEL);
> >  	return 0;
> >  
> > +err_configure_dev:
> > +	/* nothing to do */
> >  err_register_dev:
> >  	/* nothing to do */
> >  err_configure_peer:
> 
> If you're registering the peer here explicitly, this means a link configure
> somewhere else is now superfluous.
> 
> I really don't like this change at all, both from a necessity perspective as
> well as from it's implementation.
> 

I'll confess to not being super-happy with it myself, which is why I've
been sitting on this patch for some time now. A hard NAK will help justify
a "will not fix" to the reporter of this issue.

Thanks,

  Lance

  reply	other threads:[~2016-06-12  2:04 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-10 16:32 [PATCHi next] veth: advertise peer link relationship for both devices Lance Richardson
2016-06-11 22:43 ` David Miller
2016-06-12  2:04   ` Lance Richardson [this message]
2016-06-12  2:30     ` David Miller

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=489378018.52267492.1465697053847.JavaMail.zimbra@redhat.com \
    --to=lrichard@redhat.com \
    --cc=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    --cc=nicolas.dichtel@6wind.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).