ovs-dpctl: Remove get-idx and get-name commands.
authorBen Pfaff <blp@nicira.com>
Fri, 15 May 2009 22:57:53 +0000 (15:57 -0700)
committerBen Pfaff <blp@nicira.com>
Fri, 15 May 2009 23:30:27 +0000 (16:30 -0700)
These commands made some sense when dpctl only accepted numerical datapath
identifiers, but now it accepts names as well as numbers.  These commands
were never really used much, so delete them.

utilities/ovs-dpctl.8.in
utilities/ovs-dpctl.c

index 61f2c694c30093315e012ae4e3fed53cc1941968..72a787f7a1941a650c285af22a6cf614e496beb6 100644 (file)
@@ -86,15 +86,6 @@ port (analogous to the local port) with that name.
 Removes each \fInetdev\fR from the list of network devices datapath
 \fIdp\fR monitors.
 
-.TP
-\fBget-idx \fIdp\fR
-Prints the datapath number of datapath \fIdp\fR.
-
-.TP
-\fBget-name \fIdp\fR
-Prints the name of datapath \fIdp\fR, that is, the name of the network
-device acting as its local port.
-
 .TP
 \fBdp-show \fR[\fIdp\fR...]
 Prints a summary of configured datapaths, including their datapath
index a8c7b1be0da8358c9d3f57600a35898c9ff43137..207c94b728cbf8bdbaaa744ea8bac91d8c907f96 100644 (file)
@@ -226,27 +226,6 @@ static int if_up(const char *netdev_name)
     return retval;
 }
 
-static void
-do_get_idx(int argc UNUSED, char *argv[])
-{
-    struct dpif dpif;
-    run(dpif_open(argv[1], &dpif), "opening datapath");
-    printf("%u\n", dpif_id(&dpif));
-    dpif_close(&dpif);
-}
-
-static void
-do_get_name(int argc UNUSED, char *argv[])
-{
-    struct dpif dpif;
-    char name[IF_NAMESIZE + 1];
-
-    run(dpif_open(argv[1], &dpif), "opening datapath");
-    run(dpif_get_name(&dpif, name, sizeof name), "getting datapath name");
-    puts(name);
-    dpif_close(&dpif);
-}
-
 static void
 do_add_dp(int argc UNUSED, char *argv[])
 {
@@ -582,8 +561,6 @@ static struct command all_commands[] = {
     { "deldp", 1, 1, do_del_dp },
     { "addif", 2, INT_MAX, do_add_port },
     { "delif", 2, INT_MAX, do_del_port },
-    { "get-idx", 1, 1, do_get_idx },
-    { "get-name", 1, 1, do_get_name },
     { "dp-show", 0, INT_MAX, do_dp_show },
     { "dp-dump-flows", 1, 1, do_dp_dump_flows },
     { "dp-del-flows", 1, 1, do_dp_del_flows },