Introduced by commit 12eb035b.
("bridge: Allow users to configure statistics update to OVSDB.")Cc: Alex Wang <[email protected]> Signed-off-by: YAMAMOTO Takashi <[email protected]> --- vswitchd/bridge.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 1145e98..43c109c 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -2383,8 +2383,13 @@ bridge_run(void) /* Statistics update interval should always be greater than or equal to * 5000 ms. */ - stats_interval = MAX(smap_get_int(&cfg->other_config, - "stats-update-interval", 5000), 5000); + if (cfg) { + stats_interval = MAX(smap_get_int(&cfg->other_config, + "stats-update-interval", + 5000), 5000); + } else { + stats_interval = 5000; + } if (stats_timer_interval != stats_interval) { stats_timer_interval = stats_interval; stats_timer = LLONG_MIN; -- 1.8.3.1 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
