X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=lib%2Fvlog.c;h=0d7f4d159ab63c540f429b10756bffa0a2bfae8e;hb=17f7f7e02cfd44dc7755fbebcfb942c07f937858;hp=11b2f7cc4ef48be324b4f90412ff1fef40995432;hpb=68cb8aaf0aa7956f7e6e28e380ea6b0333a4a3be;p=openvswitch diff --git a/lib/vlog.c b/lib/vlog.c index 11b2f7cc..0d7f4d15 100644 --- a/lib/vlog.c +++ b/lib/vlog.c @@ -425,17 +425,25 @@ vlog_set_verbosity(const char *arg) } static void -vlog_unixctl_set(struct unixctl_conn *conn, - const char *args, void *aux OVS_UNUSED) +vlog_unixctl_set(struct unixctl_conn *conn, int argc, const char *argv[], + void *aux OVS_UNUSED) { - char *msg = vlog_set_levels_from_string(args); - unixctl_command_reply(conn, msg ? 501 : 202, msg); - free(msg); + int i; + + for (i = 1; i < argc; i++) { + char *msg = vlog_set_levels_from_string(argv[i]); + if (msg) { + unixctl_command_reply(conn, 501, msg); + free(msg); + return; + } + } + unixctl_command_reply(conn, 202, NULL); } static void -vlog_unixctl_list(struct unixctl_conn *conn, - const char *args OVS_UNUSED, void *aux OVS_UNUSED) +vlog_unixctl_list(struct unixctl_conn *conn, int argc OVS_UNUSED, + const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED) { char *msg = vlog_get_levels(); unixctl_command_reply(conn, 200, msg); @@ -443,8 +451,8 @@ vlog_unixctl_list(struct unixctl_conn *conn, } static void -vlog_unixctl_reopen(struct unixctl_conn *conn, - const char *args OVS_UNUSED, void *aux OVS_UNUSED) +vlog_unixctl_reopen(struct unixctl_conn *conn, int argc OVS_UNUSED, + const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED) { if (log_file_name) { int error = vlog_reopen_log_file(); @@ -483,11 +491,12 @@ vlog_init(void) VLOG_ERR("current time is negative: %s (%ld)", s, (long int) now); } - unixctl_command_register("vlog/set", - "{module[:facility[:level]] | PATTERN:facility:pattern}", - vlog_unixctl_set, NULL); - unixctl_command_register("vlog/list", "", vlog_unixctl_list, NULL); - unixctl_command_register("vlog/reopen", "", vlog_unixctl_reopen, NULL); + unixctl_command_register( + "vlog/set", "{module[:facility[:level]] | PATTERN:facility:pattern}", + 1, INT_MAX, vlog_unixctl_set, NULL); + unixctl_command_register("vlog/list", "", 0, 0, vlog_unixctl_list, NULL); + unixctl_command_register("vlog/reopen", "", 0, 0, + vlog_unixctl_reopen, NULL); } /* Closes the logging subsystem. */