It's convenient to have the OVS version directly in the logs so one doesn't have to go digging through ovs-bugtool output to find it.
Signed-off-by: Ethan Jackson <[email protected]> --- ovsdb/ovsdb-server.c | 2 ++ vswitchd/ovs-vswitchd.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/ovsdb/ovsdb-server.c b/ovsdb/ovsdb-server.c index 7f53e17..71514a0 100644 --- a/ovsdb/ovsdb-server.c +++ b/ovsdb/ovsdb-server.c @@ -105,6 +105,8 @@ main(int argc, char *argv[]) daemonize_start(); + VLOG_INFO("%s (Open vSwitch) "VERSION, program_name); + error = ovsdb_file_open(file_name, false, &db, &file); if (error) { ovs_fatal(0, "%s", ovsdb_error_to_string(error)); diff --git a/vswitchd/ovs-vswitchd.c b/vswitchd/ovs-vswitchd.c index 6062a40..0fede03 100644 --- a/vswitchd/ovs-vswitchd.c +++ b/vswitchd/ovs-vswitchd.c @@ -85,6 +85,8 @@ main(int argc, char *argv[]) daemonize_start(); + VLOG_INFO("%s (Open vSwitch) "VERSION, program_name); + if (want_mlockall) { #ifdef HAVE_MLOCKALL if (mlockall(MCL_CURRENT | MCL_FUTURE)) { -- 1.7.11.1 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
