summaryrefslogtreecommitdiffstats
path: root/drivers/staging/hv/netvsc_drv.c
diff options
context:
space:
mode:
authorStephen Hemminger2010-03-11 18:11:37 +0100
committerGreg Kroah-Hartman2010-04-30 18:30:10 +0200
commit546d9e101e7a71e6202f47a13ddcd9b8fb05a52e (patch)
treeb0e7d0ba6d7ebf9d8853175d306b47b41cce3a2b /drivers/staging/hv/netvsc_drv.c
parentStaging: hv: Fix up memory leak on HvCleanup (diff)
downloadkernel-qcow2-linux-546d9e101e7a71e6202f47a13ddcd9b8fb05a52e.tar.gz
kernel-qcow2-linux-546d9e101e7a71e6202f47a13ddcd9b8fb05a52e.tar.xz
kernel-qcow2-linux-546d9e101e7a71e6202f47a13ddcd9b8fb05a52e.zip
Staging: hv: name network device ethX rather than sethX
This patch makes the HyperV network device use the same naming scheme as other virtual drivers (Xen, KVM). In an ideal world, userspace tools would not care what the name is, but some users and applications do care. Vyatta CLI is one of the tools that does depend on what the name is. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Cc: Hank Janssen <hjanssen@microsoft.com> Cc: stable <stable@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/hv/netvsc_drv.c')
-rw-r--r--drivers/staging/hv/netvsc_drv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/hv/netvsc_drv.c b/drivers/staging/hv/netvsc_drv.c
index 2ccb6b93fe47..ab27d9a4446d 100644
--- a/drivers/staging/hv/netvsc_drv.c
+++ b/drivers/staging/hv/netvsc_drv.c
@@ -403,8 +403,7 @@ static int netvsc_probe(struct device *device)
if (!net_drv_obj->Base.OnDeviceAdd)
return -1;
- net = alloc_netdev(sizeof(struct net_device_context), "seth%d",
- ether_setup);
+ net = alloc_etherdev(sizeof(struct net_device_context));
if (!net)
return -1;