mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
net: dsa: set name_assign_type to NET_NAME_ENUM for enumerated user ports
When a user port does not have a label in device tree, and we thus fall back to the eth%d scheme, the proper constant to use is NET_NAME_ENUM. See also commite9f656b7a2
("net: ethernet: set default assignment identifier to NET_NAME_ENUM"), which in turn quoted commit685343fc3b
("net: add name_assign_type netdev attribute"): ... when the kernel has given the interface a name using global device enumeration based on order of discovery (ethX, wlanY, etc) ... are labelled NET_NAME_ENUM. Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.faineli@gmail.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
6fdb038420
commit
b8790661d9
@ -2380,7 +2380,7 @@ int dsa_slave_create(struct dsa_port *port)
|
|||||||
assign_type = NET_NAME_PREDICTABLE;
|
assign_type = NET_NAME_PREDICTABLE;
|
||||||
} else {
|
} else {
|
||||||
name = "eth%d";
|
name = "eth%d";
|
||||||
assign_type = NET_NAME_UNKNOWN;
|
assign_type = NET_NAME_ENUM;
|
||||||
}
|
}
|
||||||
|
|
||||||
slave_dev = alloc_netdev_mqs(sizeof(struct dsa_slave_priv), name,
|
slave_dev = alloc_netdev_mqs(sizeof(struct dsa_slave_priv), name,
|
||||||
|
Loading…
Reference in New Issue
Block a user