From: Gurucharan Shetty Date: Tue, 24 Sep 2013 17:23:49 +0000 (-0700) Subject: ovs-dpctl: Update usage where datapath name is optional. X-Git-Tag: sliver-openvswitch-2.0.90-1~13^2~8 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=2e6d002d967ffe795cda2f8c2cca15d3592f411f;p=sliver-openvswitch.git ovs-dpctl: Update usage where datapath name is optional. Signed-off-by: Gurucharan Shetty Acked-by: Ben Pfaff --- diff --git a/utilities/ovs-dpctl.c b/utilities/ovs-dpctl.c index 43c0db645..98b47b8d7 100644 --- a/utilities/ovs-dpctl.c +++ b/utilities/ovs-dpctl.c @@ -167,14 +167,16 @@ usage(void) " dump-dps display names of all datapaths\n" " show show basic info on all datapaths\n" " show DP... show basic info on each DP\n" - " dump-flows DP display flows in DP\n" - " add-flow DP FLOW ACTIONS add FLOW with ACTIONS to DP\n" - " mod-flow DP FLOW ACTIONS change FLOW actions to ACTIONS in DP\n" - " del-flow DP FLOW delete FLOW from DP\n" - " del-flows DP delete all flows from DP\n" + " dump-flows [DP] display flows in DP\n" + " add-flow [DP] FLOW ACTIONS add FLOW with ACTIONS to DP\n" + " mod-flow [DP] FLOW ACTIONS change FLOW actions to ACTIONS in DP\n" + " del-flow [DP] FLOW delete FLOW from DP\n" + " del-flows [DP] delete all flows from DP\n" "Each IFACE on add-dp, add-if, and set-if may be followed by\n" "comma-separated options. See ovs-dpctl(8) for syntax, or the\n" - "Interface table in ovs-vswitchd.conf.db(5) for an options list.\n", + "Interface table in ovs-vswitchd.conf.db(5) for an options list.\n" + "For COMMAND dump-flows, add-flow, mod-flow, del-flow and\n" + "del-flows, DP is optional if there is only one datapath.\n", program_name, program_name); vlog_usage(); printf("\nOptions for show and mod-flow:\n"