netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] virtio_net: Allow setting the MAC address of the NIC
       [not found] <200901271305.16832.rusty@rustcorp.com.au>
@ 2009-02-04 19:26 ` Alex Williamson
  2009-02-04 23:37   ` Rusty Russell
  0 siblings, 1 reply; 3+ messages in thread
From: Alex Williamson @ 2009-02-04 19:26 UTC (permalink / raw)
  To: rusty; +Cc: markmc, netdev, kvm

Many physical NICs let the OS re-program the "hardware" MAC
address.  Virtual NICs should allow this too.

Signed-off-by: Alex Williamson <alex.williamson@hp.com>
Acked-by: Mark McLoughlin <markmc@redhat.com>
---

Rusty, you've already applied this to your patch queue, but that version
won't apply cleanly after the MAC and VLAN filtering patches I just sent
for net-next-2.6 (just diff context changes).  This version should apply
cleanly, so either drop the original and apply this after rebase, or
maybe it should just go directly into net-next-2.6?  Thanks,

Alex

 drivers/net/virtio_net.c |   23 +++++++++++++++++++++--
 1 files changed, 21 insertions(+), 2 deletions(-)

diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index e68813a..3d00339 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -565,6 +565,22 @@ stop_queue:
 	goto done;
 }
 
+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;
+
+	ret = eth_mac_addr(dev, p);
+	if (ret)
+		return ret;
+
+	vdev->config->set(vdev, offsetof(struct virtio_net_config, mac),
+			  dev->dev_addr, dev->addr_len);
+
+	return 0;
+}
+
 #ifdef CONFIG_NET_POLL_CONTROLLER
 static void virtnet_netpoll(struct net_device *dev)
 {
@@ -774,7 +790,7 @@ static const struct net_device_ops virtnet_netdev = {
 	.ndo_stop   	     = virtnet_close,
 	.ndo_start_xmit      = start_xmit,
 	.ndo_validate_addr   = eth_validate_addr,
-	.ndo_set_mac_address = eth_mac_addr,
+	.ndo_set_mac_address = virtnet_set_mac_address,
 	.ndo_set_rx_mode     = virtnet_set_rx_mode,
 	.ndo_change_mtu	     = virtnet_change_mtu,
 	.ndo_vlan_rx_add_vid = virnet_vlan_rx_add_vid,
@@ -860,8 +876,11 @@ static int virtnet_probe(struct virtio_device *vdev)
 		vdev->config->get(vdev,
 				  offsetof(struct virtio_net_config, mac),
 				  dev->dev_addr, dev->addr_len);
-	} else
+	} else {
 		random_ether_addr(dev->dev_addr);
+		vdev->config->set(vdev, offsetof(struct virtio_net_config, mac),
+				  dev->dev_addr, dev->addr_len);
+	}
 
 	/* Set up our device-specific information */
 	vi = netdev_priv(dev);


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] virtio_net: Allow setting the MAC address of the NIC
  2009-02-04 19:26 ` [PATCH] virtio_net: Allow setting the MAC address of the NIC Alex Williamson
@ 2009-02-04 23:37   ` Rusty Russell
  2009-02-05  0:36     ` David Miller
  0 siblings, 1 reply; 3+ messages in thread
From: Rusty Russell @ 2009-02-04 23:37 UTC (permalink / raw)
  To: Alex Williamson; +Cc: markmc, netdev, kvm

On Thursday 05 February 2009 05:56:06 Alex Williamson wrote:
> Many physical NICs let the OS re-program the "hardware" MAC
> address.  Virtual NICs should allow this too.
> 
> Signed-off-by: Alex Williamson <alex.williamson@hp.com>
> Acked-by: Mark McLoughlin <markmc@redhat.com>
> ---
> 
> Rusty, you've already applied this to your patch queue, but that version
> won't apply cleanly after the MAC and VLAN filtering patches I just sent
> for net-next-2.6 (just diff context changes).  This version should apply
> cleanly, so either drop the original and apply this after rebase, or
> maybe it should just go directly into net-next-2.6?  Thanks,

Yes, it should go directly into net-next-2.6.

I like to keep some variant in my tree so I can see when they go upstream
(and ideally notice if they haven't for some reason).

Thanks,
Rusty.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] virtio_net: Allow setting the MAC address of the NIC
  2009-02-04 23:37   ` Rusty Russell
@ 2009-02-05  0:36     ` David Miller
  0 siblings, 0 replies; 3+ messages in thread
From: David Miller @ 2009-02-05  0:36 UTC (permalink / raw)
  To: rusty; +Cc: alex.williamson, markmc, netdev, kvm

From: Rusty Russell <rusty@rustcorp.com.au>
Date: Thu, 5 Feb 2009 10:07:12 +1030

> On Thursday 05 February 2009 05:56:06 Alex Williamson wrote:
> > Many physical NICs let the OS re-program the "hardware" MAC
> > address.  Virtual NICs should allow this too.
> > 
> > Signed-off-by: Alex Williamson <alex.williamson@hp.com>
> > Acked-by: Mark McLoughlin <markmc@redhat.com>
> > ---
> > 
> > Rusty, you've already applied this to your patch queue, but that version
> > won't apply cleanly after the MAC and VLAN filtering patches I just sent
> > for net-next-2.6 (just diff context changes).  This version should apply
> > cleanly, so either drop the original and apply this after rebase, or
> > maybe it should just go directly into net-next-2.6?  Thanks,
> 
> Yes, it should go directly into net-next-2.6.

Applied to net-next-2.6

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-02-05  0:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <200901271305.16832.rusty@rustcorp.com.au>
2009-02-04 19:26 ` [PATCH] virtio_net: Allow setting the MAC address of the NIC Alex Williamson
2009-02-04 23:37   ` Rusty Russell
2009-02-05  0:36     ` David Miller

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).