Re: [Bridge] [PATCH net-next v3 0/4] net: bridge: mdb: allow dump/add/del of host-joined entries

2019-08-17 Thread David Miller
From: Nikolay Aleksandrov Date: Sat, 17 Aug 2019 14:22:09 +0300 > This set makes the bridge dump host-joined mdb entries, they should be > treated as normal entries since they take a slot and are aging out. > We already have notifications for them but we couldn't dump them until > now so they

[PATCH net-next v3 2/4] net: bridge: mdb: factor out mdb filling

2019-08-17 Thread Nikolay Aleksandrov
We have to factor out the mdb fill portion in order to re-use it later for the bridge mdb entries. No functional changes intended. Signed-off-by: Nikolay Aleksandrov --- net/bridge/br_mdb.c | 68 - 1 file changed, 37 insertions(+), 31 deletions(-)

[PATCH net-next v3 3/4] net: bridge: mdb: dump host-joined entries as well

2019-08-17 Thread Nikolay Aleksandrov
Currently we dump only the port mdb entries but we can have host-joined entries on the bridge itself and they should be treated as normal temp mdbs, they're already notified: $ bridge monitor all [MDB]dev br0 port br0 grp ff02::8 temp The group will not be shown in the bridge mdb output, but it

[PATCH net-next v3 0/4] net: bridge: mdb: allow dump/add/del of host-joined entries

2019-08-17 Thread Nikolay Aleksandrov
Hi, This set makes the bridge dump host-joined mdb entries, they should be treated as normal entries since they take a slot and are aging out. We already have notifications for them but we couldn't dump them until now so they remained hidden. We dump them similar to how they're notified, in order