netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Nikolay Aleksandrov <razor@blackwall.org>
To: netdev@vger.kernel.org
Cc: roopa@nvidia.com, dsahern@gmail.com,
	Nikolay Aleksandrov <nikolay@nvidia.com>
Subject: [PATCH iproute2-next 3/6] bridge: mdb: show igmpv3/mldv2 flags
Date: Thu,  8 Oct 2020 16:50:21 +0300	[thread overview]
Message-ID: <20201008135024.1515468-4-razor@blackwall.org> (raw)
In-Reply-To: <20201008135024.1515468-1-razor@blackwall.org>

From: Nikolay Aleksandrov <nikolay@nvidia.com>

With IGMPv3/MLDv2 support we have 2 new flags:
 - added_by_star_ex: set when the S,G entry was automatically created
                     because of a *,G entry in EXCLUDE mode
 - blocked: set when traffic for the S,G entry for that port has to be
            blocked
Both flags are used only on the new S,G entries and are currently kernel
managed, i.e. similar to other flags which can't be set from user-space.

Signed-off-by: Nikolay Aleksandrov <nikolay@nvidia.com>
---
 bridge/mdb.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/bridge/mdb.c b/bridge/mdb.c
index 94cd3c3b2390..d33bd5d5c7df 100644
--- a/bridge/mdb.c
+++ b/bridge/mdb.c
@@ -155,6 +155,10 @@ static void print_mdb_entry(FILE *f, int ifindex, const struct br_mdb_entry *e,
 		print_string(PRINT_ANY, NULL, " %s", "offload");
 	if (e->flags & MDB_FLAGS_FAST_LEAVE)
 		print_string(PRINT_ANY, NULL, " %s", "fast_leave");
+	if (e->flags & MDB_FLAGS_STAR_EXCL)
+		print_string(PRINT_ANY, NULL, " %s", "added_by_star_ex");
+	if (e->flags & MDB_FLAGS_BLOCKED)
+		print_string(PRINT_ANY, NULL, " %s", "blocked");
 	close_json_array(PRINT_JSON, NULL);
 
 	if (e->vid)
-- 
2.25.4


  parent reply	other threads:[~2020-10-08 13:50 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-08 13:50 [PATCH iproute2-next 0/6] bridge: mdb: add support for IGMPv3/MLDv2 attributes Nikolay Aleksandrov
2020-10-08 13:50 ` [PATCH iproute2-next 1/6] bridge: mdb: add support for source address Nikolay Aleksandrov
2020-10-08 13:50 ` [PATCH iproute2-next 2/6] bridge: mdb: print fast_leave flag Nikolay Aleksandrov
2020-10-08 13:50 ` Nikolay Aleksandrov [this message]
2020-10-08 13:50 ` [PATCH iproute2-next 4/6] bridge: mdb: print filter mode when available Nikolay Aleksandrov
2020-10-08 13:50 ` [PATCH iproute2-next 5/6] bridge: mdb: print source list " Nikolay Aleksandrov
2020-10-08 13:50 ` [PATCH iproute2-next 6/6] bridge: mdb: print protocol " Nikolay Aleksandrov
2020-10-12  2:08 ` [PATCH iproute2-next 0/6] bridge: mdb: add support for IGMPv3/MLDv2 attributes David Ahern

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201008135024.1515468-4-razor@blackwall.org \
    --to=razor@blackwall.org \
    --cc=dsahern@gmail.com \
    --cc=netdev@vger.kernel.org \
    --cc=nikolay@nvidia.com \
    --cc=roopa@nvidia.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).