summaryrefslogtreecommitdiffstats
path: root/sys/kern/p1003_1b.c
diff options
context:
space:
mode:
authordillon <dillon@FreeBSD.org>2001-08-31 22:34:40 +0000
committerdillon <dillon@FreeBSD.org>2001-08-31 22:34:40 +0000
commitf780a2b2eacef877d7e7d9364d5b96eeb7660888 (patch)
tree39859eebbd58b064a46f9590b303951fbea0b27d /sys/kern/p1003_1b.c
parentd8271492790573410676f7937e6b1029d890b51d (diff)
downloadFreeBSD-src-f780a2b2eacef877d7e7d9364d5b96eeb7660888.zip
FreeBSD-src-f780a2b2eacef877d7e7d9364d5b96eeb7660888.tar.gz
Make various posix4 system calls MPSAFE (will fixup syscalls.master later)
sched_setparam() sched_getparam() sched_setscheduler() sched_getscheduler() sched_yield() sched_get_priority_max() sched_get_priority_min() sched_rr_get_interval()
Diffstat (limited to 'sys/kern/p1003_1b.c')
-rw-r--r--sys/kern/p1003_1b.c137
1 files changed, 95 insertions, 42 deletions
diff --git a/sys/kern/p1003_1b.c b/sys/kern/p1003_1b.c
index 1c356e3..4e43b22 100644
--- a/sys/kern/p1003_1b.c
+++ b/sys/kern/p1003_1b.c
@@ -102,36 +102,46 @@ static int sched_attach(void)
return ret;
}
+/*
+ * MPSAFE
+ */
int sched_setparam(struct proc *p,
struct sched_setparam_args *uap)
{
struct proc *targetp;
int e;
-
struct sched_param sched_param;
+
e = copyin(uap->param, &sched_param, sizeof(sched_param));
if (e)
return (e);
+ mtx_lock(&Giant);
if (uap->pid == 0) {
targetp = p;
PROC_LOCK(targetp);
} else {
targetp = pfind(uap->pid);
- if (targetp == NULL)
- return (ESRCH);
+ if (targetp == NULL) {
+ e = ESRCH;
+ goto done2;
+ }
}
e = p_cansched(p, targetp);
PROC_UNLOCK(targetp);
- if (e)
- return (e);
-
- e = ksched_setparam(&p->p_retval[0], ksched, targetp,
- (const struct sched_param *)&sched_param);
+ if (e == 0) {
+ e = ksched_setparam(&p->p_retval[0], ksched, targetp,
+ (const struct sched_param *)&sched_param);
+ }
+done2:
+ mtx_unlock(&Giant);
return (e);
}
+/*
+ * MPSAFE
+ */
int sched_getparam(struct proc *p,
struct sched_getparam_args *uap)
{
@@ -139,27 +149,33 @@ int sched_getparam(struct proc *p,
struct sched_param sched_param;
struct proc *targetp;
+ mtx_lock(&Giant);
if (uap->pid == 0) {
targetp = p;
PROC_LOCK(targetp);
} else {
targetp = pfind(uap->pid);
- if (targetp == NULL)
- return (ESRCH);
+ if (targetp == NULL) {
+ e = ESRCH;
+ goto done2;
+ }
}
e = p_cansee(p, targetp);
PROC_UNLOCK(targetp);
if (e)
- return (e);
+ goto done2;
e = ksched_getparam(&p->p_retval[0], ksched, targetp, &sched_param);
- if (e)
- return (e);
-
- e = copyout(&sched_param, uap->param, sizeof(sched_param));
+ if (e == 0)
+ e = copyout(&sched_param, uap->param, sizeof(sched_param));
+done2:
+ mtx_unlock(&Giant);
return (e);
}
+/*
+ * MPSAFE
+ */
int sched_setscheduler(struct proc *p,
struct sched_setscheduler_args *uap)
{
@@ -171,89 +187,126 @@ int sched_setscheduler(struct proc *p,
if (e)
return (e);
+ mtx_lock(&Giant);
if (uap->pid == 0) {
targetp = p;
PROC_LOCK(targetp);
} else {
targetp = pfind(uap->pid);
- if (targetp == NULL)
- return (ESRCH);
+ if (targetp == NULL) {
+ e = ESRCH;
+ goto done2;
+ }
}
e = p_cansched(p, targetp);
PROC_UNLOCK(targetp);
- if (e)
- return (e);
-
- e = ksched_setscheduler(&p->p_retval[0], ksched, targetp, uap->policy,
- (const struct sched_param *)&sched_param);
-
+ if (e == 0) {
+ e = ksched_setscheduler(&p->p_retval[0], ksched,
+ targetp, uap->policy,
+ (const struct sched_param *)&sched_param);
+ }
+done2:
+ mtx_unlock(&Giant);
return (e);
}
+/*
+ * MPSAFE
+ */
int sched_getscheduler(struct proc *p,
struct sched_getscheduler_args *uap)
{
int e;
struct proc *targetp;
+ mtx_lock(&Giant);
if (uap->pid == 0) {
targetp = p;
PROC_LOCK(targetp);
} else {
targetp = pfind(uap->pid);
- if (targetp == NULL)
- return (ESRCH);
+ if (targetp == NULL) {
+ e = ESRCH;
+ goto done2;
+ }
}
e = p_cansee(p, targetp);
PROC_UNLOCK(targetp);
- if (e)
- return (e);
-
- e = ksched_getscheduler(&p->p_retval[0], ksched, targetp);
+ if (e == 0)
+ e = ksched_getscheduler(&p->p_retval[0], ksched, targetp);
+done2:
+ mtx_unlock(&Giant);
return (e);
}
+/*
+ * MPSAFE
+ */
int sched_yield(struct proc *p,
struct sched_yield_args *uap)
{
- return ksched_yield(&p->p_retval[0], ksched);
+ int error;
+
+ mtx_lock(&Giant);
+ error = ksched_yield(&p->p_retval[0], ksched);
+ mtx_unlock(&Giant);
+ return (error);
}
+/*
+ * MPSAFE
+ */
int sched_get_priority_max(struct proc *p,
struct sched_get_priority_max_args *uap)
{
- return ksched_get_priority_max(&p->p_retval[0],
- ksched, uap->policy);
+ int error;
+
+ mtx_lock(&Giant);
+ error = ksched_get_priority_max(&p->p_retval[0], ksched, uap->policy);
+ mtx_unlock(&Giant);
+ return (error);
}
+/*
+ * MPSAFE
+ */
int sched_get_priority_min(struct proc *p,
struct sched_get_priority_min_args *uap)
{
- return ksched_get_priority_min(&p->p_retval[0],
- ksched, uap->policy);
+ int error;
+ mtx_lock(&Giant);
+ error = ksched_get_priority_min(&p->p_retval[0], ksched, uap->policy);
+ mtx_unlock(&Giant);
+ return (error);
}
+/*
+ * MPSAFE
+ */
int sched_rr_get_interval(struct proc *p,
struct sched_rr_get_interval_args *uap)
{
int e;
struct proc *targetp;
+ mtx_lock(&Giant);
if (uap->pid == 0) {
targetp = p;
PROC_LOCK(targetp);
} else {
targetp = pfind(uap->pid);
- if (targetp == NULL)
- return (ESRCH);
+ if (targetp == NULL) {
+ e = ESRCH;
+ goto done2;
+ }
}
e = p_cansee(p, targetp);
PROC_UNLOCK(targetp);
- if (e)
- return (e);
-
- e = ksched_rr_get_interval(&p->p_retval[0], ksched, targetp,
- uap->interval);
-
+ if (e == 0) {
+ e = ksched_rr_get_interval(&p->p_retval[0], ksched, targetp,
+ uap->interval);
+ }
+done2:
+ mtx_unlock(&Giant);
return (e);
}
OpenPOWER on IntegriCloud