mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2026-01-04 01:29:00 +00:00
The blamed commit changed the vlan used by the host ports to be 4095
instead of 0.
Because of this change the following issues are seen:
- when the port is probed first it was adding an entry in the MAC table
with the wrong vlan (port->pvid which is default 0) and not HOST_PVID
- when the port is removed from a bridge, it was using the wrong vlan to
add entries in the MAC table. It was using the old PVID and not the
HOST_PVID
This patch fixes this two issues by using the HOST_PVID instead of
port->pvid.
Fixes:
|
||
|---|---|---|
| .. | ||
| Kconfig | ||
| lan966x_ethtool.c | ||
| lan966x_fdb.c | ||
| lan966x_ifh.h | ||
| lan966x_mac.c | ||
| lan966x_main.c | ||
| lan966x_main.h | ||
| lan966x_phylink.c | ||
| lan966x_port.c | ||
| lan966x_regs.h | ||
| lan966x_switchdev.c | ||
| lan966x_vlan.c | ||
| Makefile | ||