Fix GCC3 related pre-processor issues.
[dragonfly.git] / test / pcpu / ncache-stats.c
1 /*
2  * Copyright (c) 2003, 2004 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Hiten Pandya <hmp@backplane.com>.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in
15  *    the documentation and/or other materials provided with the
16  *    distribution.
17  * 3. Neither the name of The DragonFly Project nor the names of its
18  *    contributors may be used to endorse or promote products derived
19  *    from this software without specific, prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
25  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  * $DragonFly: src/test/pcpu/ncache-stats.c,v 1.4 2005/03/07 04:19:22 hmp Exp $
35  */
36
37 #include <sys/param.h>
38 #include <sys/nchstats.h>
39 #include <sys/sysctl.h>
40 #include <sys/accumulator.h>
41
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <strings.h>
45 #include <err.h>
46 #include <kvm.h>
47
48 #define _NCH_ENT(t, n, tt)                       \
49     printf("%-20s", t);                          \
50     for (i = 1; i <= ncpus; ++i) {               \
51         printf("%-9ld%s", nch[i-1]. #n, "\t"); \
52                 if (i == ncpus)                          \
53                         printf("(%-9ld)\n", tt. #n);       \
54         }                                            \
55
56 /*
57  * Aggregate the per-cpu counters we retrieved via sysctl(2)
58  * to give the total across the CPUs.  Use a nasty trick to
59  * aggregate the counters in the structure! YYY
60  */
61 #if 0
62 static void
63 nch_cpuagg(struct nchstats *unagg, struct nchstats *ttl, int cpucnt)
64 {
65         int i, off, siz;
66         siz = sizeof(struct nchstats);
67
68         if (!unagg && !ttl)
69                 return;
70
71         bzero(ttl, siz);
72         
73         /* kick hmp@ for this nasty loop! :-) */
74         for (i = 0; i < cpucnt; ++i) {
75                 for (off = 0; off < siz; off += sizeof(u_long)) {
76                         *(u_long *)((char *)(*(&ttl)) + off) +=
77                         *(u_long *)((char *)&unagg[i] + off);
78                 }
79         }
80 }
81 #endif
82
83 int main(void)
84 {
85         int i, ncpus;
86         struct nchstats *nch, total;
87         size_t nch_len = SMP_MAXCPU * sizeof(struct nchstats);
88         u_long nchtotal;
89
90         nch = malloc(nch_len);
91         if (!nch)
92                 exit(-1);
93
94         /* retrieve the statistics */
95         if (sysctlbyname("vfs.cache.nchstats", nch, &nch_len, NULL, 0) < 0) {
96                 warn("sysctl");
97                 exit(-1);
98         } else {
99                 nch = realloc(nch, nch_len);
100                 if (!nch)
101                         exit(-1);
102         }
103
104         ncpus = nch_len / sizeof(struct nchstats);
105
106 #if defined(DEBUG)
107         printf("Number of processors = %d\n", ncpus);
108 #endif
109
110         kvm_nch_cpuagg(nch, &total, ncpus);
111         nchtotal = total.ncs_goodhits + total.ncs_neghits +
112             total.ncs_badhits + total.ncs_falsehits +
113             total.ncs_miss + total.ncs_long;
114
115         printf("VFS Name Cache Effectiveness Statistics\n");
116         printf("%9ld total name lookups\n",nchtotal);
117
118         printf("%-20s", "COUNTER");
119         
120         for (i = 1; i <= ncpus; ++i) {
121                 printf("%3s-%-2d%s", "CPU", i, "\t");
122                 if (i == ncpus)
123                         printf("\t%-9s\n", "TOTAL");
124         }
125
126         _NCH_ENT("goodhits", ncs_goodhits, total);
127         _NCH_ENT("neghits", ncs_neghits, total);
128         _NCH_ENT("badhits", ncs_badhits, total);
129         _NCH_ENT("falsehits", ncs_falsehits, total);
130         _NCH_ENT("misses", ncs_miss, total);
131         _NCH_ENT("longnames", ncs_long, total);
132         _NCH_ENT("passes 2", ncs_pass2, total);
133         _NCH_ENT("2-passes", ncs_2passes, total);
134
135         free(nch);
136
137         return 0;
138 }