The br_vlan_opts_eq_range() function determines if consecutive VLANs can be grouped together in a range for compact netlink notifications. It currently checks state, tunnel info, and multicast router configuration, but misses two categories of per-VLAN options that affect the output: 1. User-visible priv_flags (neigh_suppress, mcast_enabled) 2. Port multicast context options (mcast_max_groups, mcast_n_groups)
When VLANs have different settings for these options, they are incorrectly grouped into ranges, causing netlink notifications to report only one VLAN's settings for the entire range. Fix by checking priv_flags equality, but only for flags that affect netlink output (BR_VLFLAG_NEIGH_SUPPRESS_ENABLED and BR_VLFLAG_MCAST_ENABLED), and comparing multicast context options (mcast_max_groups, mcast_n_groups). Add a test with four test cases for each option, to ensure that VLANs with different values are not grouped into ranges and VLANs with matching values are properly grouped together. Patchset overview: Patch #1: fix Patch #2: test Danielle Ratson (2): bridge: Check relevant per-VLAN options in VLAN range grouping selftests: net: Add bridge VLAN range grouping tests net/bridge/br_private.h | 10 + net/bridge/br_vlan_options.c | 26 ++- tools/testing/selftests/net/Makefile | 1 + .../testing/selftests/net/bridge_vlan_dump.sh | 203 ++++++++++++++++++ 4 files changed, 237 insertions(+), 3 deletions(-) create mode 100755 tools/testing/selftests/net/bridge_vlan_dump.sh -- 2.51.0
