ficl-sys is not wsdiff clean
[unleashed.git] / include / sys / cpucaps.h
blob6063ff4380907afcd3470675005b6d7bf5f20486
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
23 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #ifndef _SYS_CPUCAPS_H
28 #define _SYS_CPUCAPS_H
30 #pragma ident "%Z%%M% %I% %E% SMI"
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
36 #include <sys/types.h>
37 #include <sys/zone.h>
38 #include <sys/project.h>
39 #include <sys/time.h>
40 #include <sys/rctl.h>
43 * CPU caps provide an absolute hard CPU usage limit which is enforced even if
44 * some CPUs are idle. It can be enforced at project or zone level.
47 #ifdef _KERNEL
50 * Valid caps values go from 1 to MAXCAP - 1. Specifying the MAXCAP as the cap
51 * value is equivalent to disabling the cap.
53 #define MAXCAP UINT_MAX
56 * cpucaps_enabled is used to quickly check whether any CPU caps specific code
57 * should be invoked. Users outside CPU Caps framework should use CPUCAPS_ON()
58 * and CPUCAPS_OFF() macros.
60 extern boolean_t cpucaps_enabled;
62 #define CPUCAPS_ON() cpucaps_enabled
63 #define CPUCAPS_OFF() (!cpucaps_enabled)
66 * Initialize the CPU caps framework.
68 extern void cpucaps_init(void);
71 * Notify caps framework of a new project coming in or existing project
72 * going away
74 extern void cpucaps_project_add(kproject_t *);
75 extern void cpucaps_project_remove(kproject_t *);
78 * Notify caps framework when a zone is going away.
80 extern void cpucaps_zone_remove(zone_t *);
83 * Set project/zone cap to specified value. Value of MAXCAP should disable caps.
85 extern int cpucaps_project_set(kproject_t *, rctl_qty_t);
86 extern int cpucaps_zone_set(zone_t *, rctl_qty_t);
89 * Get current CPU usage for a project/zone.
91 extern rctl_qty_t cpucaps_project_get(kproject_t *);
92 extern rctl_qty_t cpucaps_zone_get(zone_t *);
95 * Scheduling class hooks into CPU caps framework.
99 * CPU caps specific data for each scheduling class.
101 * There is a small amount of accounting data that should be kept by each
102 * scheduling class for each thread which is only used by CPU caps code. This
103 * data is kept in the caps_sc structure which is transparent for all scheduling
104 * classes. The fields in the structure are:
106 * csc_cputime - Total time spent on CPU during thread lifetime, obtained
107 * as the sum of user, system and trap time, reported by
108 * microstate accounting.
110 typedef struct caps_sc {
111 hrtime_t csc_cputime;
112 } caps_sc_t;
115 * Initialize per-thread cpu-caps specific data.
117 extern void cpucaps_sc_init(caps_sc_t *);
120 * Modus operandi for cpucaps_charge() function.
122 * CPUCAPS_CHARGE_ENFORCE - charge a thread for its CPU time and
123 * flag it to be placed on wait queue.
125 * CPUCAPS_CHARGE_ONLY - charge a thread for its CPU time.
127 typedef enum {
128 CPUCAPS_CHARGE_ENFORCE,
129 CPUCAPS_CHARGE_ONLY
130 } cpucaps_charge_t;
133 * Add accumulated CPU usage of a thread to its cap.
134 * Return True if thread should be placed on waitq.
136 extern boolean_t cpucaps_charge(kthread_t *, caps_sc_t *, cpucaps_charge_t);
137 #define CPUCAPS_CHARGE(t, scp, flag) \
138 (CPUCAPS_ON() && cpucaps_charge(t, scp, flag))
141 * Request a thread to be placed on a wait queue because the cap is exceeded
143 extern boolean_t cpucaps_enforce(kthread_t *);
144 #define CPUCAPS_ENFORCE(t) (CPUCAPS_ON() && cpucaps_enforce(t))
147 * CPU Caps hook into clock().
149 extern void (*cpucaps_clock_callout)(void);
151 #endif /* _KERNEL */
153 #ifdef __cplusplus
155 #endif
157 #endif /* _SYS_CPUCAPS_H */