diff mbox

bridge-utils: show selected bridge

Message ID AANLkTi=2TGTSnFLAV0ucST7oWeaxHfchhxPd3y=F-dai@mail.gmail.com
State Accepted, archived
Delegated to: stephen hemminger
Headers show

Commit Message

Anton Danilov Jan. 12, 2011, 3:29 p.m. UTC

Comments

stephen hemminger Jan. 13, 2011, 10:48 p.m. UTC | #1
Applied, but please add commit message next time.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/brctl/brctl_cmd.c b/brctl/brctl_cmd.c
index d37e99c..d95fe54 100644
--- a/brctl/brctl_cmd.c
+++ b/brctl/brctl_cmd.c
@@ -338,8 +338,14 @@  static int show_bridge(const char *name, void *arg)

 static int br_cmd_show(int argc, char *const* argv)
 {
+       int i = 0;
+
        printf("bridge name\tbridge id\t\tSTP enabled\tinterfaces\n");
-       br_foreach_bridge(show_bridge, NULL);
+       if (argc == 1)
+               br_foreach_bridge(show_bridge, NULL);
+       else
+               for(i = 2; i <= argc; i++)
+                       show_bridge(argv[i - 1], NULL);
        return 0;
 }

@@ -454,7 +460,8 @@  static const struct command commands[] = {
          "<bridge> <port> <cost>\tset path cost" },
        { 3, "setportprio", br_cmd_setportprio,
          "<bridge> <port> <prio>\tset port priority" },
-       { 0, "show", br_cmd_show, "\t\t\tshow a list of bridges" },
+       { 0, "show", br_cmd_show,
+         "[ <bridge> ]\t\tshow a list of bridges" },
        { 1, "showmacs", br_cmd_showmacs,
          "<bridge>\t\tshow a list of mac addrs"},
        { 1, "showstp", br_cmd_showstp,