summaryrefslogtreecommitdiff
path: root/kern/evcnt.c
blob: e993edd9c3cddc52950ea97894cb74f1d24d2300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * Copyright (c) 2014 Richard Braun.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <string.h>

#include <kern/evcnt.h>
#include <kern/init.h>
#include <kern/list.h>
#include <kern/mutex.h>
#include <kern/printk.h>

/*
 * Global list of all registered counters.
 */
static struct list evcnt_list;
static struct mutex evcnt_mutex;

void __init
evcnt_setup(void)
{
    list_init(&evcnt_list);
    mutex_init(&evcnt_mutex);
}

void
evcnt_register(struct evcnt *evcnt, const char *name)
{
    evcnt->count = 0;
    strlcpy(evcnt->name, name, sizeof(evcnt->name));

    mutex_lock(&evcnt_mutex);
    list_insert_tail(&evcnt_list, &evcnt->node);
    mutex_unlock(&evcnt_mutex);
}

void
evcnt_info(const char *pattern)
{
    struct evcnt *evcnt;
    size_t length, pattern_length;

    pattern_length = (pattern == NULL) ? 0 : strlen(pattern);

    printk("evcnt: name                                       count\n");

    mutex_lock(&evcnt_mutex);

    list_for_each_entry(&evcnt_list, evcnt, node) {
        if (pattern_length != 0) {
            length = strlen(evcnt->name);

            if ((length < pattern_length)
                || (memcmp(evcnt->name, pattern, pattern_length) != 0)) {
                continue;
            }
        }

        printk("evcnt: %-30s %17llu\n", evcnt->name, evcnt->count);
    }

    mutex_unlock(&evcnt_mutex);
}