mirror of
https://github.com/openvswitch/ovs
synced 2025-08-29 05:18:13 +00:00
ovsdb-server, ovs-vswitchd: Log version after daemonize_complete().
This fixes unit tests, and generally seems more correct. Signed-off-by: Ethan Jackson <ethan@nicira.com> [blp@nicira.com added the change to ovs-vswitchd] Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
parent
1ec3db6fd8
commit
9dbc190c81
@ -105,8 +105,6 @@ main(int argc, char *argv[])
|
||||
|
||||
daemonize_start();
|
||||
|
||||
VLOG_INFO("%s (Open vSwitch) %s", program_name, VERSION);
|
||||
|
||||
error = ovsdb_file_open(file_name, false, &db, &file);
|
||||
if (error) {
|
||||
ovs_fatal(0, "%s", ovsdb_error_to_string(error));
|
||||
@ -139,6 +137,8 @@ main(int argc, char *argv[])
|
||||
|
||||
daemonize_complete();
|
||||
|
||||
VLOG_INFO("%s (Open vSwitch) %s", program_name, VERSION);
|
||||
|
||||
unixctl_command_register("exit", "", 0, 0, ovsdb_server_exit, &exiting);
|
||||
unixctl_command_register("ovsdb-server/compact", "", 0, 0,
|
||||
ovsdb_server_compact, file);
|
||||
|
@ -556,6 +556,8 @@ bridge_reconfigure_continue(const struct ovsrec_open_vswitch *ovs_cfg)
|
||||
* forked us to exit successfully. */
|
||||
daemonize_complete();
|
||||
reconfiguring = false;
|
||||
|
||||
VLOG_INFO("%s (Open vSwitch) %s", program_name, VERSION);
|
||||
}
|
||||
|
||||
return done;
|
||||
|
@ -85,8 +85,6 @@ main(int argc, char *argv[])
|
||||
|
||||
daemonize_start();
|
||||
|
||||
VLOG_INFO("%s (Open vSwitch) %s", program_name, VERSION);
|
||||
|
||||
if (want_mlockall) {
|
||||
#ifdef HAVE_MLOCKALL
|
||||
if (mlockall(MCL_CURRENT | MCL_FUTURE)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user