From: Amos Kong <akong@redhat.com>
To: Stefan Hajnoczi <stefanha@gmail.com>
Cc: kvm@vger.kernel.org, mst@redhat.com, netdev@vger.kernel.org,
qemu-devel@nongnu.org, virtualization@lists.linux-foundation.org,
davem@davemloft.net
Subject: Re: [PATCH v3 2/2] virtio-net: introduce a new control to set macaddr
Date: Sun, 20 Jan 2013 10:20:27 +0800 [thread overview]
Message-ID: <20130120022027.GA2184@t430s.redhat.com> (raw)
In-Reply-To: <20130118110042.GB22481@stefanha-thinkpad.redhat.com>
On Fri, Jan 18, 2013 at 12:00:42PM +0100, Stefan Hajnoczi wrote:
> On Thu, Jan 17, 2013 at 06:40:12PM +0800, akong@redhat.com wrote:
> > diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
> > index 395ab4f..837c978 100644
> > --- a/drivers/net/virtio_net.c
> > +++ b/drivers/net/virtio_net.c
> > @@ -802,14 +802,32 @@ static int virtnet_set_mac_address(struct net_device *dev, void *p)
> > struct virtnet_info *vi = netdev_priv(dev);
> > struct virtio_device *vdev = vi->vdev;
> > int ret;
> > + struct scatterlist sg;
> > + char save_addr[ETH_ALEN];
> > + unsigned char save_aatype;
> > +
> > + memcpy(save_addr, dev->dev_addr, ETH_ALEN);
> > + save_aatype = dev->addr_assign_type;
> >
> > ret = eth_mac_addr(dev, p);
> > if (ret)
> > return ret;
> >
> > - if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
> > + if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
> > + sg_init_one(&sg, dev->dev_addr, dev->addr_len);
> > + if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
> > + VIRTIO_NET_CTRL_MAC_ADDR_SET,
> > + &sg, 1, 0)) {
> > + dev_warn(&vdev->dev,
> > + "Failed to set mac address by vq command.\n");
> > + memcpy(dev->dev_addr, save_addr, ETH_ALEN);
> > + dev->addr_assign_type = save_aatype;
> > + return -EINVAL;
> > + }
>
> eth_mac_addr() doesn't allow callers to implement error handling nicely.
> Although you didn't duplicate it's code directly, this patch still leaks
> internals of eth_mac_addr().
>
> How about splitting eth_mac_addr() in a separate patch:
Agree, then we can have nice error handling.
I will send a V4 and include this patch.
Thanks.
> int eth_prepare_mac_addr_change(struct net_device *dev, void *p)
> {
> struct sockaddr *addr = p;
> if (!(dev->priv_flags & IFF_LIVE_ADDR_CHANGE) && netif_running(dev))
> return -EBUSY;
> if (!is_valid_ether_addr(addr->sa_data))
> return -EADDRNOTAVAIL;
> return 0;
> }
...
> Now virtio_net.c does:
>
> ret = eth_prepare_mac_addr_change(dev, p);
> if (ret < 0)
> return ret;
>
> if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
> sg_init_one(&sg, dev->dev_addr, dev->addr_len);
trivial issue, %s/dev->dev_addr/addr->sa_data
> if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
> VIRTIO_NET_CTRL_MAC_ADDR_SET,
> &sg, 1, 0)) {
> dev_warn(&vdev->dev,
> "Failed to set mac address by vq command.\n");
> return -EINVAL;
> }
> } ...
>
> eth_commit_mac_addr_change(dev, p);
> return 0;
>
> Stefan
WARNING: multiple messages have this Message-ID (diff)
From: Amos Kong <akong@redhat.com>
To: Stefan Hajnoczi <stefanha@gmail.com>
Cc: kvm@vger.kernel.org, mst@redhat.com, netdev@vger.kernel.org,
qemu-devel@nongnu.org, virtualization@lists.linux-foundation.org,
davem@davemloft.net
Subject: Re: [Qemu-devel] [PATCH v3 2/2] virtio-net: introduce a new control to set macaddr
Date: Sun, 20 Jan 2013 10:20:27 +0800 [thread overview]
Message-ID: <20130120022027.GA2184@t430s.redhat.com> (raw)
In-Reply-To: <20130118110042.GB22481@stefanha-thinkpad.redhat.com>
On Fri, Jan 18, 2013 at 12:00:42PM +0100, Stefan Hajnoczi wrote:
> On Thu, Jan 17, 2013 at 06:40:12PM +0800, akong@redhat.com wrote:
> > diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
> > index 395ab4f..837c978 100644
> > --- a/drivers/net/virtio_net.c
> > +++ b/drivers/net/virtio_net.c
> > @@ -802,14 +802,32 @@ static int virtnet_set_mac_address(struct net_device *dev, void *p)
> > struct virtnet_info *vi = netdev_priv(dev);
> > struct virtio_device *vdev = vi->vdev;
> > int ret;
> > + struct scatterlist sg;
> > + char save_addr[ETH_ALEN];
> > + unsigned char save_aatype;
> > +
> > + memcpy(save_addr, dev->dev_addr, ETH_ALEN);
> > + save_aatype = dev->addr_assign_type;
> >
> > ret = eth_mac_addr(dev, p);
> > if (ret)
> > return ret;
> >
> > - if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
> > + if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
> > + sg_init_one(&sg, dev->dev_addr, dev->addr_len);
> > + if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
> > + VIRTIO_NET_CTRL_MAC_ADDR_SET,
> > + &sg, 1, 0)) {
> > + dev_warn(&vdev->dev,
> > + "Failed to set mac address by vq command.\n");
> > + memcpy(dev->dev_addr, save_addr, ETH_ALEN);
> > + dev->addr_assign_type = save_aatype;
> > + return -EINVAL;
> > + }
>
> eth_mac_addr() doesn't allow callers to implement error handling nicely.
> Although you didn't duplicate it's code directly, this patch still leaks
> internals of eth_mac_addr().
>
> How about splitting eth_mac_addr() in a separate patch:
Agree, then we can have nice error handling.
I will send a V4 and include this patch.
Thanks.
> int eth_prepare_mac_addr_change(struct net_device *dev, void *p)
> {
> struct sockaddr *addr = p;
> if (!(dev->priv_flags & IFF_LIVE_ADDR_CHANGE) && netif_running(dev))
> return -EBUSY;
> if (!is_valid_ether_addr(addr->sa_data))
> return -EADDRNOTAVAIL;
> return 0;
> }
...
> Now virtio_net.c does:
>
> ret = eth_prepare_mac_addr_change(dev, p);
> if (ret < 0)
> return ret;
>
> if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
> sg_init_one(&sg, dev->dev_addr, dev->addr_len);
trivial issue, %s/dev->dev_addr/addr->sa_data
> if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
> VIRTIO_NET_CTRL_MAC_ADDR_SET,
> &sg, 1, 0)) {
> dev_warn(&vdev->dev,
> "Failed to set mac address by vq command.\n");
> return -EINVAL;
> }
> } ...
>
> eth_commit_mac_addr_change(dev, p);
> return 0;
>
> Stefan
next prev parent reply other threads:[~2013-01-20 2:20 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-17 10:40 [PATCH v3 0/2] make mac programming for virtio net more robust akong
2013-01-17 10:40 ` [Qemu-devel] " akong
2013-01-17 10:40 ` [PATCH v3 1/2] move virtnet_send_command() above virtnet_set_mac_address() akong
2013-01-17 10:40 ` [Qemu-devel] " akong
2013-01-17 10:40 ` [PATCH v3 2/2] virtio-net: introduce a new control to set macaddr akong
2013-01-17 10:40 ` [Qemu-devel] " akong
2013-01-18 11:00 ` Stefan Hajnoczi
2013-01-18 11:00 ` [Qemu-devel] " Stefan Hajnoczi
2013-01-20 2:20 ` Amos Kong
2013-01-20 2:20 ` Amos Kong [this message]
2013-01-20 2:20 ` [Qemu-devel] " Amos Kong
2013-01-18 11:00 ` Stefan Hajnoczi
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=20130120022027.GA2184@t430s.redhat.com \
--to=akong@redhat.com \
--cc=davem@davemloft.net \
--cc=kvm@vger.kernel.org \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@gmail.com \
--cc=virtualization@lists.linux-foundation.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 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.