Ignore machine-check MSRs
[freebsd-src/fkvm-freebsd.git] / sys / kern / ksched.c
blob192034fec9cd21ac11e32c24fcd0f9cdbf96e2e2
1 /*-
2 * Copyright (c) 1996, 1997
3 * HD Associates, Inc. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by HD Associates, Inc
16 * 4. Neither the name of the author nor the names of any co-contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY HD ASSOCIATES AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL HD ASSOCIATES OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
33 /* ksched: Soft real time scheduling based on "rtprio".
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
39 #include "opt_posix.h"
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/lock.h>
44 #include <sys/mutex.h>
45 #include <sys/proc.h>
46 #include <sys/posix4.h>
47 #include <sys/resource.h>
48 #include <sys/sched.h>
50 /* ksched: Real-time extension to support POSIX priority scheduling.
53 struct ksched {
54 struct timespec rr_interval;
57 int
58 ksched_attach(struct ksched **p)
60 struct ksched *ksched= p31b_malloc(sizeof(*ksched));
62 ksched->rr_interval.tv_sec = 0;
63 ksched->rr_interval.tv_nsec = 1000000000L / sched_rr_interval();
65 *p = ksched;
66 return 0;
69 int
70 ksched_detach(struct ksched *ks)
72 p31b_free(ks);
74 return 0;
78 * XXX About priorities
80 * POSIX 1003.1b requires that numerically higher priorities be of
81 * higher priority. It also permits sched_setparam to be
82 * implementation defined for SCHED_OTHER. I don't like
83 * the notion of inverted priorites for normal processes when
84 * you can use "setpriority" for that.
86 * I'm rejecting sched_setparam for SCHED_OTHER with EINVAL.
89 /* Macros to convert between the unix (lower numerically is higher priority)
90 * and POSIX 1003.1b (higher numerically is higher priority)
93 #define p4prio_to_rtpprio(P) (RTP_PRIO_MAX - (P))
94 #define rtpprio_to_p4prio(P) (RTP_PRIO_MAX - (P))
96 /* These improve readability a bit for me:
98 #define P1B_PRIO_MIN rtpprio_to_p4prio(RTP_PRIO_MAX)
99 #define P1B_PRIO_MAX rtpprio_to_p4prio(RTP_PRIO_MIN)
101 static __inline int
102 getscheduler(struct ksched *ksched, struct thread *td, int *policy)
104 struct rtprio rtp;
105 int e = 0;
107 pri_to_rtp(td, &rtp);
108 switch (rtp.type)
110 case RTP_PRIO_FIFO:
111 *policy = SCHED_FIFO;
112 break;
114 case RTP_PRIO_REALTIME:
115 *policy = SCHED_RR;
116 break;
118 default:
119 *policy = SCHED_OTHER;
120 break;
123 return e;
127 ksched_setparam(struct ksched *ksched,
128 struct thread *td, const struct sched_param *param)
130 int policy;
131 int e;
133 e = getscheduler(ksched, td, &policy);
135 if (e == 0)
137 if (policy == SCHED_OTHER)
138 e = EINVAL;
139 else
140 e = ksched_setscheduler(ksched, td, policy, param);
143 return e;
147 ksched_getparam(struct ksched *ksched,
148 struct thread *td, struct sched_param *param)
150 struct rtprio rtp;
152 pri_to_rtp(td, &rtp);
153 if (RTP_PRIO_IS_REALTIME(rtp.type))
154 param->sched_priority = rtpprio_to_p4prio(rtp.prio);
156 return 0;
160 * XXX The priority and scheduler modifications should
161 * be moved into published interfaces in kern/kern_sync.
163 * The permissions to modify process p were checked in "p31b_proc()".
167 ksched_setscheduler(struct ksched *ksched,
168 struct thread *td, int policy, const struct sched_param *param)
170 int e = 0;
171 struct rtprio rtp;
173 switch(policy)
175 case SCHED_RR:
176 case SCHED_FIFO:
178 if (param->sched_priority >= P1B_PRIO_MIN &&
179 param->sched_priority <= P1B_PRIO_MAX)
181 rtp.prio = p4prio_to_rtpprio(param->sched_priority);
182 rtp.type = (policy == SCHED_FIFO)
183 ? RTP_PRIO_FIFO : RTP_PRIO_REALTIME;
185 rtp_to_pri(&rtp, td);
187 else
188 e = EPERM;
191 break;
193 case SCHED_OTHER:
195 rtp.type = RTP_PRIO_NORMAL;
196 rtp.prio = p4prio_to_rtpprio(param->sched_priority);
197 rtp_to_pri(&rtp, td);
199 break;
201 default:
202 e = EINVAL;
203 break;
206 return e;
210 ksched_getscheduler(struct ksched *ksched, struct thread *td, int *policy)
212 return getscheduler(ksched, td, policy);
215 /* ksched_yield: Yield the CPU.
218 ksched_yield(struct ksched *ksched)
220 sched_relinquish(curthread);
221 return 0;
225 ksched_get_priority_max(struct ksched *ksched, int policy, int *prio)
227 int e = 0;
229 switch (policy)
231 case SCHED_FIFO:
232 case SCHED_RR:
233 *prio = RTP_PRIO_MAX;
234 break;
236 case SCHED_OTHER:
237 *prio = PRI_MAX_TIMESHARE - PRI_MIN_TIMESHARE;
238 break;
240 default:
241 e = EINVAL;
244 return e;
248 ksched_get_priority_min(struct ksched *ksched, int policy, int *prio)
250 int e = 0;
252 switch (policy)
254 case SCHED_FIFO:
255 case SCHED_RR:
256 *prio = P1B_PRIO_MIN;
257 break;
259 case SCHED_OTHER:
260 *prio = 0;
261 break;
263 default:
264 e = EINVAL;
267 return e;
271 ksched_rr_get_interval(struct ksched *ksched,
272 struct thread *td, struct timespec *timespec)
274 *timespec = ksched->rr_interval;
276 return 0;