Explorar el Código

[vlan] Use "-" instead of "." as separator in VLAN device names

VLAN device names have the form "netX.Y", e.g. "net0.5" for VLAN 5 on
net0.  This use of "." conflicts with the use of "." as the
hierarchical separator in settings block names, with the result that
VLAN device settings cannot be accessed by name.

It would be trivial to treat the VLAN device settings as being a child
of the trunk device settings, but this would cause the VLAN device
settings to be applied to the trunk device: for example, setting
"net0.5/ip" would then apply the IP address to both net0.5 and net0.

Fix by changing the VLAN device name to use "-" instead of ".": the
VLAN device "net0.5" is now "net0-5".

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown hace 14 años
padre
commit
51a9e517f2
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/net/vlan.c

+ 1
- 1
src/net/vlan.c Ver fichero

@@ -362,7 +362,7 @@ int vlan_create ( struct net_device *trunk, unsigned int tag,
362 362
 	vlan->priority = priority;
363 363
 
364 364
 	/* Construct VLAN device name */
365
-	snprintf ( netdev->name, sizeof ( netdev->name ), "%s.%d",
365
+	snprintf ( netdev->name, sizeof ( netdev->name ), "%s-%d",
366 366
 		   trunk->name, vlan->tag );
367 367
 
368 368
 	/* Register VLAN device */

Loading…
Cancelar
Guardar