2 * Copyright (c) 2012 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com> and Thomas Nikolajsen
6 * <thomas.nikolajsen@mail.dk>
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in
16 * the documentation and/or other materials provided with the
18 * 3. Neither the name of The DragonFly Project nor the names of its
19 * contributors may be used to endorse or promote products derived
20 * from this software without specific, prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include <sys/types.h>
37 #include <sys/usched.h>
38 #include <machine/cpumask.h>
44 static void usage(void);
49 main(int ac
, char **av
)
55 char *sched_cpustr
= NULL
;
59 pid_t pid
= getpid(); /* See usched_set(2) - BUGS */
61 CPUMASK_ASSZERO(cpumask
);
63 while ((ch
= getopt(ac
, av
, "d")) != -1) {
80 sched_cpustr
= strdup(av
[0]);
81 sched
= strsep(&sched_cpustr
, ":");
82 if (strcmp(sched
, "default") == 0)
83 fprintf(stderr
, "Ignoring scheduler == \"default\": not implemented\n");
84 cpustr
= strsep(&sched_cpustr
, "");
85 if (strlen(sched
) == 0 && cpustr
== NULL
) {
91 * XXX needs expanded support for > 64 cpus
96 v
= (uint64_t)strtoull(cpustr
, NULL
, 0);
97 for (cpuid
= 0; cpuid
< (int)sizeof(v
) * 8; ++cpuid
) {
98 if (v
& (1LU << cpuid
))
99 CPUMASK_ORBIT(cpumask
, cpuid
);
103 if (strlen(sched
) != 0) {
105 fprintf(stderr
, "DEBUG: USCHED_SET_SCHEDULER: scheduler: %s\n", sched
);
106 res
= usched_set(pid
, USCHED_SET_SCHEDULER
, sched
, strlen(sched
));
108 asprintf(&p
, "usched_set(%d, USCHED_SET_SCHEDULER, \"%s\", %d)",
109 pid
, sched
, (int)strlen(sched
));
114 if (CPUMASK_TESTNZERO(cpumask
)) {
115 for (cpuid
= 0; cpuid
< (int)sizeof(cpumask
) * 8; ++cpuid
) {
116 if (CPUMASK_TESTBIT(cpumask
, cpuid
))
120 fprintf(stderr
, "DEBUG: USCHED_SET_CPU: cpuid: %d\n",
123 res
= usched_set(pid
, USCHED_SET_CPU
, &cpuid
, sizeof(int));
125 asprintf(&p
, "usched_set(%d, USCHED_SET_CPU, &%d, %d)",
126 pid
, cpuid
, (int)sizeof(int));
130 CPUMASK_NANDBIT(cpumask
, cpuid
);
131 while (CPUMASK_TESTNZERO(cpumask
)) {
133 if (CPUMASK_TESTBIT(cpumask
, cpuid
) == 0)
135 CPUMASK_NANDBIT(cpumask
, cpuid
);
138 "DEBUG: USCHED_ADD_CPU: cpuid: %d\n",
141 res
= usched_set(pid
, USCHED_ADD_CPU
, &cpuid
, sizeof(int));
143 asprintf(&p
, "usched_set(%d, USCHED_ADD_CPU, &%d, %d)",
144 pid
, cpuid
, (int)sizeof(int));
150 execvp(av
[1], av
+ 1);
159 "usage: usched [-d] {scheduler[:cpumask] | :cpumask} "
160 "program [argument ...]\n");