[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <200903131017.11572.rusty@rustcorp.com.au>
Date: Fri, 13 Mar 2009 10:17:11 +1030
From: Rusty Russell <rusty@...tcorp.com.au>
To: David Miller <davem@...emloft.net>
Cc: pktoss@...il.com, dcbw@...hat.com, netdev@...r.kernel.org
Subject: Re: [PATCH] Make virtio_net support carrier detection
On Friday 13 March 2009 08:09:49 Rusty Russell wrote:
> On Thursday 12 March 2009 23:22:35 David Miller wrote:
> > If the link is always on, you should make that explicit by providing
> > a link state handler, and making sure it always returns true.
>
> "If". We've discussed adding a virtio_net feature to indicate link status,
> which implies that it's *not* always on.
Actually, I've changed my mind.
Unlike a device which *has* a carrier which we can't detect, there's no
virtio_net "device" which can turn off link (not kvm/qemu, not lguest) without
the pending VIRTIO_NET_S_LINK feature.
Here's the patch for Dave's tree; the q. is do we want to put Pantelis' patch
in 2.6.29 and stable?
Rusty.
Subject: virtio_net: set carrier on by default.
Impact: fix carrier detection, older NetworkManager
This is actually two fixes:
1) If the virtio_net device doesn't support carrier, the answer is
"yes". This is because before the status feature there was no way
of turning the link off in any host implementation, and it also helps
(older) NetworkManager versions to see the device.
2) We should start with carrier on: virtnet_update_status() does nothing
if the status hasn't changed (ie. doesn't call netif_carrier_on()).
Reported-by: Pantelis Koukousoulas <pktoss@...il.com>
Signed-off-by: Rusty Russell <rusty@...tcorp.com.au>
---
drivers/net/virtio_net.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -795,7 +795,10 @@ static int virtnet_probe(struct virtio_d
goto unregister;
}
+ /* If we have no carrier info, the answer is "always on". */
vi->status = VIRTIO_NET_S_LINK_UP;
+ netif_carrier_on(vi->dev);
+
virtnet_update_status(vi);
pr_debug("virtnet: registered device %s\n", dev->name);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists