2 * Copyright (c) 2009, 2010 Nicira Networks.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
21 #include "coverage-counters.h"
22 #include "dynamic-string.h"
27 #define THIS_MODULE VLM_coverage
30 static unsigned int epoch;
33 coverage_unixctl_log(struct unixctl_conn *conn, const char *args OVS_UNUSED)
35 coverage_log(VLL_WARN, false);
36 unixctl_command_reply(conn, 200, NULL);
42 unixctl_command_register("coverage/log", coverage_unixctl_log);
45 /* Sorts coverage counters in descending order by count, within equal counts
46 * alphabetically by name. */
48 compare_coverage_counters(const void *a_, const void *b_)
50 const struct coverage_counter *const *ap = a_;
51 const struct coverage_counter *const *bp = b_;
52 const struct coverage_counter *a = *ap;
53 const struct coverage_counter *b = *bp;
54 if (a->count != b->count) {
55 return a->count < b->count ? 1 : -1;
57 return strcmp(a->name, b->name);
64 struct coverage_counter **c;
68 /* Sort coverage counters into groups with equal counts. */
69 c = xmalloc(coverage_n_counters * sizeof *c);
70 for (i = 0; i < coverage_n_counters; i++) {
71 c[i] = coverage_counters[i];
73 qsort(c, coverage_n_counters, sizeof *c, compare_coverage_counters);
75 /* Hash the names in each group along with the rank. */
77 for (i = 0; i < coverage_n_counters; ) {
84 hash = hash_int(i, hash);
85 for (j = i; j < coverage_n_counters; j++) {
86 if (c[j]->count != c[i]->count) {
89 hash = hash_string(c[j]->name, hash);
96 return hash_int(n_groups, hash);
100 coverage_hit(uint32_t hash)
102 enum { HIT_BITS = 1024, BITS_PER_WORD = 32 };
103 static uint32_t hit[HIT_BITS / BITS_PER_WORD];
104 BUILD_ASSERT_DECL(IS_POW2(HIT_BITS));
106 unsigned int bit_index = hash & (HIT_BITS - 1);
107 unsigned int word_index = bit_index / BITS_PER_WORD;
108 unsigned int word_mask = 1u << (bit_index % BITS_PER_WORD);
110 if (hit[word_index] & word_mask) {
113 hit[word_index] |= word_mask;
119 coverage_log_counter(enum vlog_level level, const struct coverage_counter *c)
121 VLOG(level, "%-24s %5u / %9llu", c->name, c->count, c->count + c->total);
124 /* Logs the coverage counters at the given vlog 'level'. If
125 * 'suppress_dups' is true, then duplicate events are not displayed.
126 * Care should be taken in the value used for 'level'. Depending on the
127 * configuration, syslog can write changes synchronously, which can
128 * cause the coverage messages to take several seconds to write. */
130 coverage_log(enum vlog_level level, bool suppress_dups)
136 if (!vlog_is_enabled(THIS_MODULE, level)) {
140 hash = coverage_hash();
142 if (coverage_hit(hash)) {
143 VLOG(level, "Skipping details of duplicate event coverage for "
144 "hash=%08"PRIx32" in epoch %u", hash, epoch);
150 VLOG(level, "Event coverage (epoch %u/entire run), hash=%08"PRIx32":",
152 for (i = 0; i < coverage_n_counters; i++) {
153 struct coverage_counter *c = coverage_counters[i];
155 coverage_log_counter(level, c);
158 for (i = 0; i < coverage_n_counters; i++) {
159 struct coverage_counter *c = coverage_counters[i];
162 coverage_log_counter(level, c);
168 VLOG(level, "%zu events never hit", n_never_hit);
171 /* Advances to the next epoch of coverage, resetting all the counters to 0. */
178 for (i = 0; i < coverage_n_counters; i++) {
179 struct coverage_counter *c = coverage_counters[i];
180 c->total += c->count;