X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lnet%2Futils%2Flnetctl.c;h=43ed605b2a2f5b8eef9be01b758a72efc3c29bfa;hp=3750417e558cde03dd348f1803dc988b93402171;hb=2bcfce77a2712960fadac2f034c1df4826780608;hpb=dd918fb51ed8ba180f888a242df20e5a4af29af2 diff --git a/lnet/utils/lnetctl.c b/lnet/utils/lnetctl.c index 3750417..43ed605 100644 --- a/lnet/utils/lnetctl.c +++ b/lnet/utils/lnetctl.c @@ -18,7 +18,7 @@ * * LGPL HEADER END * - * Copyright (c) 2013, Intel Corporation. + * Copyright (c) 2014, Intel Corporation. * * Author: * Amir Shehata @@ -72,7 +72,7 @@ command_t route_cmds[] = { "\t--gateway: gateway nid (e.g. 10.1.1.2@tcp) to filter on\n" "\t--hop: number to final destination (1 < hops < 255) to filter on\n" "\t--priority: priority of route (0 - highest prio to filter on\n" - "\t--vebose: display detailed output per route\n"}, + "\t--verbose: display detailed output per route\n"}, { 0, 0, 0, NULL } }; @@ -299,7 +299,6 @@ static int jt_config_lnet(int argc, char **argv) struct cYAML *err_rc = NULL; bool load_mod_params = false; int rc, opt; - optind = 0; const char *const short_options = "ah"; const struct option long_options[] = { @@ -337,7 +336,6 @@ static int jt_unconfig_lnet(int argc, char **argv) { struct cYAML *err_rc = NULL; int rc; - optind = 0; if (handle_help(lnet_cmds, "lnet", "unconfigure", argc, argv) == 0) return 0; @@ -357,7 +355,6 @@ static int jt_add_route(int argc, char **argv) long int hop = -1, prio = -1; struct cYAML *err_rc = NULL; int rc, opt; - optind = 0; const char *const short_options = "n:g:c:p:h"; const struct option long_options[] = { @@ -418,7 +415,6 @@ static int jt_add_net(int argc, char **argv) long int pto = -1, pc = -1, pbc = -1, cre = -1; struct cYAML *err_rc = NULL; int rc, opt; - optind = 0; const char *const short_options = "n:i:p:t:c:b:r:s:h"; const struct option long_options[] = { @@ -505,7 +501,6 @@ static int jt_del_route(int argc, char **argv) char *network = NULL, *gateway = NULL; struct cYAML *err_rc = NULL; int rc, opt; - optind = 0; const char *const short_options = "n:g:h"; const struct option long_options[] = { @@ -547,7 +542,6 @@ static int jt_del_net(int argc, char **argv) char *network = NULL; struct cYAML *err_rc = NULL; int rc, opt; - optind = 0; const char *const short_options = "n:h"; const struct option long_options[] = { @@ -586,7 +580,6 @@ static int jt_show_route(int argc, char **argv) long int hop = -1, prio = -1; int detail = 0, rc, opt; struct cYAML *err_rc = NULL, *show_rc = NULL; - optind = 0; const char *const short_options = "n:g:h:p:vh"; const struct option long_options[] = { @@ -654,7 +647,6 @@ static int jt_show_net(int argc, char **argv) char *network = NULL; int detail = 0, rc, opt; struct cYAML *err_rc = NULL, *show_rc = NULL; - optind = 0; const char *const short_options = "n:vh"; const struct option long_options[] = { @@ -740,7 +732,6 @@ static int jt_show_peer_credits(int argc, char **argv) { int rc; struct cYAML *show_rc = NULL, *err_rc = NULL; - optind = 0; if (handle_help(credits_cmds, "peer_credits", "show", argc, argv) == 0) return 0; @@ -848,7 +839,6 @@ static int jt_import(int argc, char **argv) struct cYAML *err_rc = NULL; struct cYAML *show_rc = NULL; int rc = 0, opt, opt_found = 0; - optind = 0; char cmd = 'a'; const char *const short_options = "adsh"; @@ -918,7 +908,6 @@ static int jt_export(int argc, char **argv) struct cYAML *err_rc = NULL; int rc, opt; FILE *f = NULL; - optind = 0; const char *const short_options = "h"; const struct option long_options[] = { @@ -987,7 +976,7 @@ command_t list[] = { "--help} FILE.yaml"}, {"export", jt_export, 0, "export {--help} FILE.yaml"}, {"stats", jt_stats, 0, "stats {show | help}"}, - {"peer_credits", jt_peer_credits, 0, "stats {show | help}"}, + {"peer_credits", jt_peer_credits, 0, "peer_credits {show | help}"}, {"help", Parser_help, 0, "help"}, {"exit", Parser_quit, 0, "quit"}, {"quit", Parser_quit, 0, "quit"},