2003-01-26 05:23:15 +00:00
|
|
|
/*-
|
2003-04-11 03:47:14 +00:00
|
|
|
* Copyright (c) 2002-2003, Jeffrey Roberson <jeff@freebsd.org>
|
2003-01-26 05:23:15 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 unmodified, 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 AUTHOR ``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 AUTHOR 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.
|
|
|
|
*/
|
|
|
|
|
2003-06-11 00:56:59 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2003-01-26 05:23:15 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/ktr.h>
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#include <sys/mutex.h>
|
|
|
|
#include <sys/proc.h>
|
2003-04-02 06:46:43 +00:00
|
|
|
#include <sys/resource.h>
|
2003-11-04 07:45:41 +00:00
|
|
|
#include <sys/resourcevar.h>
|
2003-01-26 05:23:15 +00:00
|
|
|
#include <sys/sched.h>
|
|
|
|
#include <sys/smp.h>
|
|
|
|
#include <sys/sx.h>
|
|
|
|
#include <sys/sysctl.h>
|
|
|
|
#include <sys/sysproto.h>
|
|
|
|
#include <sys/vmmeter.h>
|
|
|
|
#ifdef DDB
|
|
|
|
#include <ddb/ddb.h>
|
|
|
|
#endif
|
|
|
|
#ifdef KTRACE
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <sys/ktrace.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <machine/cpu.h>
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#include <machine/smp.h>
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
#define KTR_ULE KTR_NFS
|
|
|
|
|
2003-01-26 05:23:15 +00:00
|
|
|
/* decay 95% of `p_pctcpu' in 60 seconds; see CCPU_SHIFT before changing */
|
|
|
|
/* XXX This is bogus compatability crap for ps */
|
|
|
|
static fixpt_t ccpu = 0.95122942450071400909 * FSCALE; /* exp(-1/20) */
|
|
|
|
SYSCTL_INT(_kern, OID_AUTO, ccpu, CTLFLAG_RD, &ccpu, 0, "");
|
|
|
|
|
|
|
|
static void sched_setup(void *dummy);
|
|
|
|
SYSINIT(sched_setup, SI_SUB_RUN_QUEUE, SI_ORDER_FIRST, sched_setup, NULL)
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
static SYSCTL_NODE(_kern, OID_AUTO, sched, CTLFLAG_RW, 0, "SCHED");
|
|
|
|
|
|
|
|
static int sched_strict;
|
|
|
|
SYSCTL_INT(_kern_sched, OID_AUTO, strict, CTLFLAG_RD, &sched_strict, 0, "");
|
2003-03-04 02:45:59 +00:00
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
static int slice_min = 1;
|
|
|
|
SYSCTL_INT(_kern_sched, OID_AUTO, slice_min, CTLFLAG_RW, &slice_min, 0, "");
|
|
|
|
|
2003-06-15 02:18:29 +00:00
|
|
|
static int slice_max = 10;
|
2003-04-11 03:47:14 +00:00
|
|
|
SYSCTL_INT(_kern_sched, OID_AUTO, slice_max, CTLFLAG_RW, &slice_max, 0, "");
|
|
|
|
|
|
|
|
int realstathz;
|
|
|
|
int tickincr = 1;
|
2003-02-10 14:11:23 +00:00
|
|
|
|
2003-06-09 00:39:09 +00:00
|
|
|
#ifdef SMP
|
|
|
|
/* Callout to handle load balancing SMP systems. */
|
|
|
|
static struct callout kseq_lb_callout;
|
|
|
|
#endif
|
|
|
|
|
2003-01-26 05:23:15 +00:00
|
|
|
/*
|
|
|
|
* These datastructures are allocated within their parent datastructure but
|
|
|
|
* are scheduler specific.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct ke_sched {
|
|
|
|
int ske_slice;
|
|
|
|
struct runq *ske_runq;
|
|
|
|
/* The following variables are only used for pctcpu calculation */
|
|
|
|
int ske_ltick; /* Last tick that we were running on */
|
|
|
|
int ske_ftick; /* First tick that we were running on */
|
|
|
|
int ske_ticks; /* Tick count */
|
2003-04-11 03:47:14 +00:00
|
|
|
/* CPU that we have affinity for. */
|
2003-02-03 02:26:28 +00:00
|
|
|
u_char ske_cpu;
|
2003-01-26 05:23:15 +00:00
|
|
|
};
|
|
|
|
#define ke_slice ke_sched->ske_slice
|
|
|
|
#define ke_runq ke_sched->ske_runq
|
|
|
|
#define ke_ltick ke_sched->ske_ltick
|
|
|
|
#define ke_ftick ke_sched->ske_ftick
|
|
|
|
#define ke_ticks ke_sched->ske_ticks
|
2003-02-03 02:26:28 +00:00
|
|
|
#define ke_cpu ke_sched->ske_cpu
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#define ke_assign ke_procq.tqe_next
|
|
|
|
|
|
|
|
#define KEF_ASSIGNED KEF_SCHED0 /* KSE is being migrated. */
|
2003-11-06 03:09:51 +00:00
|
|
|
#define KEF_BOUND KEF_SCHED1 /* KSE can not migrate. */
|
2003-01-26 05:23:15 +00:00
|
|
|
|
|
|
|
struct kg_sched {
|
2003-02-10 14:03:45 +00:00
|
|
|
int skg_slptime; /* Number of ticks we vol. slept */
|
|
|
|
int skg_runtime; /* Number of ticks we were running */
|
2003-01-26 05:23:15 +00:00
|
|
|
};
|
|
|
|
#define kg_slptime kg_sched->skg_slptime
|
2003-02-10 14:03:45 +00:00
|
|
|
#define kg_runtime kg_sched->skg_runtime
|
2003-01-26 05:23:15 +00:00
|
|
|
|
|
|
|
struct td_sched {
|
|
|
|
int std_slptime;
|
|
|
|
};
|
|
|
|
#define td_slptime td_sched->std_slptime
|
|
|
|
|
2003-02-03 05:30:07 +00:00
|
|
|
struct td_sched td_sched;
|
2003-01-26 05:23:15 +00:00
|
|
|
struct ke_sched ke_sched;
|
|
|
|
struct kg_sched kg_sched;
|
|
|
|
|
|
|
|
struct ke_sched *kse0_sched = &ke_sched;
|
|
|
|
struct kg_sched *ksegrp0_sched = &kg_sched;
|
|
|
|
struct p_sched *proc0_sched = NULL;
|
|
|
|
struct td_sched *thread0_sched = &td_sched;
|
|
|
|
|
|
|
|
/*
|
2003-06-21 02:22:47 +00:00
|
|
|
* The priority is primarily determined by the interactivity score. Thus, we
|
|
|
|
* give lower(better) priorities to kse groups that use less CPU. The nice
|
|
|
|
* value is then directly added to this to allow nice to have some effect
|
|
|
|
* on latency.
|
2003-03-04 02:45:59 +00:00
|
|
|
*
|
|
|
|
* PRI_RANGE: Total priority range for timeshare threads.
|
2003-06-21 02:22:47 +00:00
|
|
|
* PRI_NRESV: Number of nice values.
|
2003-03-04 02:45:59 +00:00
|
|
|
* PRI_BASE: The start of the dynamic range.
|
2003-01-26 05:23:15 +00:00
|
|
|
*/
|
2003-03-04 02:45:59 +00:00
|
|
|
#define SCHED_PRI_RANGE (PRI_MAX_TIMESHARE - PRI_MIN_TIMESHARE + 1)
|
2003-11-02 03:49:32 +00:00
|
|
|
#define SCHED_PRI_NRESV ((PRIO_MAX - PRIO_MIN) + 1)
|
|
|
|
#define SCHED_PRI_NHALF (SCHED_PRI_NRESV / 2)
|
2003-06-21 02:22:47 +00:00
|
|
|
#define SCHED_PRI_BASE (PRI_MIN_TIMESHARE)
|
2003-04-11 03:47:14 +00:00
|
|
|
#define SCHED_PRI_INTERACT(score) \
|
2003-06-21 02:22:47 +00:00
|
|
|
((score) * SCHED_PRI_RANGE / SCHED_INTERACT_MAX)
|
2003-01-26 05:23:15 +00:00
|
|
|
|
|
|
|
/*
|
2003-03-04 02:45:59 +00:00
|
|
|
* These determine the interactivity of a process.
|
2003-01-26 05:23:15 +00:00
|
|
|
*
|
2003-02-10 14:03:45 +00:00
|
|
|
* SLP_RUN_MAX: Maximum amount of sleep time + run time we'll accumulate
|
|
|
|
* before throttling back.
|
2003-11-02 03:36:33 +00:00
|
|
|
* SLP_RUN_FORK: Maximum slp+run time to inherit at fork time.
|
2003-06-15 02:18:29 +00:00
|
|
|
* INTERACT_MAX: Maximum interactivity value. Smaller is better.
|
2003-03-04 02:45:59 +00:00
|
|
|
* INTERACT_THRESH: Threshhold for placement on the current runq.
|
2003-01-26 05:23:15 +00:00
|
|
|
*/
|
2003-10-16 08:17:43 +00:00
|
|
|
#define SCHED_SLP_RUN_MAX ((hz * 5) << 10)
|
2003-11-02 03:36:33 +00:00
|
|
|
#define SCHED_SLP_RUN_FORK ((hz / 2) << 10)
|
2003-06-15 02:18:29 +00:00
|
|
|
#define SCHED_INTERACT_MAX (100)
|
|
|
|
#define SCHED_INTERACT_HALF (SCHED_INTERACT_MAX / 2)
|
2003-10-16 08:17:43 +00:00
|
|
|
#define SCHED_INTERACT_THRESH (30)
|
2003-03-04 02:45:59 +00:00
|
|
|
|
2003-01-26 05:23:15 +00:00
|
|
|
/*
|
|
|
|
* These parameters and macros determine the size of the time slice that is
|
|
|
|
* granted to each thread.
|
|
|
|
*
|
|
|
|
* SLICE_MIN: Minimum time slice granted, in units of ticks.
|
|
|
|
* SLICE_MAX: Maximum time slice granted.
|
|
|
|
* SLICE_RANGE: Range of available time slices scaled by hz.
|
2003-04-02 06:46:43 +00:00
|
|
|
* SLICE_SCALE: The number slices granted per val in the range of [0, max].
|
|
|
|
* SLICE_NICE: Determine the amount of slice granted to a scaled nice.
|
2003-11-02 04:10:15 +00:00
|
|
|
* SLICE_NTHRESH: The nice cutoff point for slice assignment.
|
2003-01-26 05:23:15 +00:00
|
|
|
*/
|
2003-04-11 03:47:14 +00:00
|
|
|
#define SCHED_SLICE_MIN (slice_min)
|
|
|
|
#define SCHED_SLICE_MAX (slice_max)
|
2003-11-02 04:10:15 +00:00
|
|
|
#define SCHED_SLICE_NTHRESH (SCHED_PRI_NHALF - 1)
|
2003-03-04 02:45:59 +00:00
|
|
|
#define SCHED_SLICE_RANGE (SCHED_SLICE_MAX - SCHED_SLICE_MIN + 1)
|
2003-01-26 05:23:15 +00:00
|
|
|
#define SCHED_SLICE_SCALE(val, max) (((val) * SCHED_SLICE_RANGE) / (max))
|
2003-04-02 06:46:43 +00:00
|
|
|
#define SCHED_SLICE_NICE(nice) \
|
2003-11-02 04:10:15 +00:00
|
|
|
(SCHED_SLICE_MAX - SCHED_SLICE_SCALE((nice), SCHED_SLICE_NTHRESH))
|
2003-01-26 05:23:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This macro determines whether or not the kse belongs on the current or
|
|
|
|
* next run queue.
|
|
|
|
*/
|
2003-04-11 03:47:14 +00:00
|
|
|
#define SCHED_INTERACTIVE(kg) \
|
|
|
|
(sched_interact_score(kg) < SCHED_INTERACT_THRESH)
|
2003-04-12 22:33:24 +00:00
|
|
|
#define SCHED_CURR(kg, ke) \
|
2003-10-15 07:47:06 +00:00
|
|
|
(ke->ke_thread->td_priority != kg->kg_user_pri || \
|
|
|
|
SCHED_INTERACTIVE(kg))
|
2003-01-26 05:23:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Cpu percentage computation macros and defines.
|
|
|
|
*
|
|
|
|
* SCHED_CPU_TIME: Number of seconds to average the cpu usage across.
|
|
|
|
* SCHED_CPU_TICKS: Number of hz ticks to average the cpu usage across.
|
|
|
|
*/
|
|
|
|
|
2003-04-02 08:22:33 +00:00
|
|
|
#define SCHED_CPU_TIME 10
|
2003-01-26 05:23:15 +00:00
|
|
|
#define SCHED_CPU_TICKS (hz * SCHED_CPU_TIME)
|
|
|
|
|
|
|
|
/*
|
2003-04-11 03:47:14 +00:00
|
|
|
* kseq - per processor runqs and statistics.
|
2003-01-26 05:23:15 +00:00
|
|
|
*/
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
#define KSEQ_NCLASS (PRI_IDLE + 1) /* Number of run classes. */
|
|
|
|
|
2003-01-26 05:23:15 +00:00
|
|
|
struct kseq {
|
2003-04-11 03:47:14 +00:00
|
|
|
struct runq ksq_idle; /* Queue of IDLE threads. */
|
|
|
|
struct runq ksq_timeshare[2]; /* Run queues for !IDLE. */
|
|
|
|
struct runq *ksq_next; /* Next timeshare queue. */
|
|
|
|
struct runq *ksq_curr; /* Current queue. */
|
2003-11-02 10:56:48 +00:00
|
|
|
int ksq_load_timeshare; /* Load for timeshare. */
|
2003-04-11 03:47:14 +00:00
|
|
|
int ksq_load; /* Aggregate load. */
|
2003-11-02 03:49:32 +00:00
|
|
|
short ksq_nice[SCHED_PRI_NRESV]; /* KSEs in each nice bin. */
|
2003-04-11 03:47:14 +00:00
|
|
|
short ksq_nicemin; /* Least nice. */
|
2003-02-03 05:30:07 +00:00
|
|
|
#ifdef SMP
|
2003-11-02 10:56:48 +00:00
|
|
|
int ksq_load_transferable; /* kses that may be migrated. */
|
2003-11-03 03:27:22 +00:00
|
|
|
int ksq_idled;
|
2003-02-03 05:30:07 +00:00
|
|
|
unsigned int ksq_rslices; /* Slices on run queue */
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
int ksq_cpus; /* Count of CPUs in this kseq. */
|
|
|
|
struct kse *ksq_assigned; /* KSEs assigned by another CPU. */
|
2003-02-03 05:30:07 +00:00
|
|
|
#endif
|
2003-01-26 05:23:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* One kse queue per processor.
|
|
|
|
*/
|
2003-01-29 07:00:51 +00:00
|
|
|
#ifdef SMP
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
static int kseq_idle;
|
|
|
|
static struct kseq kseq_cpu[MAXCPU];
|
|
|
|
static struct kseq *kseq_idmap[MAXCPU];
|
2003-07-04 19:59:00 +00:00
|
|
|
#define KSEQ_SELF() (kseq_idmap[PCPU_GET(cpuid)])
|
|
|
|
#define KSEQ_CPU(x) (kseq_idmap[(x)])
|
2003-01-29 07:00:51 +00:00
|
|
|
#else
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
static struct kseq kseq_cpu;
|
2003-01-29 07:00:51 +00:00
|
|
|
#define KSEQ_SELF() (&kseq_cpu)
|
|
|
|
#define KSEQ_CPU(x) (&kseq_cpu)
|
|
|
|
#endif
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-04-02 06:46:43 +00:00
|
|
|
static void sched_slice(struct kse *ke);
|
2003-04-11 03:47:14 +00:00
|
|
|
static void sched_priority(struct ksegrp *kg);
|
2003-03-04 02:45:59 +00:00
|
|
|
static int sched_interact_score(struct ksegrp *kg);
|
2003-06-17 06:39:51 +00:00
|
|
|
static void sched_interact_update(struct ksegrp *kg);
|
2003-11-02 03:36:33 +00:00
|
|
|
static void sched_interact_fork(struct ksegrp *kg);
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
static void sched_pctcpu_update(struct kse *ke);
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-02-03 05:30:07 +00:00
|
|
|
/* Operations on per processor queues */
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
static struct kse * kseq_choose(struct kseq *kseq);
|
2003-01-29 07:00:51 +00:00
|
|
|
static void kseq_setup(struct kseq *kseq);
|
2003-04-03 00:29:28 +00:00
|
|
|
static void kseq_add(struct kseq *kseq, struct kse *ke);
|
2003-04-11 03:47:14 +00:00
|
|
|
static void kseq_rem(struct kseq *kseq, struct kse *ke);
|
|
|
|
static void kseq_nice_add(struct kseq *kseq, int nice);
|
|
|
|
static void kseq_nice_rem(struct kseq *kseq, int nice);
|
2003-04-18 05:24:10 +00:00
|
|
|
void kseq_print(int cpu);
|
2003-02-03 05:30:07 +00:00
|
|
|
#ifdef SMP
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#if 0
|
|
|
|
static int sched_pickcpu(void);
|
|
|
|
#endif
|
|
|
|
static struct kse *runq_steal(struct runq *rq);
|
|
|
|
static void kseq_balance(void *arg);
|
|
|
|
static void kseq_move(struct kseq *from, int cpu);
|
2003-11-03 03:27:22 +00:00
|
|
|
static __inline void kseq_setidle(struct kseq *kseq);
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
static void kseq_notify(struct kse *ke, int cpu);
|
|
|
|
static void kseq_assign(struct kseq *);
|
|
|
|
static struct kse *kseq_steal(struct kseq *kseq);
|
2003-11-04 07:45:41 +00:00
|
|
|
#define KSE_CAN_MIGRATE(ke, class) \
|
2003-11-06 03:09:51 +00:00
|
|
|
((class) != PRI_ITHD && (ke)->ke_thread->td_pinned == 0 && \
|
|
|
|
(ke)->ke_flags & KEF_BOUND) == 0)
|
2003-02-03 05:30:07 +00:00
|
|
|
#endif
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
void
|
2003-04-18 05:24:10 +00:00
|
|
|
kseq_print(int cpu)
|
2003-02-03 05:30:07 +00:00
|
|
|
{
|
2003-04-18 05:24:10 +00:00
|
|
|
struct kseq *kseq;
|
2003-04-11 03:47:14 +00:00
|
|
|
int i;
|
2003-04-03 00:29:28 +00:00
|
|
|
|
2003-04-18 05:24:10 +00:00
|
|
|
kseq = KSEQ_CPU(cpu);
|
2003-04-03 00:29:28 +00:00
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
printf("kseq:\n");
|
|
|
|
printf("\tload: %d\n", kseq->ksq_load);
|
2003-11-02 10:56:48 +00:00
|
|
|
printf("\tload REALTIME: %d\n", kseq->ksq_load_timeshare);
|
|
|
|
#ifdef SMP
|
|
|
|
printf("\tload transferable: %d\n", kseq->ksq_load_transferable);
|
|
|
|
#endif
|
2003-04-11 03:47:14 +00:00
|
|
|
printf("\tnicemin:\t%d\n", kseq->ksq_nicemin);
|
|
|
|
printf("\tnice counts:\n");
|
2003-11-02 03:49:32 +00:00
|
|
|
for (i = 0; i < SCHED_PRI_NRESV; i++)
|
2003-04-11 03:47:14 +00:00
|
|
|
if (kseq->ksq_nice[i])
|
|
|
|
printf("\t\t%d = %d\n",
|
|
|
|
i - SCHED_PRI_NHALF, kseq->ksq_nice[i]);
|
|
|
|
}
|
2003-04-03 00:29:28 +00:00
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
static void
|
|
|
|
kseq_add(struct kseq *kseq, struct kse *ke)
|
|
|
|
{
|
2003-11-02 10:56:48 +00:00
|
|
|
int class;
|
2003-06-08 00:47:33 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
2003-11-02 10:56:48 +00:00
|
|
|
class = PRI_BASE(ke->ke_ksegrp->kg_pri_class);
|
|
|
|
if (class == PRI_TIMESHARE)
|
|
|
|
kseq->ksq_load_timeshare++;
|
|
|
|
#ifdef SMP
|
|
|
|
if (KSE_CAN_MIGRATE(ke, class))
|
|
|
|
kseq->ksq_load_transferable++;
|
|
|
|
kseq->ksq_rslices += ke->ke_slice;
|
|
|
|
#endif
|
2003-04-11 03:47:14 +00:00
|
|
|
kseq->ksq_load++;
|
|
|
|
if (ke->ke_ksegrp->kg_pri_class == PRI_TIMESHARE)
|
|
|
|
CTR6(KTR_ULE, "Add kse %p to %p (slice: %d, pri: %d, nice: %d(%d))",
|
|
|
|
ke, ke->ke_runq, ke->ke_slice, ke->ke_thread->td_priority,
|
|
|
|
ke->ke_ksegrp->kg_nice, kseq->ksq_nicemin);
|
|
|
|
if (ke->ke_ksegrp->kg_pri_class == PRI_TIMESHARE)
|
|
|
|
kseq_nice_add(kseq, ke->ke_ksegrp->kg_nice);
|
2003-02-03 05:30:07 +00:00
|
|
|
}
|
2003-04-11 03:47:14 +00:00
|
|
|
|
2003-04-03 00:29:28 +00:00
|
|
|
static void
|
2003-02-03 05:30:07 +00:00
|
|
|
kseq_rem(struct kseq *kseq, struct kse *ke)
|
|
|
|
{
|
2003-11-02 10:56:48 +00:00
|
|
|
int class;
|
2003-06-08 00:47:33 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
2003-11-02 10:56:48 +00:00
|
|
|
class = PRI_BASE(ke->ke_ksegrp->kg_pri_class);
|
|
|
|
if (class == PRI_TIMESHARE)
|
|
|
|
kseq->ksq_load_timeshare--;
|
|
|
|
#ifdef SMP
|
|
|
|
if (KSE_CAN_MIGRATE(ke, class))
|
|
|
|
kseq->ksq_load_transferable--;
|
|
|
|
kseq->ksq_rslices -= ke->ke_slice;
|
|
|
|
#endif
|
2003-04-11 03:47:14 +00:00
|
|
|
kseq->ksq_load--;
|
|
|
|
ke->ke_runq = NULL;
|
|
|
|
if (ke->ke_ksegrp->kg_pri_class == PRI_TIMESHARE)
|
|
|
|
kseq_nice_rem(kseq, ke->ke_ksegrp->kg_nice);
|
2003-02-03 05:30:07 +00:00
|
|
|
}
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
static void
|
|
|
|
kseq_nice_add(struct kseq *kseq, int nice)
|
2003-02-03 05:30:07 +00:00
|
|
|
{
|
2003-06-08 00:47:33 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
2003-04-11 03:47:14 +00:00
|
|
|
/* Normalize to zero. */
|
|
|
|
kseq->ksq_nice[nice + SCHED_PRI_NHALF]++;
|
2003-11-02 10:56:48 +00:00
|
|
|
if (nice < kseq->ksq_nicemin || kseq->ksq_load_timeshare == 1)
|
2003-04-11 03:47:14 +00:00
|
|
|
kseq->ksq_nicemin = nice;
|
2003-02-03 05:30:07 +00:00
|
|
|
}
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
static void
|
|
|
|
kseq_nice_rem(struct kseq *kseq, int nice)
|
2003-02-03 05:30:07 +00:00
|
|
|
{
|
2003-04-11 03:47:14 +00:00
|
|
|
int n;
|
|
|
|
|
2003-06-08 00:47:33 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
2003-04-11 03:47:14 +00:00
|
|
|
/* Normalize to zero. */
|
|
|
|
n = nice + SCHED_PRI_NHALF;
|
|
|
|
kseq->ksq_nice[n]--;
|
|
|
|
KASSERT(kseq->ksq_nice[n] >= 0, ("Negative nice count."));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If this wasn't the smallest nice value or there are more in
|
|
|
|
* this bucket we can just return. Otherwise we have to recalculate
|
|
|
|
* the smallest nice.
|
|
|
|
*/
|
|
|
|
if (nice != kseq->ksq_nicemin ||
|
|
|
|
kseq->ksq_nice[n] != 0 ||
|
2003-11-02 10:56:48 +00:00
|
|
|
kseq->ksq_load_timeshare == 0)
|
2003-04-11 03:47:14 +00:00
|
|
|
return;
|
|
|
|
|
2003-11-02 03:49:32 +00:00
|
|
|
for (; n < SCHED_PRI_NRESV; n++)
|
2003-04-11 03:47:14 +00:00
|
|
|
if (kseq->ksq_nice[n]) {
|
|
|
|
kseq->ksq_nicemin = n - SCHED_PRI_NHALF;
|
|
|
|
return;
|
|
|
|
}
|
2003-02-03 05:30:07 +00:00
|
|
|
}
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
#ifdef SMP
|
2003-06-09 00:39:09 +00:00
|
|
|
/*
|
|
|
|
* kseq_balance is a simple CPU load balancing algorithm. It operates by
|
|
|
|
* finding the least loaded and most loaded cpu and equalizing their load
|
|
|
|
* by migrating some processes.
|
|
|
|
*
|
|
|
|
* Dealing only with two CPUs at a time has two advantages. Firstly, most
|
|
|
|
* installations will only have 2 cpus. Secondly, load balancing too much at
|
|
|
|
* once can have an unpleasant effect on the system. The scheduler rarely has
|
|
|
|
* enough information to make perfect decisions. So this algorithm chooses
|
|
|
|
* algorithm simplicity and more gradual effects on load in larger systems.
|
|
|
|
*
|
|
|
|
* It could be improved by considering the priorities and slices assigned to
|
|
|
|
* each task prior to balancing them. There are many pathological cases with
|
|
|
|
* any approach and so the semi random algorithm below may work as well as any.
|
|
|
|
*
|
|
|
|
*/
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
static void
|
2003-06-09 00:39:09 +00:00
|
|
|
kseq_balance(void *arg)
|
|
|
|
{
|
|
|
|
struct kseq *kseq;
|
|
|
|
int high_load;
|
|
|
|
int low_load;
|
|
|
|
int high_cpu;
|
|
|
|
int low_cpu;
|
|
|
|
int move;
|
|
|
|
int diff;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
high_cpu = 0;
|
|
|
|
low_cpu = 0;
|
|
|
|
high_load = 0;
|
|
|
|
low_load = -1;
|
|
|
|
|
|
|
|
mtx_lock_spin(&sched_lock);
|
2003-06-28 08:24:42 +00:00
|
|
|
if (smp_started == 0)
|
|
|
|
goto out;
|
|
|
|
|
2003-06-09 00:39:09 +00:00
|
|
|
for (i = 0; i < mp_maxid; i++) {
|
2003-06-28 09:09:33 +00:00
|
|
|
if (CPU_ABSENT(i) || (i & stopped_cpus) != 0)
|
2003-06-09 00:39:09 +00:00
|
|
|
continue;
|
|
|
|
kseq = KSEQ_CPU(i);
|
|
|
|
if (kseq->ksq_load > high_load) {
|
|
|
|
high_load = kseq->ksq_load;
|
|
|
|
high_cpu = i;
|
|
|
|
}
|
|
|
|
if (low_load == -1 || kseq->ksq_load < low_load) {
|
|
|
|
low_load = kseq->ksq_load;
|
|
|
|
low_cpu = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-04 19:59:00 +00:00
|
|
|
kseq = KSEQ_CPU(high_cpu);
|
|
|
|
|
2003-11-02 10:56:48 +00:00
|
|
|
high_load = kseq->ksq_load_transferable;
|
2003-06-09 00:39:09 +00:00
|
|
|
/*
|
|
|
|
* Nothing to do.
|
|
|
|
*/
|
2003-07-04 19:59:00 +00:00
|
|
|
if (high_load < kseq->ksq_cpus + 1)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
high_load -= kseq->ksq_cpus;
|
|
|
|
|
|
|
|
if (low_load >= high_load)
|
2003-06-09 00:39:09 +00:00
|
|
|
goto out;
|
|
|
|
|
|
|
|
diff = high_load - low_load;
|
|
|
|
move = diff / 2;
|
|
|
|
if (diff & 0x1)
|
|
|
|
move++;
|
|
|
|
|
|
|
|
for (i = 0; i < move; i++)
|
2003-07-04 19:59:00 +00:00
|
|
|
kseq_move(kseq, low_cpu);
|
2003-06-09 00:39:09 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
mtx_unlock_spin(&sched_lock);
|
|
|
|
callout_reset(&kseq_lb_callout, hz, kseq_balance, NULL);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
static void
|
2003-06-09 00:39:09 +00:00
|
|
|
kseq_move(struct kseq *from, int cpu)
|
|
|
|
{
|
|
|
|
struct kse *ke;
|
|
|
|
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
ke = kseq_steal(from);
|
2003-06-09 00:39:09 +00:00
|
|
|
runq_remove(ke->ke_runq, ke);
|
|
|
|
ke->ke_state = KES_THREAD;
|
|
|
|
kseq_rem(from, ke);
|
|
|
|
|
|
|
|
ke->ke_cpu = cpu;
|
2003-11-03 03:27:22 +00:00
|
|
|
kseq_notify(ke, cpu);
|
2003-06-09 00:39:09 +00:00
|
|
|
}
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
|
2003-11-03 03:27:22 +00:00
|
|
|
static __inline void
|
|
|
|
kseq_setidle(struct kseq *kseq)
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
{
|
2003-11-03 03:27:22 +00:00
|
|
|
if (kseq->ksq_idled)
|
|
|
|
return;
|
|
|
|
kseq->ksq_idled = 1;
|
|
|
|
atomic_set_int(&kseq_idle, PCPU_GET(cpumask));
|
|
|
|
return;
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
kseq_assign(struct kseq *kseq)
|
|
|
|
{
|
|
|
|
struct kse *nke;
|
|
|
|
struct kse *ke;
|
|
|
|
|
|
|
|
do {
|
|
|
|
ke = kseq->ksq_assigned;
|
|
|
|
} while(!atomic_cmpset_ptr(&kseq->ksq_assigned, ke, NULL));
|
|
|
|
for (; ke != NULL; ke = nke) {
|
|
|
|
nke = ke->ke_assign;
|
|
|
|
ke->ke_flags &= ~KEF_ASSIGNED;
|
|
|
|
sched_add(ke->ke_thread);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
kseq_notify(struct kse *ke, int cpu)
|
|
|
|
{
|
|
|
|
struct kseq *kseq;
|
|
|
|
struct thread *td;
|
|
|
|
struct pcpu *pcpu;
|
|
|
|
|
|
|
|
ke->ke_flags |= KEF_ASSIGNED;
|
|
|
|
|
|
|
|
kseq = KSEQ_CPU(cpu);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Place a KSE on another cpu's queue and force a resched.
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
ke->ke_assign = kseq->ksq_assigned;
|
|
|
|
} while(!atomic_cmpset_ptr(&kseq->ksq_assigned, ke->ke_assign, ke));
|
|
|
|
pcpu = pcpu_find(cpu);
|
|
|
|
td = pcpu->pc_curthread;
|
|
|
|
if (ke->ke_thread->td_priority < td->td_priority ||
|
|
|
|
td == pcpu->pc_idlethread) {
|
|
|
|
td->td_flags |= TDF_NEEDRESCHED;
|
|
|
|
ipi_selected(1 << cpu, IPI_AST);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct kse *
|
|
|
|
runq_steal(struct runq *rq)
|
|
|
|
{
|
|
|
|
struct rqhead *rqh;
|
|
|
|
struct rqbits *rqb;
|
|
|
|
struct kse *ke;
|
|
|
|
int word;
|
|
|
|
int bit;
|
|
|
|
|
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
|
|
|
rqb = &rq->rq_status;
|
|
|
|
for (word = 0; word < RQB_LEN; word++) {
|
|
|
|
if (rqb->rqb_bits[word] == 0)
|
|
|
|
continue;
|
|
|
|
for (bit = 0; bit < RQB_BPW; bit++) {
|
|
|
|
if ((rqb->rqb_bits[word] & (1 << bit)) == 0)
|
|
|
|
continue;
|
|
|
|
rqh = &rq->rq_queues[bit + (word << RQB_L2BPW)];
|
|
|
|
TAILQ_FOREACH(ke, rqh, ke_procq) {
|
2003-11-02 10:56:48 +00:00
|
|
|
if (KSE_CAN_MIGRATE(ke,
|
|
|
|
PRI_BASE(ke->ke_ksegrp->kg_pri_class)))
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
return (ke);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct kse *
|
|
|
|
kseq_steal(struct kseq *kseq)
|
|
|
|
{
|
|
|
|
struct kse *ke;
|
|
|
|
|
|
|
|
if ((ke = runq_steal(kseq->ksq_curr)) != NULL)
|
|
|
|
return (ke);
|
|
|
|
if ((ke = runq_steal(kseq->ksq_next)) != NULL)
|
|
|
|
return (ke);
|
|
|
|
return (runq_steal(&kseq->ksq_idle));
|
|
|
|
}
|
|
|
|
#endif /* SMP */
|
2003-02-03 05:30:07 +00:00
|
|
|
|
2003-07-08 06:19:40 +00:00
|
|
|
/*
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
* Pick the highest priority task we have and return it.
|
2003-07-08 06:19:40 +00:00
|
|
|
*/
|
|
|
|
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
static struct kse *
|
|
|
|
kseq_choose(struct kseq *kseq)
|
2003-02-03 05:30:07 +00:00
|
|
|
{
|
|
|
|
struct kse *ke;
|
|
|
|
struct runq *swap;
|
|
|
|
|
2003-06-08 00:47:33 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
2003-04-11 03:47:14 +00:00
|
|
|
swap = NULL;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
ke = runq_choose(kseq->ksq_curr);
|
|
|
|
if (ke == NULL) {
|
|
|
|
/*
|
|
|
|
* We already swaped once and didn't get anywhere.
|
|
|
|
*/
|
|
|
|
if (swap)
|
|
|
|
break;
|
|
|
|
swap = kseq->ksq_curr;
|
|
|
|
kseq->ksq_curr = kseq->ksq_next;
|
|
|
|
kseq->ksq_next = swap;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If we encounter a slice of 0 the kse is in a
|
|
|
|
* TIMESHARE kse group and its nice was too far out
|
|
|
|
* of the range that receives slices.
|
|
|
|
*/
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
if (ke->ke_slice == 0) {
|
2003-04-11 03:47:14 +00:00
|
|
|
runq_remove(ke->ke_runq, ke);
|
|
|
|
sched_slice(ke);
|
|
|
|
ke->ke_runq = kseq->ksq_next;
|
|
|
|
runq_add(ke->ke_runq, ke);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return (ke);
|
2003-02-03 05:30:07 +00:00
|
|
|
}
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
return (runq_choose(&kseq->ksq_idle));
|
2003-04-02 06:46:43 +00:00
|
|
|
}
|
2003-01-29 07:00:51 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
kseq_setup(struct kseq *kseq)
|
|
|
|
{
|
2003-04-11 03:47:14 +00:00
|
|
|
runq_init(&kseq->ksq_timeshare[0]);
|
|
|
|
runq_init(&kseq->ksq_timeshare[1]);
|
2003-04-03 00:29:28 +00:00
|
|
|
runq_init(&kseq->ksq_idle);
|
2003-04-11 03:47:14 +00:00
|
|
|
kseq->ksq_curr = &kseq->ksq_timeshare[0];
|
|
|
|
kseq->ksq_next = &kseq->ksq_timeshare[1];
|
2003-04-18 05:24:10 +00:00
|
|
|
kseq->ksq_load = 0;
|
2003-11-02 10:56:48 +00:00
|
|
|
kseq->ksq_load_timeshare = 0;
|
2003-02-03 05:30:07 +00:00
|
|
|
#ifdef SMP
|
2003-11-02 10:56:48 +00:00
|
|
|
kseq->ksq_load_transferable = 0;
|
2003-02-03 05:30:07 +00:00
|
|
|
kseq->ksq_rslices = 0;
|
2003-11-03 03:27:22 +00:00
|
|
|
kseq->ksq_idled = 0;
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
kseq->ksq_assigned = NULL;
|
2003-02-03 05:30:07 +00:00
|
|
|
#endif
|
2003-01-29 07:00:51 +00:00
|
|
|
}
|
|
|
|
|
2003-01-26 05:23:15 +00:00
|
|
|
static void
|
|
|
|
sched_setup(void *dummy)
|
|
|
|
{
|
2003-07-07 21:08:28 +00:00
|
|
|
#ifdef SMP
|
2003-01-26 05:23:15 +00:00
|
|
|
int i;
|
2003-07-07 21:08:28 +00:00
|
|
|
#endif
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-06-28 06:04:47 +00:00
|
|
|
slice_min = (hz/100); /* 10ms */
|
|
|
|
slice_max = (hz/7); /* ~140ms */
|
2003-03-04 02:45:59 +00:00
|
|
|
|
2003-07-04 19:59:00 +00:00
|
|
|
#ifdef SMP
|
2003-01-26 05:23:15 +00:00
|
|
|
/* init kseqs */
|
2003-07-04 19:59:00 +00:00
|
|
|
/* Create the idmap. */
|
|
|
|
#ifdef ULE_HTT_EXPERIMENTAL
|
|
|
|
if (smp_topology == NULL) {
|
|
|
|
#else
|
|
|
|
if (1) {
|
|
|
|
#endif
|
|
|
|
for (i = 0; i < MAXCPU; i++) {
|
|
|
|
kseq_setup(&kseq_cpu[i]);
|
|
|
|
kseq_idmap[i] = &kseq_cpu[i];
|
|
|
|
kseq_cpu[i].ksq_cpus = 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
int j;
|
2003-04-11 03:47:14 +00:00
|
|
|
|
2003-07-04 19:59:00 +00:00
|
|
|
for (i = 0; i < smp_topology->ct_count; i++) {
|
|
|
|
struct cpu_group *cg;
|
|
|
|
|
|
|
|
cg = &smp_topology->ct_group[i];
|
|
|
|
kseq_setup(&kseq_cpu[i]);
|
|
|
|
|
|
|
|
for (j = 0; j < MAXCPU; j++)
|
|
|
|
if ((cg->cg_mask & (1 << j)) != 0)
|
|
|
|
kseq_idmap[j] = &kseq_cpu[i];
|
|
|
|
kseq_cpu[i].ksq_cpus = cg->cg_count;
|
|
|
|
}
|
|
|
|
}
|
2003-08-19 17:51:11 +00:00
|
|
|
callout_init(&kseq_lb_callout, CALLOUT_MPSAFE);
|
2003-06-09 00:39:09 +00:00
|
|
|
kseq_balance(NULL);
|
2003-07-04 19:59:00 +00:00
|
|
|
#else
|
|
|
|
kseq_setup(KSEQ_SELF());
|
2003-06-09 00:39:09 +00:00
|
|
|
#endif
|
2003-07-04 19:59:00 +00:00
|
|
|
mtx_lock_spin(&sched_lock);
|
|
|
|
kseq_add(KSEQ_SELF(), &kse0);
|
|
|
|
mtx_unlock_spin(&sched_lock);
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Scale the scheduling priority according to the "interactivity" of this
|
|
|
|
* process.
|
|
|
|
*/
|
2003-04-11 03:47:14 +00:00
|
|
|
static void
|
2003-01-26 05:23:15 +00:00
|
|
|
sched_priority(struct ksegrp *kg)
|
|
|
|
{
|
|
|
|
int pri;
|
|
|
|
|
|
|
|
if (kg->kg_pri_class != PRI_TIMESHARE)
|
2003-04-11 03:47:14 +00:00
|
|
|
return;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
pri = SCHED_PRI_INTERACT(sched_interact_score(kg));
|
2003-03-04 02:45:59 +00:00
|
|
|
pri += SCHED_PRI_BASE;
|
2003-01-26 05:23:15 +00:00
|
|
|
pri += kg->kg_nice;
|
|
|
|
|
|
|
|
if (pri > PRI_MAX_TIMESHARE)
|
|
|
|
pri = PRI_MAX_TIMESHARE;
|
|
|
|
else if (pri < PRI_MIN_TIMESHARE)
|
|
|
|
pri = PRI_MIN_TIMESHARE;
|
|
|
|
|
|
|
|
kg->kg_user_pri = pri;
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
return;
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2003-04-02 06:46:43 +00:00
|
|
|
* Calculate a time slice based on the properties of the kseg and the runq
|
2003-04-03 00:29:28 +00:00
|
|
|
* that we're on. This is only for PRI_TIMESHARE ksegrps.
|
2003-01-26 05:23:15 +00:00
|
|
|
*/
|
2003-04-02 06:46:43 +00:00
|
|
|
static void
|
|
|
|
sched_slice(struct kse *ke)
|
2003-01-26 05:23:15 +00:00
|
|
|
{
|
2003-04-11 03:47:14 +00:00
|
|
|
struct kseq *kseq;
|
2003-04-02 06:46:43 +00:00
|
|
|
struct ksegrp *kg;
|
|
|
|
|
|
|
|
kg = ke->ke_ksegrp;
|
2003-04-11 03:47:14 +00:00
|
|
|
kseq = KSEQ_CPU(ke->ke_cpu);
|
2003-04-02 06:46:43 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Rationale:
|
|
|
|
* KSEs in interactive ksegs get the minimum slice so that we
|
|
|
|
* quickly notice if it abuses its advantage.
|
|
|
|
*
|
|
|
|
* KSEs in non-interactive ksegs are assigned a slice that is
|
|
|
|
* based on the ksegs nice value relative to the least nice kseg
|
|
|
|
* on the run queue for this cpu.
|
|
|
|
*
|
|
|
|
* If the KSE is less nice than all others it gets the maximum
|
|
|
|
* slice and other KSEs will adjust their slice relative to
|
|
|
|
* this when they first expire.
|
|
|
|
*
|
|
|
|
* There is 20 point window that starts relative to the least
|
|
|
|
* nice kse on the run queue. Slice size is determined by
|
|
|
|
* the kse distance from the last nice ksegrp.
|
|
|
|
*
|
2003-11-02 04:10:15 +00:00
|
|
|
* If the kse is outside of the window it will get no slice
|
|
|
|
* and will be reevaluated each time it is selected on the
|
|
|
|
* run queue. The exception to this is nice 0 ksegs when
|
|
|
|
* a nice -20 is running. They are always granted a minimum
|
|
|
|
* slice.
|
2003-04-02 06:46:43 +00:00
|
|
|
*/
|
2003-04-11 03:47:14 +00:00
|
|
|
if (!SCHED_INTERACTIVE(kg)) {
|
2003-04-02 06:46:43 +00:00
|
|
|
int nice;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
nice = kg->kg_nice + (0 - kseq->ksq_nicemin);
|
2003-11-02 10:56:48 +00:00
|
|
|
if (kseq->ksq_load_timeshare == 0 ||
|
2003-04-11 03:47:14 +00:00
|
|
|
kg->kg_nice < kseq->ksq_nicemin)
|
2003-04-02 06:46:43 +00:00
|
|
|
ke->ke_slice = SCHED_SLICE_MAX;
|
2003-11-02 04:10:15 +00:00
|
|
|
else if (nice <= SCHED_SLICE_NTHRESH)
|
2003-04-02 06:46:43 +00:00
|
|
|
ke->ke_slice = SCHED_SLICE_NICE(nice);
|
2003-11-02 04:10:15 +00:00
|
|
|
else if (kg->kg_nice == 0)
|
|
|
|
ke->ke_slice = SCHED_SLICE_MIN;
|
2003-04-02 06:46:43 +00:00
|
|
|
else
|
|
|
|
ke->ke_slice = 0;
|
|
|
|
} else
|
|
|
|
ke->ke_slice = SCHED_SLICE_MIN;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
CTR6(KTR_ULE,
|
|
|
|
"Sliced %p(%d) (nice: %d, nicemin: %d, load: %d, interactive: %d)",
|
|
|
|
ke, ke->ke_slice, kg->kg_nice, kseq->ksq_nicemin,
|
2003-11-02 10:56:48 +00:00
|
|
|
kseq->ksq_load_timeshare, SCHED_INTERACTIVE(kg));
|
2003-04-11 03:47:14 +00:00
|
|
|
|
2003-04-02 06:46:43 +00:00
|
|
|
return;
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
2003-11-02 03:36:33 +00:00
|
|
|
/*
|
|
|
|
* This routine enforces a maximum limit on the amount of scheduling history
|
|
|
|
* kept. It is called after either the slptime or runtime is adjusted.
|
|
|
|
* This routine will not operate correctly when slp or run times have been
|
|
|
|
* adjusted to more than double their maximum.
|
|
|
|
*/
|
2003-06-17 06:39:51 +00:00
|
|
|
static void
|
|
|
|
sched_interact_update(struct ksegrp *kg)
|
|
|
|
{
|
2003-11-02 03:36:33 +00:00
|
|
|
int sum;
|
|
|
|
|
|
|
|
sum = kg->kg_runtime + kg->kg_slptime;
|
|
|
|
if (sum < SCHED_SLP_RUN_MAX)
|
|
|
|
return;
|
|
|
|
/*
|
|
|
|
* If we have exceeded by more than 1/5th then the algorithm below
|
|
|
|
* will not bring us back into range. Dividing by two here forces
|
|
|
|
* us into the range of [3/5 * SCHED_INTERACT_MAX, SCHED_INTERACT_MAX]
|
|
|
|
*/
|
|
|
|
if (sum > (SCHED_INTERACT_MAX / 5) * 6) {
|
|
|
|
kg->kg_runtime /= 2;
|
|
|
|
kg->kg_slptime /= 2;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
kg->kg_runtime = (kg->kg_runtime / 5) * 4;
|
|
|
|
kg->kg_slptime = (kg->kg_slptime / 5) * 4;
|
|
|
|
}
|
2003-10-27 06:47:05 +00:00
|
|
|
|
2003-11-02 03:36:33 +00:00
|
|
|
static void
|
|
|
|
sched_interact_fork(struct ksegrp *kg)
|
|
|
|
{
|
|
|
|
int ratio;
|
|
|
|
int sum;
|
|
|
|
|
|
|
|
sum = kg->kg_runtime + kg->kg_slptime;
|
|
|
|
if (sum > SCHED_SLP_RUN_FORK) {
|
|
|
|
ratio = sum / SCHED_SLP_RUN_FORK;
|
|
|
|
kg->kg_runtime /= ratio;
|
|
|
|
kg->kg_slptime /= ratio;
|
2003-06-17 06:39:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-03-04 02:45:59 +00:00
|
|
|
static int
|
|
|
|
sched_interact_score(struct ksegrp *kg)
|
|
|
|
{
|
2003-06-15 02:18:29 +00:00
|
|
|
int div;
|
2003-03-04 02:45:59 +00:00
|
|
|
|
|
|
|
if (kg->kg_runtime > kg->kg_slptime) {
|
2003-06-15 02:18:29 +00:00
|
|
|
div = max(1, kg->kg_runtime / SCHED_INTERACT_HALF);
|
|
|
|
return (SCHED_INTERACT_HALF +
|
|
|
|
(SCHED_INTERACT_HALF - (kg->kg_slptime / div)));
|
|
|
|
} if (kg->kg_slptime > kg->kg_runtime) {
|
|
|
|
div = max(1, kg->kg_slptime / SCHED_INTERACT_HALF);
|
|
|
|
return (kg->kg_runtime / div);
|
2003-03-04 02:45:59 +00:00
|
|
|
}
|
|
|
|
|
2003-06-15 02:18:29 +00:00
|
|
|
/*
|
|
|
|
* This can happen if slptime and runtime are 0.
|
|
|
|
*/
|
|
|
|
return (0);
|
2003-03-04 02:45:59 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
/*
|
|
|
|
* This is only somewhat accurate since given many processes of the same
|
|
|
|
* priority they will switch when their slices run out, which will be
|
|
|
|
* at most SCHED_SLICE_MAX.
|
|
|
|
*/
|
2003-01-26 05:23:15 +00:00
|
|
|
int
|
|
|
|
sched_rr_interval(void)
|
|
|
|
{
|
|
|
|
return (SCHED_SLICE_MAX);
|
|
|
|
}
|
|
|
|
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
static void
|
2003-01-26 05:23:15 +00:00
|
|
|
sched_pctcpu_update(struct kse *ke)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Adjust counters and watermark for pctcpu calc.
|
2003-06-15 02:18:29 +00:00
|
|
|
*/
|
2003-09-20 02:05:58 +00:00
|
|
|
if (ke->ke_ltick > ticks - SCHED_CPU_TICKS) {
|
|
|
|
/*
|
|
|
|
* Shift the tick count out so that the divide doesn't
|
|
|
|
* round away our results.
|
|
|
|
*/
|
|
|
|
ke->ke_ticks <<= 10;
|
|
|
|
ke->ke_ticks = (ke->ke_ticks / (ticks - ke->ke_ftick)) *
|
|
|
|
SCHED_CPU_TICKS;
|
|
|
|
ke->ke_ticks >>= 10;
|
|
|
|
} else
|
|
|
|
ke->ke_ticks = 0;
|
2003-01-26 05:23:15 +00:00
|
|
|
ke->ke_ltick = ticks;
|
|
|
|
ke->ke_ftick = ke->ke_ltick - SCHED_CPU_TICKS;
|
|
|
|
}
|
|
|
|
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#if 0
|
2003-02-03 05:30:07 +00:00
|
|
|
/* XXX Should be changed to kseq_load_lowest() */
|
2003-01-26 05:23:15 +00:00
|
|
|
int
|
|
|
|
sched_pickcpu(void)
|
|
|
|
{
|
2003-01-29 07:00:51 +00:00
|
|
|
struct kseq *kseq;
|
2003-01-26 05:23:15 +00:00
|
|
|
int load;
|
2003-01-29 07:00:51 +00:00
|
|
|
int cpu;
|
2003-01-26 05:23:15 +00:00
|
|
|
int i;
|
|
|
|
|
2003-06-08 00:47:33 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
2003-01-26 05:23:15 +00:00
|
|
|
if (!smp_started)
|
|
|
|
return (0);
|
|
|
|
|
2003-01-29 07:00:51 +00:00
|
|
|
load = 0;
|
|
|
|
cpu = 0;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
|
|
|
for (i = 0; i < mp_maxid; i++) {
|
2003-06-28 09:09:33 +00:00
|
|
|
if (CPU_ABSENT(i) || (i & stopped_cpus) != 0)
|
2003-01-26 05:23:15 +00:00
|
|
|
continue;
|
2003-01-29 07:00:51 +00:00
|
|
|
kseq = KSEQ_CPU(i);
|
2003-04-11 03:47:14 +00:00
|
|
|
if (kseq->ksq_load < load) {
|
2003-01-26 05:23:15 +00:00
|
|
|
cpu = i;
|
2003-04-11 03:47:14 +00:00
|
|
|
load = kseq->ksq_load;
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-02 03:36:33 +00:00
|
|
|
CTR1(KTR_ULE, "sched_pickcpu: %d", cpu);
|
2003-01-26 05:23:15 +00:00
|
|
|
return (cpu);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_prio(struct thread *td, u_char prio)
|
|
|
|
{
|
2003-10-27 06:47:05 +00:00
|
|
|
struct kse *ke;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-10-27 06:47:05 +00:00
|
|
|
ke = td->td_kse;
|
2003-01-26 05:23:15 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
|
|
|
if (TD_ON_RUNQ(td)) {
|
2003-10-27 06:47:05 +00:00
|
|
|
/*
|
|
|
|
* If the priority has been elevated due to priority
|
|
|
|
* propagation, we may have to move ourselves to a new
|
|
|
|
* queue. We still call adjustrunqueue below in case kse
|
|
|
|
* needs to fix things up.
|
|
|
|
*/
|
2003-11-02 04:25:59 +00:00
|
|
|
if (prio < td->td_priority && ke &&
|
|
|
|
(ke->ke_flags & KEF_ASSIGNED) == 0 &&
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
ke->ke_runq != KSEQ_CPU(ke->ke_cpu)->ksq_curr) {
|
2003-10-27 06:47:05 +00:00
|
|
|
runq_remove(ke->ke_runq, ke);
|
|
|
|
ke->ke_runq = KSEQ_CPU(ke->ke_cpu)->ksq_curr;
|
|
|
|
runq_add(ke->ke_runq, ke);
|
|
|
|
}
|
2003-08-26 11:33:15 +00:00
|
|
|
adjustrunqueue(td, prio);
|
2003-10-27 06:47:05 +00:00
|
|
|
} else
|
2003-08-26 11:33:15 +00:00
|
|
|
td->td_priority = prio;
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-10-16 08:53:46 +00:00
|
|
|
sched_switch(struct thread *td)
|
2003-01-26 05:23:15 +00:00
|
|
|
{
|
2003-10-16 08:53:46 +00:00
|
|
|
struct thread *newtd;
|
2003-01-26 05:23:15 +00:00
|
|
|
struct kse *ke;
|
|
|
|
|
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
|
|
|
|
|
|
|
ke = td->td_kse;
|
|
|
|
|
|
|
|
td->td_last_kse = ke;
|
2003-04-10 17:35:44 +00:00
|
|
|
td->td_lastcpu = td->td_oncpu;
|
|
|
|
td->td_oncpu = NOCPU;
|
2003-02-17 09:55:10 +00:00
|
|
|
td->td_flags &= ~TDF_NEEDRESCHED;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
|
|
|
if (TD_IS_RUNNING(td)) {
|
2003-08-26 11:33:15 +00:00
|
|
|
if (td->td_proc->p_flag & P_SA) {
|
|
|
|
kseq_rem(KSEQ_CPU(ke->ke_cpu), ke);
|
|
|
|
setrunqueue(td);
|
|
|
|
} else {
|
|
|
|
/*
|
2003-10-27 06:47:05 +00:00
|
|
|
* This queue is always correct except for idle threads
|
|
|
|
* which have a higher priority due to priority
|
|
|
|
* propagation.
|
2003-08-26 11:33:15 +00:00
|
|
|
*/
|
2003-10-27 06:47:05 +00:00
|
|
|
if (ke->ke_ksegrp->kg_pri_class == PRI_IDLE) {
|
|
|
|
if (td->td_priority < PRI_MIN_IDLE)
|
|
|
|
ke->ke_runq = KSEQ_SELF()->ksq_curr;
|
|
|
|
else
|
|
|
|
ke->ke_runq = &KSEQ_SELF()->ksq_idle;
|
|
|
|
}
|
2003-08-26 11:33:15 +00:00
|
|
|
runq_add(ke->ke_runq, ke);
|
|
|
|
/* setrunqueue(td); */
|
|
|
|
}
|
2003-10-16 20:32:57 +00:00
|
|
|
} else {
|
|
|
|
if (ke->ke_runq)
|
|
|
|
kseq_rem(KSEQ_CPU(ke->ke_cpu), ke);
|
|
|
|
/*
|
|
|
|
* We will not be on the run queue. So we must be
|
|
|
|
* sleeping or similar.
|
|
|
|
*/
|
|
|
|
if (td->td_proc->p_flag & P_SA)
|
|
|
|
kse_reassign(ke);
|
|
|
|
}
|
2003-10-16 08:53:46 +00:00
|
|
|
newtd = choosethread();
|
|
|
|
if (td != newtd)
|
|
|
|
cpu_switch(td, newtd);
|
|
|
|
sched_lock.mtx_lock = (uintptr_t)td;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-04-10 17:35:44 +00:00
|
|
|
td->td_oncpu = PCPU_GET(cpuid);
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_nice(struct ksegrp *kg, int nice)
|
|
|
|
{
|
2003-04-11 03:47:14 +00:00
|
|
|
struct kse *ke;
|
2003-01-26 05:23:15 +00:00
|
|
|
struct thread *td;
|
2003-04-11 03:47:14 +00:00
|
|
|
struct kseq *kseq;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-04-22 20:50:38 +00:00
|
|
|
PROC_LOCK_ASSERT(kg->kg_proc, MA_OWNED);
|
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
2003-04-11 03:47:14 +00:00
|
|
|
/*
|
|
|
|
* We need to adjust the nice counts for running KSEs.
|
|
|
|
*/
|
|
|
|
if (kg->kg_pri_class == PRI_TIMESHARE)
|
|
|
|
FOREACH_KSE_IN_GROUP(kg, ke) {
|
2003-06-17 19:49:18 +00:00
|
|
|
if (ke->ke_runq == NULL)
|
2003-04-11 03:47:14 +00:00
|
|
|
continue;
|
|
|
|
kseq = KSEQ_CPU(ke->ke_cpu);
|
|
|
|
kseq_nice_rem(kseq, kg->kg_nice);
|
|
|
|
kseq_nice_add(kseq, nice);
|
|
|
|
}
|
2003-01-26 05:23:15 +00:00
|
|
|
kg->kg_nice = nice;
|
|
|
|
sched_priority(kg);
|
2003-04-11 03:47:14 +00:00
|
|
|
FOREACH_THREAD_IN_GROUP(kg, td)
|
2003-02-17 09:55:10 +00:00
|
|
|
td->td_flags |= TDF_NEEDRESCHED;
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_sleep(struct thread *td, u_char prio)
|
|
|
|
{
|
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
|
|
|
|
|
|
|
td->td_slptime = ticks;
|
|
|
|
td->td_priority = prio;
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
CTR2(KTR_ULE, "sleep kse %p (tick: %d)",
|
|
|
|
td->td_kse, td->td_slptime);
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_wakeup(struct thread *td)
|
|
|
|
{
|
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Let the kseg know how long we slept for. This is because process
|
|
|
|
* interactivity behavior is modeled in the kseg.
|
|
|
|
*/
|
|
|
|
if (td->td_slptime) {
|
2003-03-03 04:11:40 +00:00
|
|
|
struct ksegrp *kg;
|
2003-04-11 03:47:14 +00:00
|
|
|
int hzticks;
|
2003-03-03 04:11:40 +00:00
|
|
|
|
|
|
|
kg = td->td_ksegrp;
|
2003-11-02 03:36:33 +00:00
|
|
|
hzticks = (ticks - td->td_slptime) << 10;
|
|
|
|
if (hzticks >= SCHED_SLP_RUN_MAX) {
|
|
|
|
kg->kg_slptime = SCHED_SLP_RUN_MAX;
|
|
|
|
kg->kg_runtime = 1;
|
|
|
|
} else {
|
|
|
|
kg->kg_slptime += hzticks;
|
|
|
|
sched_interact_update(kg);
|
|
|
|
}
|
2003-03-03 04:11:40 +00:00
|
|
|
sched_priority(kg);
|
2003-06-17 06:39:51 +00:00
|
|
|
if (td->td_kse)
|
|
|
|
sched_slice(td->td_kse);
|
2003-04-11 03:47:14 +00:00
|
|
|
CTR2(KTR_ULE, "wakeup kse %p (%d ticks)",
|
|
|
|
td->td_kse, hzticks);
|
2003-03-03 04:11:40 +00:00
|
|
|
td->td_slptime = 0;
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
setrunqueue(td);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Penalize the parent for creating a new child and initialize the child's
|
|
|
|
* priority.
|
|
|
|
*/
|
|
|
|
void
|
2003-04-11 03:47:14 +00:00
|
|
|
sched_fork(struct proc *p, struct proc *p1)
|
2003-01-26 05:23:15 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
sched_fork_ksegrp(FIRST_KSEGRP_IN_PROC(p), FIRST_KSEGRP_IN_PROC(p1));
|
|
|
|
sched_fork_kse(FIRST_KSE_IN_PROC(p), FIRST_KSE_IN_PROC(p1));
|
|
|
|
sched_fork_thread(FIRST_THREAD_IN_PROC(p), FIRST_THREAD_IN_PROC(p1));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_fork_kse(struct kse *ke, struct kse *child)
|
|
|
|
{
|
2003-04-23 18:51:05 +00:00
|
|
|
|
2003-06-15 02:18:29 +00:00
|
|
|
child->ke_slice = 1; /* Attempt to quickly learn interactivity. */
|
2003-04-11 03:47:14 +00:00
|
|
|
child->ke_cpu = ke->ke_cpu; /* sched_pickcpu(); */
|
|
|
|
child->ke_runq = NULL;
|
|
|
|
|
2003-10-12 21:07:31 +00:00
|
|
|
/* Grab our parents cpu estimation information. */
|
|
|
|
child->ke_ticks = ke->ke_ticks;
|
|
|
|
child->ke_ltick = ke->ke_ltick;
|
|
|
|
child->ke_ftick = ke->ke_ftick;
|
2003-04-11 03:47:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_fork_ksegrp(struct ksegrp *kg, struct ksegrp *child)
|
|
|
|
{
|
2003-04-23 18:51:05 +00:00
|
|
|
PROC_LOCK_ASSERT(child->kg_proc, MA_OWNED);
|
2003-06-15 02:18:29 +00:00
|
|
|
|
2003-11-02 03:36:33 +00:00
|
|
|
child->kg_slptime = kg->kg_slptime;
|
|
|
|
child->kg_runtime = kg->kg_runtime;
|
|
|
|
child->kg_user_pri = kg->kg_user_pri;
|
|
|
|
child->kg_nice = kg->kg_nice;
|
|
|
|
sched_interact_fork(child);
|
2003-06-17 06:39:51 +00:00
|
|
|
kg->kg_runtime += tickincr << 10;
|
|
|
|
sched_interact_update(kg);
|
2003-04-11 03:47:14 +00:00
|
|
|
|
2003-11-02 03:36:33 +00:00
|
|
|
CTR6(KTR_ULE, "sched_fork_ksegrp: %d(%d, %d) - %d(%d, %d)",
|
|
|
|
kg->kg_proc->p_pid, kg->kg_slptime, kg->kg_runtime,
|
|
|
|
child->kg_proc->p_pid, child->kg_slptime, child->kg_runtime);
|
2003-04-11 03:47:14 +00:00
|
|
|
}
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
void
|
|
|
|
sched_fork_thread(struct thread *td, struct thread *child)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_class(struct ksegrp *kg, int class)
|
|
|
|
{
|
|
|
|
struct kseq *kseq;
|
|
|
|
struct kse *ke;
|
2003-11-02 10:56:48 +00:00
|
|
|
int nclass;
|
|
|
|
int oclass;
|
2003-04-11 03:47:14 +00:00
|
|
|
|
2003-04-23 18:51:05 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
2003-04-11 03:47:14 +00:00
|
|
|
if (kg->kg_pri_class == class)
|
|
|
|
return;
|
|
|
|
|
2003-11-02 10:56:48 +00:00
|
|
|
nclass = PRI_BASE(class);
|
|
|
|
oclass = PRI_BASE(kg->kg_pri_class);
|
2003-04-11 03:47:14 +00:00
|
|
|
FOREACH_KSE_IN_GROUP(kg, ke) {
|
|
|
|
if (ke->ke_state != KES_ONRUNQ &&
|
|
|
|
ke->ke_state != KES_THREAD)
|
|
|
|
continue;
|
|
|
|
kseq = KSEQ_CPU(ke->ke_cpu);
|
|
|
|
|
2003-11-02 10:56:48 +00:00
|
|
|
#ifdef SMP
|
|
|
|
if (KSE_CAN_MIGRATE(ke, oclass))
|
|
|
|
kseq->ksq_load_transferable--;
|
|
|
|
if (KSE_CAN_MIGRATE(ke, nclass))
|
|
|
|
kseq->ksq_load_transferable++;
|
|
|
|
#endif
|
|
|
|
if (oclass == PRI_TIMESHARE)
|
|
|
|
kseq->ksq_load_timeshare--;
|
|
|
|
if (nclass == PRI_TIMESHARE)
|
|
|
|
kseq->ksq_load_timeshare++;
|
2003-04-11 03:47:14 +00:00
|
|
|
|
|
|
|
if (kg->kg_pri_class == PRI_TIMESHARE)
|
|
|
|
kseq_nice_rem(kseq, kg->kg_nice);
|
|
|
|
else if (class == PRI_TIMESHARE)
|
|
|
|
kseq_nice_add(kseq, kg->kg_nice);
|
2003-01-28 09:28:20 +00:00
|
|
|
}
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
kg->kg_pri_class = class;
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return some of the child's priority and interactivity to the parent.
|
|
|
|
*/
|
|
|
|
void
|
2003-04-11 03:47:14 +00:00
|
|
|
sched_exit(struct proc *p, struct proc *child)
|
2003-01-26 05:23:15 +00:00
|
|
|
{
|
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
2003-04-11 19:24:00 +00:00
|
|
|
sched_exit_kse(FIRST_KSE_IN_PROC(p), FIRST_KSE_IN_PROC(child));
|
2003-06-15 02:18:29 +00:00
|
|
|
sched_exit_ksegrp(FIRST_KSEGRP_IN_PROC(p), FIRST_KSEGRP_IN_PROC(child));
|
2003-04-11 19:24:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_exit_kse(struct kse *ke, struct kse *child)
|
|
|
|
{
|
|
|
|
kseq_rem(KSEQ_CPU(child->ke_cpu), child);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_exit_ksegrp(struct ksegrp *kg, struct ksegrp *child)
|
|
|
|
{
|
2003-06-17 06:39:51 +00:00
|
|
|
/* kg->kg_slptime += child->kg_slptime; */
|
2003-06-15 02:18:29 +00:00
|
|
|
kg->kg_runtime += child->kg_runtime;
|
2003-06-17 06:39:51 +00:00
|
|
|
sched_interact_update(kg);
|
2003-04-11 19:24:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_exit_thread(struct thread *td, struct thread *child)
|
|
|
|
{
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-10-16 08:39:15 +00:00
|
|
|
sched_clock(struct thread *td)
|
2003-01-26 05:23:15 +00:00
|
|
|
{
|
|
|
|
struct kseq *kseq;
|
2003-01-29 07:00:51 +00:00
|
|
|
struct ksegrp *kg;
|
2003-10-16 08:39:15 +00:00
|
|
|
struct kse *ke;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
/*
|
|
|
|
* sched_setup() apparently happens prior to stathz being set. We
|
|
|
|
* need to resolve the timers earlier in the boot so we can avoid
|
|
|
|
* calculating this here.
|
|
|
|
*/
|
|
|
|
if (realstathz == 0) {
|
|
|
|
realstathz = stathz ? stathz : hz;
|
|
|
|
tickincr = hz / realstathz;
|
|
|
|
/*
|
|
|
|
* XXX This does not work for values of stathz that are much
|
|
|
|
* larger than hz.
|
|
|
|
*/
|
|
|
|
if (tickincr == 0)
|
|
|
|
tickincr = 1;
|
|
|
|
}
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-10-16 08:39:15 +00:00
|
|
|
ke = td->td_kse;
|
2003-04-11 03:47:14 +00:00
|
|
|
kg = ke->ke_ksegrp;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-01-29 07:00:51 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
|
|
|
KASSERT((td != NULL), ("schedclock: null thread pointer"));
|
|
|
|
|
|
|
|
/* Adjust ticks for pctcpu */
|
2003-03-03 05:29:09 +00:00
|
|
|
ke->ke_ticks++;
|
2003-01-28 09:30:17 +00:00
|
|
|
ke->ke_ltick = ticks;
|
2003-04-03 00:29:28 +00:00
|
|
|
|
2003-01-28 09:30:17 +00:00
|
|
|
/* Go up to one second beyond our max and then trim back down */
|
|
|
|
if (ke->ke_ftick + SCHED_CPU_TICKS + hz < ke->ke_ltick)
|
|
|
|
sched_pctcpu_update(ke);
|
|
|
|
|
2003-05-02 06:18:55 +00:00
|
|
|
if (td->td_flags & TDF_IDLETD)
|
2003-01-26 05:23:15 +00:00
|
|
|
return;
|
2003-01-29 07:00:51 +00:00
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
CTR4(KTR_ULE, "Tick kse %p (slice: %d, slptime: %d, runtime: %d)",
|
|
|
|
ke, ke->ke_slice, kg->kg_slptime >> 10, kg->kg_runtime >> 10);
|
|
|
|
/*
|
2003-10-27 06:47:05 +00:00
|
|
|
* We only do slicing code for TIMESHARE ksegrps.
|
2003-04-11 03:47:14 +00:00
|
|
|
*/
|
2003-10-27 06:47:05 +00:00
|
|
|
if (kg->kg_pri_class != PRI_TIMESHARE)
|
|
|
|
return;
|
2003-01-26 05:23:15 +00:00
|
|
|
/*
|
2003-02-10 14:03:45 +00:00
|
|
|
* We used a tick charge it to the ksegrp so that we can compute our
|
2003-04-11 03:47:14 +00:00
|
|
|
* interactivity.
|
2003-01-26 05:23:15 +00:00
|
|
|
*/
|
2003-04-11 03:47:14 +00:00
|
|
|
kg->kg_runtime += tickincr << 10;
|
2003-06-17 06:39:51 +00:00
|
|
|
sched_interact_update(kg);
|
2003-02-10 14:03:45 +00:00
|
|
|
|
2003-01-26 05:23:15 +00:00
|
|
|
/*
|
|
|
|
* We used up one time slice.
|
|
|
|
*/
|
|
|
|
ke->ke_slice--;
|
2003-10-27 06:47:05 +00:00
|
|
|
kseq = KSEQ_SELF();
|
2003-04-11 03:47:14 +00:00
|
|
|
#ifdef SMP
|
2003-04-11 18:37:34 +00:00
|
|
|
kseq->ksq_rslices--;
|
2003-04-11 03:47:14 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
if (ke->ke_slice > 0)
|
|
|
|
return;
|
2003-01-26 05:23:15 +00:00
|
|
|
/*
|
2003-04-11 03:47:14 +00:00
|
|
|
* We're out of time, recompute priorities and requeue.
|
2003-01-26 05:23:15 +00:00
|
|
|
*/
|
2003-04-11 03:47:14 +00:00
|
|
|
kseq_rem(kseq, ke);
|
|
|
|
sched_priority(kg);
|
|
|
|
sched_slice(ke);
|
|
|
|
if (SCHED_CURR(kg, ke))
|
|
|
|
ke->ke_runq = kseq->ksq_curr;
|
|
|
|
else
|
|
|
|
ke->ke_runq = kseq->ksq_next;
|
|
|
|
kseq_add(kseq, ke);
|
|
|
|
td->td_flags |= TDF_NEEDRESCHED;
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sched_runnable(void)
|
|
|
|
{
|
|
|
|
struct kseq *kseq;
|
2003-06-08 00:47:33 +00:00
|
|
|
int load;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-06-08 00:47:33 +00:00
|
|
|
load = 1;
|
|
|
|
|
2003-01-29 07:00:51 +00:00
|
|
|
kseq = KSEQ_SELF();
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#ifdef SMP
|
2003-11-05 05:30:12 +00:00
|
|
|
if (kseq->ksq_assigned) {
|
|
|
|
mtx_lock_spin(&sched_lock);
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
kseq_assign(kseq);
|
2003-11-05 05:30:12 +00:00
|
|
|
mtx_unlock_spin(&sched_lock);
|
|
|
|
}
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#endif
|
2003-10-27 06:47:05 +00:00
|
|
|
if ((curthread->td_flags & TDF_IDLETD) != 0) {
|
|
|
|
if (kseq->ksq_load > 0)
|
|
|
|
goto out;
|
|
|
|
} else
|
|
|
|
if (kseq->ksq_load - 1 > 0)
|
|
|
|
goto out;
|
2003-06-08 00:47:33 +00:00
|
|
|
load = 0;
|
|
|
|
out:
|
|
|
|
return (load);
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_userret(struct thread *td)
|
|
|
|
{
|
|
|
|
struct ksegrp *kg;
|
|
|
|
|
2003-10-27 06:47:05 +00:00
|
|
|
kg = td->td_ksegrp;
|
|
|
|
|
2003-01-26 05:23:15 +00:00
|
|
|
if (td->td_priority != kg->kg_user_pri) {
|
|
|
|
mtx_lock_spin(&sched_lock);
|
|
|
|
td->td_priority = kg->kg_user_pri;
|
|
|
|
mtx_unlock_spin(&sched_lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-01-28 09:28:20 +00:00
|
|
|
struct kse *
|
|
|
|
sched_choose(void)
|
|
|
|
{
|
2003-01-29 07:00:51 +00:00
|
|
|
struct kseq *kseq;
|
2003-01-28 09:28:20 +00:00
|
|
|
struct kse *ke;
|
|
|
|
|
2003-06-08 00:47:33 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
kseq = KSEQ_SELF();
|
2003-04-11 03:47:14 +00:00
|
|
|
#ifdef SMP
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
if (kseq->ksq_assigned)
|
|
|
|
kseq_assign(kseq);
|
2003-04-11 03:47:14 +00:00
|
|
|
#endif
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
ke = kseq_choose(kseq);
|
2003-01-26 05:23:15 +00:00
|
|
|
if (ke) {
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#ifdef SMP
|
|
|
|
if (ke->ke_ksegrp->kg_pri_class == PRI_IDLE)
|
2003-11-03 03:27:22 +00:00
|
|
|
kseq_setidle(kseq);
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#endif
|
2003-04-11 03:47:14 +00:00
|
|
|
runq_remove(ke->ke_runq, ke);
|
2003-01-26 05:23:15 +00:00
|
|
|
ke->ke_state = KES_THREAD;
|
2003-04-02 06:46:43 +00:00
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
if (ke->ke_ksegrp->kg_pri_class == PRI_TIMESHARE) {
|
|
|
|
CTR4(KTR_ULE, "Run kse %p from %p (slice: %d, pri: %d)",
|
|
|
|
ke, ke->ke_runq, ke->ke_slice,
|
|
|
|
ke->ke_thread->td_priority);
|
|
|
|
}
|
|
|
|
return (ke);
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
2003-01-28 09:28:20 +00:00
|
|
|
#ifdef SMP
|
2003-11-03 03:27:22 +00:00
|
|
|
kseq_setidle(kseq);
|
2003-01-28 09:28:20 +00:00
|
|
|
#endif
|
2003-04-11 03:47:14 +00:00
|
|
|
return (NULL);
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-10-16 08:39:15 +00:00
|
|
|
sched_add(struct thread *td)
|
2003-01-26 05:23:15 +00:00
|
|
|
{
|
2003-02-03 05:30:07 +00:00
|
|
|
struct kseq *kseq;
|
2003-04-11 03:47:14 +00:00
|
|
|
struct ksegrp *kg;
|
2003-10-16 08:39:15 +00:00
|
|
|
struct kse *ke;
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
int class;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
2003-10-16 08:39:15 +00:00
|
|
|
ke = td->td_kse;
|
|
|
|
kg = td->td_ksegrp;
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
if (ke->ke_flags & KEF_ASSIGNED)
|
|
|
|
return;
|
|
|
|
kseq = KSEQ_SELF();
|
2003-02-03 05:30:07 +00:00
|
|
|
KASSERT((ke->ke_thread != NULL), ("sched_add: No thread on KSE"));
|
2003-01-26 05:23:15 +00:00
|
|
|
KASSERT((ke->ke_thread->td_kse != NULL),
|
2003-02-03 05:30:07 +00:00
|
|
|
("sched_add: No KSE on thread"));
|
2003-01-26 05:23:15 +00:00
|
|
|
KASSERT(ke->ke_state != KES_ONRUNQ,
|
2003-02-03 05:30:07 +00:00
|
|
|
("sched_add: kse %p (%s) already in run queue", ke,
|
2003-01-26 05:23:15 +00:00
|
|
|
ke->ke_proc->p_comm));
|
|
|
|
KASSERT(ke->ke_proc->p_sflag & PS_INMEM,
|
2003-02-03 05:30:07 +00:00
|
|
|
("sched_add: process swapped out"));
|
2003-04-12 07:28:36 +00:00
|
|
|
KASSERT(ke->ke_runq == NULL,
|
|
|
|
("sched_add: KSE %p is still assigned to a run queue", ke));
|
2003-01-26 05:23:15 +00:00
|
|
|
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
class = PRI_BASE(kg->kg_pri_class);
|
|
|
|
switch (class) {
|
2003-04-03 00:29:28 +00:00
|
|
|
case PRI_ITHD:
|
|
|
|
case PRI_REALTIME:
|
2003-04-11 03:47:14 +00:00
|
|
|
ke->ke_runq = kseq->ksq_curr;
|
|
|
|
ke->ke_slice = SCHED_SLICE_MAX;
|
2003-04-18 05:24:10 +00:00
|
|
|
ke->ke_cpu = PCPU_GET(cpuid);
|
2003-04-03 00:29:28 +00:00
|
|
|
break;
|
|
|
|
case PRI_TIMESHARE:
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#ifdef SMP
|
|
|
|
if (ke->ke_cpu != PCPU_GET(cpuid)) {
|
|
|
|
kseq_notify(ke, ke->ke_cpu);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2003-04-12 07:28:36 +00:00
|
|
|
if (SCHED_CURR(kg, ke))
|
|
|
|
ke->ke_runq = kseq->ksq_curr;
|
|
|
|
else
|
|
|
|
ke->ke_runq = kseq->ksq_next;
|
2003-04-11 03:47:14 +00:00
|
|
|
break;
|
2003-04-03 00:29:28 +00:00
|
|
|
case PRI_IDLE:
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#ifdef SMP
|
|
|
|
if (ke->ke_cpu != PCPU_GET(cpuid)) {
|
|
|
|
kseq_notify(ke, ke->ke_cpu);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
2003-04-11 03:47:14 +00:00
|
|
|
/*
|
|
|
|
* This is for priority prop.
|
|
|
|
*/
|
2003-10-27 06:47:05 +00:00
|
|
|
if (ke->ke_thread->td_priority < PRI_MIN_IDLE)
|
2003-04-11 03:47:14 +00:00
|
|
|
ke->ke_runq = kseq->ksq_curr;
|
|
|
|
else
|
|
|
|
ke->ke_runq = &kseq->ksq_idle;
|
|
|
|
ke->ke_slice = SCHED_SLICE_MIN;
|
|
|
|
break;
|
|
|
|
default:
|
2003-11-02 03:36:33 +00:00
|
|
|
panic("Unknown pri class.");
|
2003-04-03 00:29:28 +00:00
|
|
|
break;
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#ifdef SMP
|
|
|
|
/*
|
|
|
|
* If there are any idle processors, give them our extra load.
|
|
|
|
*/
|
2003-11-04 07:45:41 +00:00
|
|
|
if (kseq_idle && KSE_CAN_MIGRATE(ke, class) &&
|
2003-11-02 10:56:48 +00:00
|
|
|
kseq->ksq_load_transferable >= kseq->ksq_cpus) {
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
int cpu;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Multiple cpus could find this bit simultaneously but the
|
|
|
|
* race shouldn't be terrible.
|
|
|
|
*/
|
|
|
|
cpu = ffs(kseq_idle);
|
|
|
|
if (cpu) {
|
|
|
|
cpu--;
|
|
|
|
atomic_clear_int(&kseq_idle, 1 << cpu);
|
|
|
|
ke->ke_cpu = cpu;
|
|
|
|
ke->ke_runq = NULL;
|
|
|
|
kseq_notify(ke, cpu);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2003-11-03 03:27:22 +00:00
|
|
|
if (kseq->ksq_idled &&
|
|
|
|
(class == PRI_TIMESHARE || class == PRI_REALTIME)) {
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
atomic_clear_int(&kseq_idle, PCPU_GET(cpumask));
|
2003-11-03 03:27:22 +00:00
|
|
|
kseq->ksq_idled = 0;
|
|
|
|
}
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
#endif
|
|
|
|
if (td->td_priority < curthread->td_priority)
|
|
|
|
curthread->td_flags |= TDF_NEEDRESCHED;
|
2003-04-03 00:29:28 +00:00
|
|
|
|
2003-01-26 05:23:15 +00:00
|
|
|
ke->ke_ksegrp->kg_runq_kses++;
|
|
|
|
ke->ke_state = KES_ONRUNQ;
|
|
|
|
|
2003-04-11 03:47:14 +00:00
|
|
|
runq_add(ke->ke_runq, ke);
|
2003-04-12 07:28:36 +00:00
|
|
|
kseq_add(kseq, ke);
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-10-16 08:39:15 +00:00
|
|
|
sched_rem(struct thread *td)
|
2003-01-26 05:23:15 +00:00
|
|
|
{
|
2003-04-11 03:47:14 +00:00
|
|
|
struct kseq *kseq;
|
2003-10-16 08:39:15 +00:00
|
|
|
struct kse *ke;
|
|
|
|
|
|
|
|
ke = td->td_kse;
|
- Add static to local functions and data where it was missing.
- Add an IPI based mechanism for migrating kses. This mechanism is
broken down into several components. This is intended to reduce cache
thrashing by eliminating most cases where one cpu touches another's
run queues.
- kseq_notify() appends a kse to a lockless singly linked list and
conditionally sends an IPI to the target processor. Right now this is
protected by sched_lock but at some point I'd like to get rid of the
global lock. This is why I used something more complicated than a
standard queue.
- kseq_assign() processes our list of kses that have been assigned to us
by other processors. This simply calls sched_add() for each item on the
list after clearing the new KEF_ASSIGNED flag. This flag is used to
indicate that we have been appeneded to the assigned queue but not
added to the run queue yet.
- In sched_add(), instead of adding a KSE to another processor's queue we
use kse_notify() so that we don't touch their queue. Also in sched_add(),
if KEF_ASSIGNED is already set return immediately. This can happen if
a thread is removed and readded so that the priority is recorded properly.
- In sched_rem() return immediately if KEF_ASSIGNED is set. All callers
immediately readd simply to adjust priorites etc.
- In sched_choose(), if we're running an IDLE task or the per cpu idle thread
set our cpumask bit in 'kseq_idle' so that other processors may know that
we are idle. Before this, make a single pass through the run queues of
other processors so that we may find work more immediately if it is
available.
- In sched_runnable(), don't scan each processor's run queue, they will IPI
us if they have work for us to do.
- In sched_add(), if we're adding a thread that can be migrated and we have
plenty of work to do, try to migrate the thread to an idle kseq.
- Simplify the logic in sched_prio() and take the KEF_ASSIGNED flag into
consideration.
- No longer use kseq_choose() to steal threads, it can lose it's last
argument.
- Create a new function runq_steal() which operates like runq_choose() but
skips threads based on some criteria. Currently it will not steal
PRI_ITHD threads. In the future this will be used for CPU binding.
- Create a kseq_steal() that checks each run queue with runq_steal(), use
kseq_steal() in the places where we used kseq_choose() to steal with
before.
2003-10-31 11:16:04 +00:00
|
|
|
/*
|
|
|
|
* It is safe to just return here because sched_rem() is only ever
|
|
|
|
* used in places where we're immediately going to add the
|
|
|
|
* kse back on again. In that case it'll be added with the correct
|
|
|
|
* thread and priority when the caller drops the sched_lock.
|
|
|
|
*/
|
|
|
|
if (ke->ke_flags & KEF_ASSIGNED)
|
|
|
|
return;
|
2003-01-26 05:23:15 +00:00
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
2003-04-12 07:28:36 +00:00
|
|
|
KASSERT((ke->ke_state == KES_ONRUNQ), ("KSE not on run queue"));
|
2003-01-26 05:23:15 +00:00
|
|
|
|
|
|
|
ke->ke_state = KES_THREAD;
|
|
|
|
ke->ke_ksegrp->kg_runq_kses--;
|
2003-04-11 03:47:14 +00:00
|
|
|
kseq = KSEQ_CPU(ke->ke_cpu);
|
|
|
|
runq_remove(ke->ke_runq, ke);
|
|
|
|
kseq_rem(kseq, ke);
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fixpt_t
|
2003-10-16 08:39:15 +00:00
|
|
|
sched_pctcpu(struct thread *td)
|
2003-01-26 05:23:15 +00:00
|
|
|
{
|
|
|
|
fixpt_t pctcpu;
|
2003-10-16 08:39:15 +00:00
|
|
|
struct kse *ke;
|
2003-01-26 05:23:15 +00:00
|
|
|
|
|
|
|
pctcpu = 0;
|
2003-10-16 08:39:15 +00:00
|
|
|
ke = td->td_kse;
|
2003-10-20 19:55:21 +00:00
|
|
|
if (ke == NULL)
|
|
|
|
return (0);
|
2003-01-26 05:23:15 +00:00
|
|
|
|
2003-06-08 00:47:33 +00:00
|
|
|
mtx_lock_spin(&sched_lock);
|
2003-01-26 05:23:15 +00:00
|
|
|
if (ke->ke_ticks) {
|
|
|
|
int rtick;
|
|
|
|
|
2003-06-15 02:18:29 +00:00
|
|
|
/*
|
|
|
|
* Don't update more frequently than twice a second. Allowing
|
|
|
|
* this causes the cpu usage to decay away too quickly due to
|
|
|
|
* rounding errors.
|
|
|
|
*/
|
|
|
|
if (ke->ke_ltick < (ticks - (hz / 2)))
|
|
|
|
sched_pctcpu_update(ke);
|
2003-01-26 05:23:15 +00:00
|
|
|
/* How many rtick per second ? */
|
2003-06-15 02:18:29 +00:00
|
|
|
rtick = min(ke->ke_ticks / SCHED_CPU_TIME, SCHED_CPU_TICKS);
|
2003-02-02 08:24:32 +00:00
|
|
|
pctcpu = (FSCALE * ((FSCALE * rtick)/realstathz)) >> FSHIFT;
|
2003-01-26 05:23:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ke->ke_proc->p_swtime = ke->ke_ltick - ke->ke_ftick;
|
2003-04-22 19:48:25 +00:00
|
|
|
mtx_unlock_spin(&sched_lock);
|
2003-01-26 05:23:15 +00:00
|
|
|
|
|
|
|
return (pctcpu);
|
|
|
|
}
|
|
|
|
|
2003-11-04 07:45:41 +00:00
|
|
|
void
|
|
|
|
sched_bind(struct thread *td, int cpu)
|
|
|
|
{
|
|
|
|
struct kse *ke;
|
|
|
|
|
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
|
|
|
ke = td->td_kse;
|
|
|
|
#ifndef SMP
|
|
|
|
ke->ke_flags |= KEF_BOUND;
|
|
|
|
#else
|
|
|
|
if (PCPU_GET(cpuid) == cpu) {
|
|
|
|
ke->ke_flags |= KEF_BOUND;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* sched_rem without the runq_remove */
|
|
|
|
ke->ke_state = KES_THREAD;
|
|
|
|
ke->ke_ksegrp->kg_runq_kses--;
|
|
|
|
kseq_rem(KSEQ_CPU(ke->ke_cpu), ke);
|
|
|
|
ke->ke_cpu = cpu;
|
|
|
|
kseq_notify(ke, cpu);
|
|
|
|
/* When we return from mi_switch we'll be on the correct cpu. */
|
|
|
|
td->td_proc->p_stats->p_ru.ru_nvcsw++;
|
|
|
|
mi_switch();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sched_unbind(struct thread *td)
|
|
|
|
{
|
|
|
|
mtx_assert(&sched_lock, MA_OWNED);
|
|
|
|
td->td_kse->ke_flags &= ~KEF_BOUND;
|
|
|
|
}
|
|
|
|
|
2003-01-26 05:23:15 +00:00
|
|
|
int
|
|
|
|
sched_sizeof_kse(void)
|
|
|
|
{
|
|
|
|
return (sizeof(struct kse) + sizeof(struct ke_sched));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sched_sizeof_ksegrp(void)
|
|
|
|
{
|
|
|
|
return (sizeof(struct ksegrp) + sizeof(struct kg_sched));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sched_sizeof_proc(void)
|
|
|
|
{
|
|
|
|
return (sizeof(struct proc));
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
sched_sizeof_thread(void)
|
|
|
|
{
|
|
|
|
return (sizeof(struct thread) + sizeof(struct td_sched));
|
|
|
|
}
|