[BACK]Return to csf.9 CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / share / man / man9

File: [cvs.NetBSD.org] / src / share / man / man9 / csf.9 (download)

Revision 1.4, Wed Apr 30 13:10:58 2008 UTC (15 years, 11 months ago) by martin
Branch: MAIN
CVS Tags: yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, wrstuden-revivesa, netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, netbsd-5, mjf-devfs2-base, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, hpcarm-cleanup-nbase
Branch point for: jym-xensuspend
Changes since 1.3: +1 -8 lines

Convert TNF licenses to new 2 clause variant

.\"     $NetBSD: csf.9,v 1.4 2008/04/30 13:10:58 martin Exp $
.\"
.\" Copyright (c) 2002 The NetBSD Foundation, Inc.
.\" All rights reserved.
.\"
.\" This code is derived from software contributed to The NetBSD Foundation
.\" by Daniel Sieger.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
.\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
.\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
.\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
.\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
.\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
.\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
.\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
.\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
.Dd July 14, 2007
.Dt CSF 9
.Os
.Sh NAME
.Nm CSF
.Nd The
.Nx
common scheduler framework
.Sh SYNOPSIS
.In sys/sched.h
.Ft void
.Fn sched_rqinit "void"
.Ft void
.Fn sched_setup "void"
.Ft void
.Fn sched_cpuattach "struct cpu_info *"
.Ft void
.Fn sched_tick "struct cpu_info *"
.Ft void
.Fn sched_schedclock "lwp_t *"
.Ft bool
.Fn sched_curcpu_runnable_p "void"
.Ft lwp_t *
.Fn sched_nextlwp "void"
.Ft void
.Fn sched_enqueue "lwp_t *" "bool"
.Ft void
.Fn sched_dequeue "lwp_t *"
.Ft void
.Fn sched_nice "struct proc *" "int"
.Ft void
.Fn sched_proc_fork "struct proc *" "struct proc *"
.Ft void
.Fn sched_proc_exit "struct proc *" "struct proc *"
.Ft void
.Fn sched_lwp_fork "lwp_t *"
.Ft void
.Fn sched_lwp_exit "lwp_t *"
.Ft void
.Fn sched_setrunnable "lwp_t *"
.Ft void
.Fn sched_print_runqueue "void (*pr)(const char *, ...)"
.Ft void
.Fn sched_pstats_hook "struct proc *" "int"
.Ft void
.Fn sched_pstats "void *arg"
.Ft pri_t
.Fn sched_kpri "lwp_t *"
.Ft void
.Fn resched_cpu "lwp_t *"
.Ft void
.Fn setrunnable
.Ft void
.Fn schedclock "lwp_t *"
.Ft void
.Fn sched_init "void"
.Sh DESCRIPTION
.Nm
provides a modular and self-contained interface for
implementing different thread scheduling algorithms.
The different schedulers can be selected at compile-time.
Currently, the only scheduler available is
.Xr sched_4bsd 9 ,
the traditional 4.4BSD thread scheduler.
.Pp
The interface is divided into two parts: A set of functions each
scheduler needs to implement and common functions used by all
schedulers.
.Sh Scheduler-specific functions
The following functions have to be implemented by the individual
scheduler.
.Ss Scheduler initialization
.Bl -tag
.It Ft void Fn sched_cpuattach "struct cpu_info *"
Per-CPU scheduler initialization routine.
.It Ft void Fn sched_rqinit "void"
Initialize the scheduler's runqueue data structures.
.It Ft void Fn sched_setup "void"
Setup initial scheduling parameters and kick off timeout driven
events.
.El
.Ss Runqueue handling
Runqueue handling is completely internal to the scheduler.
Other parts of the kernel should access runqueues only through the
following functions:
.Bl -tag
.It Ft void Fn sched_enqueue "lwp_t *" "bool"
Place an LWP within the scheduler's runqueue structures.
.It Ft void Fn sched_dequeue "lwp_t *"
Remove an LWP from the scheduler's runqueue structures.
.It Ft lwp_t * Fn sched_nextlwp "void"
Return the LWP that should run the CPU next.
.It Ft bool Fn sched_curcpu_runnable_p "void"
Indicate if there is a runnable LWP for the current CPU.
.It Ft void Fn sched_print_runqueue "void (*pr)(const char *, ...)"
Print runqueues in DDB.
.El
.Ss Core scheduler functions
.Bl -tag
.It Ft void Fn sched_tick "struct cpu_info *"
Periodically called from
.Xr hardclock 9 .
Determines if a reschedule is necessary, if the running LWP has
used up its quantum.
.It Ft void Fn sched_schedclock "lwp_t *"
Periodically called from
.Fn schedclock
in order to handle priority adjustment.
.El
.Ss Priority adjustment
.Bl -tag
.It Ft void Fn sched_nice "struct proc *, int"
Recalculate the process priority according to its nice value.
.El
.Ss General helper functions
.Bl -tag
.It Ft void Fn sched_proc_fork "struct proc *" "struct proc *"
Inherit the scheduling history of the parent process after
.Fn fork .
.It Ft void Fn sched_proc_exit "struct proc *" "struct proc *"
Charge back a processes parent for its resource usage.
.It Ft void Fn sched_lwp_fork "lwp_t *"
LWP-specific version of the above
.It Ft void Fn sched_lwp_exit "lwp_t *"
LWP-specific version of the above
.It Ft void Fn sched_setrunnable "lwp_t *"
Scheduler-specific actions for
.Fn setrunnable .
.It Ft void Fn sched_pstats_hook "struct proc *" "int"
Scheduler-specific actions for
.Fn sched_pstats .
.El
.Sh Common scheduler functions
.Bl -tag
.It Ft pri_t Fn sched_kpri "lwp_t *"
Scale a priority level to a kernel priority level, usually for an LWP
that is about to sleep.
.It Ft void Fn sched_pstats "void *"
Update process statistics and check CPU resource allocation.
.It Ft inline void Fn resched_cpu "lwp_t *"
Arrange for a reschedule.
.It Ft void Fn setrunnable "lwp_t *"
Change process state to be runnable, placing it on a runqueue if it
is in memory, awakening the swapper otherwise.
.It Ft void Fn schedclock "lwp_t *"
Scheduler clock.
Periodically called from
.Fn statclock .
.It Ft void Fn sched_init "void"
Initialize callout for
.Fn sched_pstats
and call
.Fn sched_setup
to initialize any other scheduler-specific data.
.El
.Sh CODE REFERENCES
This section describes places within the
.Nx
source tree where actual code implementing the scheduler can be found.
All pathnames are relative to
.Pa /usr/src .
.Pp
The
.Nm
programming interface is defined within the file
.Pa sys/sys/sched.h .
.Pp
Functions common to all scheduler implementations are in
.Pa sys/kern/kern_synch.c .
.Pp
The traditional 4.4BSD scheduler is implemented in
.Pa sys/kern/sched_4bsd.c .
.Sh SEE ALSO
.Xr mi_switch 9 ,
.Xr preempt 9 ,
.Xr sched_4bsd 9
.Sh HISTORY
The
.Nm
appeared in
.Nx 5.0 .
.Sh AUTHORS
The
.Nm
was written by
.An Daniel Sieger
.Aq dsieger@NetBSD.org .