Do not add noise to the DBG log for empty sweeps. Only log time taken when some connections were cleaned.
Signed-off-by: Gaetan Rivet <[email protected]> Reviewed-by: Eli Britstein <[email protected]> --- lib/conntrack.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/conntrack.c b/lib/conntrack.c index 1b21b79bd..e042683aa 100644 --- a/lib/conntrack.c +++ b/lib/conntrack.c @@ -1574,8 +1574,10 @@ ct_sweep(struct conntrack *ct, long long now, size_t limit) } out: - VLOG_DBG("conntrack cleanup %"PRIuSIZE" entries in %lld msec", count, - time_msec() - now); + if (count > 0) { + VLOG_DBG("conntrack cleanup %"PRIuSIZE" entries in %lld msec", count, + time_msec() - now); + } return min_expiration; } -- 2.30.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
