From: Stephen Hemminger Date: Thu, 11 Mar 2010 17:11:37 +0000 (-0800) Subject: Staging: hv: name network device ethX rather than sethX X-Git-Tag: upstream/snapshot3+hdmi~14722^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=546d9e101e7a71e6202f47a13ddcd9b8fb05a52e;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 Cc: Hank Janssen Cc: stable Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/hv/netvsc_drv.c b/drivers/staging/hv/netvsc_drv.c index 2ccb6b9..ab27d9a 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;