X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fvlog.c;h=b534d196525dfce984c7fb2280056452138f617d;hb=7e56c85c02c547deda93ec09a589eae7e253fc58;hp=0fab00f14a4ab52182b15c7af48c7dd7c481cdb1;hpb=67a4917b07031b387beafaedce413b4207214059;p=openvswitch diff --git a/lib/vlog.c b/lib/vlog.c index 0fab00f1..b534d196 100644 --- a/lib/vlog.c +++ b/lib/vlog.c @@ -385,7 +385,8 @@ vlog_set_verbosity(const char *arg) } static void -vlog_unixctl_set(struct unixctl_conn *conn, const char *args) +vlog_unixctl_set(struct unixctl_conn *conn, + const char *args, void *aux OVS_UNUSED) { char *msg = vlog_set_levels_from_string(args); unixctl_command_reply(conn, msg ? 501 : 202, msg); @@ -393,7 +394,8 @@ vlog_unixctl_set(struct unixctl_conn *conn, const char *args) } static void -vlog_unixctl_list(struct unixctl_conn *conn, const char *args OVS_UNUSED) +vlog_unixctl_list(struct unixctl_conn *conn, + const char *args OVS_UNUSED, void *aux OVS_UNUSED) { char *msg = vlog_get_levels(); unixctl_command_reply(conn, 200, msg); @@ -401,7 +403,8 @@ vlog_unixctl_list(struct unixctl_conn *conn, const char *args OVS_UNUSED) } static void -vlog_unixctl_reopen(struct unixctl_conn *conn, const char *args OVS_UNUSED) +vlog_unixctl_reopen(struct unixctl_conn *conn, + const char *args OVS_UNUSED, void *aux OVS_UNUSED) { if (log_file_name) { int error = vlog_reopen_log_file(); @@ -435,9 +438,9 @@ vlog_init(void) VLOG_ERR("current time is negative: %s (%ld)", s, (long int) now); } - unixctl_command_register("vlog/set", vlog_unixctl_set); - unixctl_command_register("vlog/list", vlog_unixctl_list); - unixctl_command_register("vlog/reopen", vlog_unixctl_reopen); + unixctl_command_register("vlog/set", vlog_unixctl_set, NULL); + unixctl_command_register("vlog/list", vlog_unixctl_list, NULL); + unixctl_command_register("vlog/reopen", vlog_unixctl_reopen, NULL); } /* Closes the logging subsystem. */