kernel - Add support for the CPU_AMD64X2_INTR_SPAM option to x86_64
[dragonfly.git] / lib / libkinfo / kinfo_sched.c
blob22425384e2c473b713118175ce73042f6759279a
1 /*
2 * Copyright (c) 2004 The DragonFly Project. All rights reserved.
3 *
4 * This code is derived from software contributed to The DragonFly Project
5 * by Joerg Sonnenberger <joerg@bec.de>.
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:
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.
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.
34 * $DragonFly: src/lib/libkinfo/kinfo_sched.c,v 1.3 2005/04/27 16:16:30 hmp Exp $
37 #include <sys/kinfo.h>
38 #include <sys/param.h>
39 #include <sys/sysctl.h>
41 #include <assert.h>
42 #include <stdlib.h>
43 #include <errno.h>
44 #include <kinfo.h>
46 int
47 kinfo_get_cpus(int *ncpus)
49 size_t len = sizeof(*ncpus);
51 return(sysctlbyname("hw.ncpu", ncpus, &len, NULL, 0));
54 int
55 kinfo_get_sched_ccpu(int *ccpu)
57 size_t len = sizeof(*ccpu);
59 return(sysctlbyname("kern.ccpu", ccpu, &len, NULL, 0));
62 int
63 kinfo_get_sched_cputime(struct kinfo_cputime *cputime)
65 struct kinfo_cputime *percpu = NULL;
66 size_t len = sizeof(struct kinfo_cputime) * SMP_MAXCPU;
67 int cpucount, error = 0;
69 _DIAGASSERT(cputime != NULL);
71 if ((percpu = malloc(len)) == NULL) {
72 error = ENOMEM;
73 goto done;
76 /* retrieve verbatim per-cpu statistics from kernel */
77 if (sysctlbyname("kern.cputime", percpu, &len, NULL, 0) < 0) {
78 error = errno;
79 goto done;
80 } else {
81 percpu = reallocf(percpu, len);
82 if (percpu == NULL) {
83 error = ENOMEM;
84 goto done;
88 /* aggregate per-cpu statistics retrieved from kernel */
89 cpucount = len / sizeof(struct kinfo_cputime);
90 cputime_pcpu_statistics(percpu, cputime, cpucount);
92 done:
93 if (percpu != NULL)
94 free(percpu);
95 return (error);
98 int
99 kinfo_get_sched_hz(int *hz)
101 struct kinfo_clockinfo clockinfo;
102 size_t len = sizeof(clockinfo);
103 int retval;
105 retval = sysctlbyname("kern.clockrate", &clockinfo, &len, NULL, 0);
106 if (retval)
107 return(retval);
109 *hz = clockinfo.ci_hz;
110 return(0);
114 kinfo_get_sched_stathz(int *stathz)
116 struct kinfo_clockinfo clockinfo;
117 size_t len = sizeof(clockinfo);
118 int retval;
120 retval = sysctlbyname("kern.clockrate", &clockinfo, &len, NULL, 0);
121 if (retval)
122 return(retval);
124 *stathz = clockinfo.ci_stathz;
125 return(0);
129 kinfo_get_sched_profhz(int *profhz)
131 struct kinfo_clockinfo clockinfo;
132 size_t len = sizeof(clockinfo);
133 int retval;
135 retval = sysctlbyname("kern.clockrate", &clockinfo, &len, NULL, 0);
136 if (retval)
137 return(retval);
139 *profhz = clockinfo.ci_profhz;
140 return(0);