summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_idle.c
blob: 1a95e2856af8fa3e2cc26604ddc9f47c262f1d13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*-
 * Copyright (c) 2000, All rights reserved.  See /usr/src/COPYRIGHT
 *
 * $FreeBSD$
 */

#include "opt_ktrace.h"

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/proc.h>
#include <sys/kernel.h>
#include <sys/ktr.h>
#include <sys/signalvar.h>
#include <sys/resourcevar.h>
#include <sys/vmmeter.h>
#include <sys/sysctl.h>
#include <sys/unistd.h>
#include <sys/kthread.h>
#include <sys/queue.h>
#include <sys/eventhandler.h>
#include <vm/vm.h>
#include <vm/vm_extern.h>
#ifdef KTRACE
#include <sys/uio.h>
#include <sys/ktrace.h>
#endif

#include <machine/cpu.h>
#include <machine/ipl.h>
#include <machine/mutex.h>
#include <machine/smp.h>

#include <machine/globaldata.h>
#include <machine/globals.h>

#ifdef SMP_DEBUG
#include <sys/bus.h>
#include <i386/isa/icu.h>
#include <i386/isa/intr_machdep.h>
#endif

static void idle_setup(void *dummy);
SYSINIT(idle_setup, SI_SUB_SCHED_IDLE, SI_ORDER_FIRST, idle_setup, NULL)

static void idle_proc(void *dummy);

EVENTHANDLER_FAST_DEFINE(idle_event, idle_eventhandler_t);

/*
 * setup per-cpu idle process contexts
 */
static void
idle_setup(void *dummy)
{
	struct globaldata *gd;
	int error;

	SLIST_FOREACH(gd, &cpuhead, gd_allcpu) {
#ifdef SMP
		error = kthread_create(idle_proc, NULL, &gd->gd_idleproc,
				       RFSTOPPED|RFHIGHPID, "idle: cpu%d",
				       gd->gd_cpuid);
#else
		error = kthread_create(idle_proc, NULL, &gd->gd_idleproc,
				       RFSTOPPED|RFHIGHPID, "idle");
#endif
		if (error)
			panic("idle_setup: kthread_create error %d\n", error);

		gd->gd_idleproc->p_flag |= P_NOLOAD;
		gd->gd_idleproc->p_stat = SRUN;
	}
}

/*
 * idle process context
 */
static void
idle_proc(void *dummy)
{
	int count;

	for (;;) {
		mtx_assert(&Giant, MA_NOTOWNED);

		count = 0;

		while (count >= 0 && procrunnable() == 0) {
		/*
		 * This is a good place to put things to be done in
		 * the background, including sanity checks.
		 */

			if (count++ < 0)
				CTR0(KTR_PROC, "idle_proc: timed out waiting"
				    " for a process");

			/* call out to any cpu-becoming-idle events */
			EVENTHANDLER_FAST_INVOKE(idle_event, count);
		}

		mtx_enter(&sched_lock, MTX_SPIN);
		mi_switch();
		mtx_exit(&sched_lock, MTX_SPIN);
		spl0();
	}
}
OpenPOWER on IntegriCloud