mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 22:52:35 +02:00
Staging: hv: name network device ethX rather than sethX
commit 546d9e101e upstream.
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>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
96f0910dd3
commit
41320f730d
|
|
@ -413,8 +413,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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user