Skip to content

Commit

Permalink
coverage: Add coverage_try_clear() for performance-critical threads.
Browse files Browse the repository at this point in the history
For performance-critical threads like pmd threads, we currently make them
never call coverage_clear() to avoid contention over the global mutex
'coverage_mutex'.  So, even though pmd thread still keeps updating their
thread-local coverage count, the count is never attributed to the global
total.  But it is useful to have them available.

This commit makes this happen by implementing a non-contending version
of the clear function, coverage_try_clear().  The function will use
the ovs_mutex_trylock() and return immediately if the mutex cannot
be acquired.  Since threads like pmd thread are always busy-looping,
the lock will eventually be acquired.

Requested-by: Ilya Maximets <[email protected]>
Signed-off-by: Alex Wang <[email protected]>
Acked-by: Ilya Maximets <[email protected]>
Acked-by: Ben Pfaff <[email protected]>
Acked-by: Daniele Di Proietto <[email protected]
  • Loading branch information
yew011 committed Aug 25, 2015
1 parent d1cec3c commit fbe0962
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 4 deletions.
33 changes: 29 additions & 4 deletions lib/coverage.c
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,14 @@ coverage_read(struct svec *lines)

/* Runs approximately every COVERAGE_CLEAR_INTERVAL amount of time to
* synchronize per-thread counters with global counters. Every thread maintains
* a separate timer to ensure all counters are periodically aggregated. */
void
coverage_clear(void)
* a separate timer to ensure all counters are periodically aggregated.
*
* Uses 'ovs_mutex_trylock()' if 'trylock' is true. This is to prevent
* multiple performance-critical threads contending over the 'coverage_mutex'.
*
* */
static void
coverage_clear__(bool trylock)
{
long long int now, *thread_time;

Expand All @@ -262,7 +267,15 @@ coverage_clear(void)
if (now >= *thread_time) {
size_t i;

ovs_mutex_lock(&coverage_mutex);
if (trylock) {
/* Returns if cannot acquire lock. */
if (ovs_mutex_trylock(&coverage_mutex)) {
return;
}
} else {
ovs_mutex_lock(&coverage_mutex);
}

for (i = 0; i < n_coverage_counters; i++) {
struct coverage_counter *c = coverage_counters[i];
c->total += c->count();
Expand All @@ -272,6 +285,18 @@ coverage_clear(void)
}
}

void
coverage_clear(void)
{
coverage_clear__(false);
}

void
coverage_try_clear(void)
{
coverage_clear__(true);
}

/* Runs approximately every COVERAGE_RUN_INTERVAL amount of time to update the
* coverage counters' 'min' and 'hr' array. 'min' array is for cumulating
* per second counts into per minute count. 'hr' array is for cumulating per
Expand Down
1 change: 1 addition & 0 deletions lib/coverage.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ void coverage_counter_register(struct coverage_counter*);
void coverage_init(void);
void coverage_log(void);
void coverage_clear(void);
void coverage_try_clear(void);
void coverage_run(void);

#endif /* coverage.h */
2 changes: 2 additions & 0 deletions lib/dpif-netdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
#include "fat-rwlock.h"
#include "flow.h"
#include "cmap.h"
#include "coverage.h"
#include "latch.h"
#include "list.h"
#include "match.h"
Expand Down Expand Up @@ -2696,6 +2697,7 @@ pmd_thread_main(void *f_)
lc = 0;

emc_cache_slow_sweep(&pmd->flow_cache);
coverage_try_clear();
ovsrcu_quiesce();

atomic_read_relaxed(&pmd->change_seq, &seq);
Expand Down

0 comments on commit fbe0962

Please sign in to comment.