On 02/08/2016 11:23 PM, Stephen Hemminger wrote: > On Mon, 8 Feb 2016 12:55:09 +0100 > Nikolay Aleksandrov <ra...@blackwall.org> wrote: > >> + >> + if (tb[IFLA_BR_HELLO_TIMER]) >> + fprintf(f, "hello_timer %llu ", >> + rta_getattr_u64(tb[IFLA_BR_HELLO_TIMER])); >> + >> + if (tb[IFLA_BR_TCN_TIMER]) >> + fprintf(f, "tcn_timer %llu ", >> + rta_getattr_u64(tb[IFLA_BR_TCN_TIMER])); >> + >> + if (tb[IFLA_BR_TOPOLOGY_CHANGE_TIMER]) >> + fprintf(f, "topology_change_timer %llu ", >> + rta_getattr_u64(tb[IFLA_BR_TOPOLOGY_CHANGE_TIMER])); >> + >> + if (tb[IFLA_BR_GC_TIMER]) >> + fprintf(f, "gc_timer %llu ", >> + > > These should be rescaled as seconds. >
Wanted to be consistent with the other exported time values, but okay I'll convert these to seconds. Thanks, Nik