* [PATCH] virtio_net: Fix function name typo
@ 2009-04-27 15:55 Alex Williamson
2009-04-28 9:31 ` David Miller
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Alex Williamson @ 2009-04-27 15:55 UTC (permalink / raw)
To: davem, rusty; +Cc: alex.williamson, netdev
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
---
drivers/net/virtio_net.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index ed70df4..6cc5bcd 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -744,7 +744,7 @@ static void virtnet_set_rx_mode(struct net_device *dev)
kfree(buf);
}
-static void virnet_vlan_rx_add_vid(struct net_device *dev, u16 vid)
+static void virtnet_vlan_rx_add_vid(struct net_device *dev, u16 vid)
{
struct virtnet_info *vi = netdev_priv(dev);
struct scatterlist sg;
@@ -756,7 +756,7 @@ static void virnet_vlan_rx_add_vid(struct net_device *dev, u16 vid)
dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
}
-static void virnet_vlan_rx_kill_vid(struct net_device *dev, u16 vid)
+static void virtnet_vlan_rx_kill_vid(struct net_device *dev, u16 vid)
{
struct virtnet_info *vi = netdev_priv(dev);
struct scatterlist sg;
@@ -794,8 +794,8 @@ static const struct net_device_ops virtnet_netdev = {
.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,
- .ndo_vlan_rx_kill_vid = virnet_vlan_rx_kill_vid,
+ .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
+ .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
#ifdef CONFIG_NET_POLL_CONTROLLER
.ndo_poll_controller = virtnet_netpoll,
#endif
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] virtio_net: Fix function name typo
2009-04-27 15:55 [PATCH] virtio_net: Fix function name typo Alex Williamson
@ 2009-04-28 9:31 ` David Miller
2009-05-01 22:33 ` David Miller
2009-05-05 3:22 ` Rusty Russell
2 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2009-04-28 9:31 UTC (permalink / raw)
To: alex.williamson; +Cc: rusty, netdev
From: Alex Williamson <alex.williamson@hp.com>
Date: Mon, 27 Apr 2009 09:55:38 -0600
> Signed-off-by: Alex Williamson <alex.williamson@hp.com>
This also looks fine to me. Rusty, you too?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] virtio_net: Fix function name typo
2009-04-27 15:55 [PATCH] virtio_net: Fix function name typo Alex Williamson
2009-04-28 9:31 ` David Miller
@ 2009-05-01 22:33 ` David Miller
2009-05-02 3:31 ` Alex Williamson
2009-05-05 3:22 ` Rusty Russell
2 siblings, 1 reply; 6+ messages in thread
From: David Miller @ 2009-05-01 22:33 UTC (permalink / raw)
To: alex.williamson; +Cc: rusty, netdev
From: Alex Williamson <alex.williamson@hp.com>
Date: Mon, 27 Apr 2009 09:55:38 -0600
> Signed-off-by: Alex Williamson <alex.williamson@hp.com>
Please resubmit this when you fix up the scatterlist
patch to apply properly, thanks.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] virtio_net: Fix function name typo
2009-05-01 22:33 ` David Miller
@ 2009-05-02 3:31 ` Alex Williamson
2009-05-02 4:26 ` David Miller
0 siblings, 1 reply; 6+ messages in thread
From: Alex Williamson @ 2009-05-02 3:31 UTC (permalink / raw)
To: davem, rusty; +Cc: alex.williamson, netdev
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
---
Applies against Message-ID: <20090502032646.7927.99584.stgit@debian.lart>
drivers/net/virtio_net.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index 23eb282..4d1d479 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -748,7 +748,7 @@ static void virtnet_set_rx_mode(struct net_device *dev)
kfree(buf);
}
-static void virnet_vlan_rx_add_vid(struct net_device *dev, u16 vid)
+static void virtnet_vlan_rx_add_vid(struct net_device *dev, u16 vid)
{
struct virtnet_info *vi = netdev_priv(dev);
struct scatterlist sg;
@@ -760,7 +760,7 @@ static void virnet_vlan_rx_add_vid(struct net_device *dev, u16 vid)
dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
}
-static void virnet_vlan_rx_kill_vid(struct net_device *dev, u16 vid)
+static void virtnet_vlan_rx_kill_vid(struct net_device *dev, u16 vid)
{
struct virtnet_info *vi = netdev_priv(dev);
struct scatterlist sg;
@@ -798,8 +798,8 @@ static const struct net_device_ops virtnet_netdev = {
.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,
- .ndo_vlan_rx_kill_vid = virnet_vlan_rx_kill_vid,
+ .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
+ .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
#ifdef CONFIG_NET_POLL_CONTROLLER
.ndo_poll_controller = virtnet_netpoll,
#endif
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] virtio_net: Fix function name typo
2009-04-27 15:55 [PATCH] virtio_net: Fix function name typo Alex Williamson
2009-04-28 9:31 ` David Miller
2009-05-01 22:33 ` David Miller
@ 2009-05-05 3:22 ` Rusty Russell
2 siblings, 0 replies; 6+ messages in thread
From: Rusty Russell @ 2009-05-05 3:22 UTC (permalink / raw)
To: Alex Williamson; +Cc: davem, netdev
On Tue, 28 Apr 2009 01:25:38 am Alex Williamson wrote:
> Signed-off-by: Alex Williamson <alex.williamson@hp.com>
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
I only noticed this in the linux-next error messages, too. Says bad
things about my review, huh?
Cheers,
Rusty.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-05-05 4:24 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-27 15:55 [PATCH] virtio_net: Fix function name typo Alex Williamson
2009-04-28 9:31 ` David Miller
2009-05-01 22:33 ` David Miller
2009-05-02 3:31 ` Alex Williamson
2009-05-02 4:26 ` David Miller
2009-05-05 3:22 ` Rusty Russell
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).