1994-05-24 10:09:53 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1982, 1986, 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
* (c) UNIX System Laboratories, Inc.
|
|
|
|
* All or some portions of this file are derived from material licensed
|
|
|
|
* to the University of California by American Telephone and Telegraph
|
|
|
|
* Co. or Unix System Laboratories, Inc. and are reproduced herein with
|
|
|
|
* the permission of UNIX System Laboratories, Inc.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2016-09-15 13:16:20 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-24 10:09:53 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1999-03-06 04:46:20 +00:00
|
|
|
* From: @(#)kern_clock.c 8.5 (Berkeley) 1/21/94
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
|
|
|
|
2003-06-11 00:56:59 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#include "opt_callout_profiling.h"
|
2016-06-06 20:57:24 +00:00
|
|
|
#include "opt_ddb.h"
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#if defined(__arm__)
|
|
|
|
#include "opt_timer.h"
|
|
|
|
#endif
|
2014-06-30 04:25:51 +00:00
|
|
|
#include "opt_rss.h"
|
2009-01-24 10:22:49 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
2008-04-02 11:20:30 +00:00
|
|
|
#include <sys/bus.h>
|
1998-02-15 14:15:21 +00:00
|
|
|
#include <sys/callout.h>
|
2013-03-08 10:14:58 +00:00
|
|
|
#include <sys/file.h>
|
2008-04-02 11:20:30 +00:00
|
|
|
#include <sys/interrupt.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
#include <sys/kernel.h>
|
2004-08-06 21:49:00 +00:00
|
|
|
#include <sys/ktr.h>
|
2001-03-28 09:17:56 +00:00
|
|
|
#include <sys/lock.h>
|
2008-04-02 11:20:30 +00:00
|
|
|
#include <sys/malloc.h>
|
2000-11-16 21:20:52 +00:00
|
|
|
#include <sys/mutex.h>
|
2005-09-15 20:20:36 +00:00
|
|
|
#include <sys/proc.h>
|
2009-01-24 10:22:49 +00:00
|
|
|
#include <sys/sdt.h>
|
2007-06-26 21:42:01 +00:00
|
|
|
#include <sys/sleepqueue.h>
|
2003-06-04 05:25:58 +00:00
|
|
|
#include <sys/sysctl.h>
|
2008-04-02 11:20:30 +00:00
|
|
|
#include <sys/smp.h>
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2016-06-06 20:57:24 +00:00
|
|
|
#ifdef DDB
|
|
|
|
#include <ddb/ddb.h>
|
|
|
|
#include <machine/_inttypes.h>
|
|
|
|
#endif
|
|
|
|
|
2011-04-08 18:48:57 +00:00
|
|
|
#ifdef SMP
|
|
|
|
#include <machine/cpu.h>
|
|
|
|
#endif
|
|
|
|
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#ifndef NO_EVENTTIMERS
|
|
|
|
DPCPU_DECLARE(sbintime_t, hardclocktime);
|
|
|
|
#endif
|
|
|
|
|
2009-01-24 10:22:49 +00:00
|
|
|
SDT_PROVIDER_DEFINE(callout_execute);
|
2015-12-16 23:39:27 +00:00
|
|
|
SDT_PROBE_DEFINE1(callout_execute, , , callout__start, "struct callout *");
|
|
|
|
SDT_PROBE_DEFINE1(callout_execute, , , callout__end, "struct callout *");
|
2009-01-24 10:22:49 +00:00
|
|
|
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#ifdef CALLOUT_PROFILING
|
2003-06-04 05:25:58 +00:00
|
|
|
static int avg_depth;
|
|
|
|
SYSCTL_INT(_debug, OID_AUTO, to_avg_depth, CTLFLAG_RD, &avg_depth, 0,
|
|
|
|
"Average number of items examined per softclock call. Units = 1/1000");
|
|
|
|
static int avg_gcalls;
|
|
|
|
SYSCTL_INT(_debug, OID_AUTO, to_avg_gcalls, CTLFLAG_RD, &avg_gcalls, 0,
|
|
|
|
"Average number of Giant callouts made per softclock call. Units = 1/1000");
|
2007-11-20 00:37:45 +00:00
|
|
|
static int avg_lockcalls;
|
|
|
|
SYSCTL_INT(_debug, OID_AUTO, to_avg_lockcalls, CTLFLAG_RD, &avg_lockcalls, 0,
|
|
|
|
"Average number of lock callouts made per softclock call. Units = 1/1000");
|
2003-06-04 05:25:58 +00:00
|
|
|
static int avg_mpcalls;
|
|
|
|
SYSCTL_INT(_debug, OID_AUTO, to_avg_mpcalls, CTLFLAG_RD, &avg_mpcalls, 0,
|
|
|
|
"Average number of MP callouts made per softclock call. Units = 1/1000");
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
static int avg_depth_dir;
|
|
|
|
SYSCTL_INT(_debug, OID_AUTO, to_avg_depth_dir, CTLFLAG_RD, &avg_depth_dir, 0,
|
|
|
|
"Average number of direct callouts examined per callout_process call. "
|
|
|
|
"Units = 1/1000");
|
|
|
|
static int avg_lockcalls_dir;
|
|
|
|
SYSCTL_INT(_debug, OID_AUTO, to_avg_lockcalls_dir, CTLFLAG_RD,
|
|
|
|
&avg_lockcalls_dir, 0, "Average number of lock direct callouts made per "
|
|
|
|
"callout_process call. Units = 1/1000");
|
|
|
|
static int avg_mpcalls_dir;
|
|
|
|
SYSCTL_INT(_debug, OID_AUTO, to_avg_mpcalls_dir, CTLFLAG_RD, &avg_mpcalls_dir,
|
|
|
|
0, "Average number of MP direct callouts made per callout_process call. "
|
|
|
|
"Units = 1/1000");
|
|
|
|
#endif
|
2013-03-08 10:14:58 +00:00
|
|
|
|
|
|
|
static int ncallout;
|
2014-06-28 03:56:17 +00:00
|
|
|
SYSCTL_INT(_kern, OID_AUTO, ncallout, CTLFLAG_RDTUN | CTLFLAG_NOFETCH, &ncallout, 0,
|
2013-03-08 10:14:58 +00:00
|
|
|
"Number of entries in callwheel and size of timeout() preallocation");
|
|
|
|
|
2014-06-30 04:25:51 +00:00
|
|
|
#ifdef RSS
|
|
|
|
static int pin_default_swi = 1;
|
|
|
|
static int pin_pcpu_swi = 1;
|
|
|
|
#else
|
2014-05-10 00:53:36 +00:00
|
|
|
static int pin_default_swi = 0;
|
|
|
|
static int pin_pcpu_swi = 0;
|
2014-06-30 04:25:51 +00:00
|
|
|
#endif
|
2014-05-10 00:53:36 +00:00
|
|
|
|
2014-06-28 03:56:17 +00:00
|
|
|
SYSCTL_INT(_kern, OID_AUTO, pin_default_swi, CTLFLAG_RDTUN | CTLFLAG_NOFETCH, &pin_default_swi,
|
2014-05-10 00:53:36 +00:00
|
|
|
0, "Pin the default (non-per-cpu) swi (shared with PCPU 0 swi)");
|
2014-06-28 03:56:17 +00:00
|
|
|
SYSCTL_INT(_kern, OID_AUTO, pin_pcpu_swi, CTLFLAG_RDTUN | CTLFLAG_NOFETCH, &pin_pcpu_swi,
|
2014-05-10 00:53:36 +00:00
|
|
|
0, "Pin the per-CPU swis (except PCPU 0, which is also default");
|
|
|
|
|
1998-02-15 14:15:21 +00:00
|
|
|
/*
|
|
|
|
* TODO:
|
|
|
|
* allocate more timeout table slots when table overflows.
|
|
|
|
*/
|
2013-03-03 15:01:33 +00:00
|
|
|
u_int callwheelsize, callwheelmask;
|
1994-08-18 22:36:09 +00:00
|
|
|
|
2011-04-08 18:48:57 +00:00
|
|
|
/*
|
2015-01-22 11:12:42 +00:00
|
|
|
* The callout cpu exec entities represent informations necessary for
|
|
|
|
* describing the state of callouts currently running on the CPU and the ones
|
|
|
|
* necessary for migrating callouts to the new callout cpu. In particular,
|
|
|
|
* the first entry of the array cc_exec_entity holds informations for callout
|
|
|
|
* running in SWI thread context, while the second one holds informations
|
|
|
|
* for callout running directly from hardware interrupt context.
|
|
|
|
* The cached informations are very important for deferring migration when
|
|
|
|
* the migrating callout is already running.
|
2011-04-08 18:48:57 +00:00
|
|
|
*/
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
struct cc_exec {
|
|
|
|
struct callout *cc_curr;
|
2015-11-10 14:49:32 +00:00
|
|
|
void (*cc_drain)(void *);
|
2015-01-22 11:12:42 +00:00
|
|
|
#ifdef SMP
|
|
|
|
void (*ce_migration_func)(void *);
|
|
|
|
void *ce_migration_arg;
|
|
|
|
int ce_migration_cpu;
|
|
|
|
sbintime_t ce_migration_time;
|
|
|
|
sbintime_t ce_migration_prec;
|
|
|
|
#endif
|
|
|
|
bool cc_cancel;
|
|
|
|
bool cc_waiting;
|
2011-04-08 18:48:57 +00:00
|
|
|
};
|
2013-02-28 16:22:49 +00:00
|
|
|
|
2009-12-14 12:23:46 +00:00
|
|
|
/*
|
2015-01-22 11:12:42 +00:00
|
|
|
* There is one struct callout_cpu per cpu, holding all relevant
|
2009-12-14 12:23:46 +00:00
|
|
|
* state for the callout processing thread on the individual CPU.
|
|
|
|
*/
|
2008-04-02 11:20:30 +00:00
|
|
|
struct callout_cpu {
|
2012-10-31 18:07:18 +00:00
|
|
|
struct mtx_padalign cc_lock;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
struct cc_exec cc_exec_entity[2];
|
2015-02-12 13:31:08 +00:00
|
|
|
struct callout *cc_next;
|
2008-04-02 11:20:30 +00:00
|
|
|
struct callout *cc_callout;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
struct callout_list *cc_callwheel;
|
|
|
|
struct callout_tailq cc_expireq;
|
|
|
|
struct callout_slist cc_callfree;
|
|
|
|
sbintime_t cc_firstevent;
|
|
|
|
sbintime_t cc_lastscan;
|
2008-04-02 11:20:30 +00:00
|
|
|
void *cc_cookie;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
u_int cc_bucket;
|
2015-03-28 12:50:24 +00:00
|
|
|
u_int cc_inited;
|
2014-10-08 16:22:59 +00:00
|
|
|
char cc_ktr_event_name[20];
|
2008-04-02 11:20:30 +00:00
|
|
|
};
|
|
|
|
|
2015-03-31 00:18:00 +00:00
|
|
|
#define callout_migrating(c) ((c)->c_iflags & CALLOUT_DFRMIGRATION)
|
|
|
|
|
2015-02-09 19:19:44 +00:00
|
|
|
#define cc_exec_curr(cc, dir) cc->cc_exec_entity[dir].cc_curr
|
2015-11-10 14:49:32 +00:00
|
|
|
#define cc_exec_drain(cc, dir) cc->cc_exec_entity[dir].cc_drain
|
2015-02-12 13:31:08 +00:00
|
|
|
#define cc_exec_next(cc) cc->cc_next
|
2015-02-09 19:19:44 +00:00
|
|
|
#define cc_exec_cancel(cc, dir) cc->cc_exec_entity[dir].cc_cancel
|
|
|
|
#define cc_exec_waiting(cc, dir) cc->cc_exec_entity[dir].cc_waiting
|
2008-04-02 11:20:30 +00:00
|
|
|
#ifdef SMP
|
2015-02-09 19:19:44 +00:00
|
|
|
#define cc_migration_func(cc, dir) cc->cc_exec_entity[dir].ce_migration_func
|
|
|
|
#define cc_migration_arg(cc, dir) cc->cc_exec_entity[dir].ce_migration_arg
|
|
|
|
#define cc_migration_cpu(cc, dir) cc->cc_exec_entity[dir].ce_migration_cpu
|
|
|
|
#define cc_migration_time(cc, dir) cc->cc_exec_entity[dir].ce_migration_time
|
|
|
|
#define cc_migration_prec(cc, dir) cc->cc_exec_entity[dir].ce_migration_prec
|
2015-01-22 11:12:42 +00:00
|
|
|
|
2008-04-02 11:20:30 +00:00
|
|
|
struct callout_cpu cc_cpu[MAXCPU];
|
2011-04-08 18:48:57 +00:00
|
|
|
#define CPUBLOCK MAXCPU
|
2008-04-02 11:20:30 +00:00
|
|
|
#define CC_CPU(cpu) (&cc_cpu[(cpu)])
|
|
|
|
#define CC_SELF() CC_CPU(PCPU_GET(cpuid))
|
|
|
|
#else
|
|
|
|
struct callout_cpu cc_cpu;
|
|
|
|
#define CC_CPU(cpu) &cc_cpu
|
|
|
|
#define CC_SELF() &cc_cpu
|
|
|
|
#endif
|
|
|
|
#define CC_LOCK(cc) mtx_lock_spin(&(cc)->cc_lock)
|
|
|
|
#define CC_UNLOCK(cc) mtx_unlock_spin(&(cc)->cc_lock)
|
2011-04-08 18:48:57 +00:00
|
|
|
#define CC_LOCK_ASSERT(cc) mtx_assert(&(cc)->cc_lock, MA_OWNED)
|
2008-04-02 11:20:30 +00:00
|
|
|
|
|
|
|
static int timeout_cpu;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
|
2014-10-08 16:22:59 +00:00
|
|
|
static void callout_cpu_init(struct callout_cpu *cc, int cpu);
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
static void softclock_call_cc(struct callout *c, struct callout_cpu *cc,
|
|
|
|
#ifdef CALLOUT_PROFILING
|
|
|
|
int *mpcalls, int *lockcalls, int *gcalls,
|
|
|
|
#endif
|
|
|
|
int direct);
|
2008-04-02 11:20:30 +00:00
|
|
|
|
2011-11-07 06:44:47 +00:00
|
|
|
static MALLOC_DEFINE(M_CALLOUT, "callout", "Callout datastructures");
|
2004-04-08 02:03:49 +00:00
|
|
|
|
2015-01-22 11:12:42 +00:00
|
|
|
/**
|
|
|
|
* Locked by cc_lock:
|
|
|
|
* cc_curr - If a callout is in progress, it is cc_curr.
|
|
|
|
* If cc_curr is non-NULL, threads waiting in
|
|
|
|
* callout_drain() will be woken up as soon as the
|
|
|
|
* relevant callout completes.
|
|
|
|
* cc_cancel - Changing to 1 with both callout_lock and cc_lock held
|
|
|
|
* guarantees that the current callout will not run.
|
|
|
|
* The softclock() function sets this to 0 before it
|
|
|
|
* drops callout_lock to acquire c_lock, and it calls
|
|
|
|
* the handler only if curr_cancelled is still 0 after
|
|
|
|
* cc_lock is successfully acquired.
|
|
|
|
* cc_waiting - If a thread is waiting in callout_drain(), then
|
|
|
|
* callout_wait is nonzero. Set only when
|
|
|
|
* cc_curr is non-NULL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Resets the execution entity tied to a specific callout cpu.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
cc_cce_cleanup(struct callout_cpu *cc, int direct)
|
|
|
|
{
|
|
|
|
|
2015-02-09 19:19:44 +00:00
|
|
|
cc_exec_curr(cc, direct) = NULL;
|
|
|
|
cc_exec_cancel(cc, direct) = false;
|
|
|
|
cc_exec_waiting(cc, direct) = false;
|
2015-01-22 11:12:42 +00:00
|
|
|
#ifdef SMP
|
2015-02-09 19:19:44 +00:00
|
|
|
cc_migration_cpu(cc, direct) = CPUBLOCK;
|
|
|
|
cc_migration_time(cc, direct) = 0;
|
|
|
|
cc_migration_prec(cc, direct) = 0;
|
|
|
|
cc_migration_func(cc, direct) = NULL;
|
|
|
|
cc_migration_arg(cc, direct) = NULL;
|
2015-01-22 11:12:42 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Checks if migration is requested by a specific callout cpu.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
cc_cce_migrating(struct callout_cpu *cc, int direct)
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef SMP
|
2015-02-09 19:19:44 +00:00
|
|
|
return (cc_migration_cpu(cc, direct) != CPUBLOCK);
|
2015-01-22 11:12:42 +00:00
|
|
|
#else
|
|
|
|
return (0);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2001-08-22 04:07:27 +00:00
|
|
|
/*
|
2015-01-22 11:12:42 +00:00
|
|
|
* Kernel low level callwheel initialization
|
|
|
|
* called on cpu0 during kernel startup.
|
2001-08-22 04:07:27 +00:00
|
|
|
*/
|
2013-03-08 10:37:17 +00:00
|
|
|
static void
|
|
|
|
callout_callwheel_init(void *dummy)
|
2001-08-22 04:07:27 +00:00
|
|
|
{
|
2008-04-02 11:20:30 +00:00
|
|
|
struct callout_cpu *cc;
|
|
|
|
|
2013-03-08 10:14:58 +00:00
|
|
|
/*
|
|
|
|
* Calculate the size of the callout wheel and the preallocated
|
|
|
|
* timeout() structures.
|
2013-03-10 22:55:35 +00:00
|
|
|
* XXX: Clip callout to result of previous function of maxusers
|
|
|
|
* maximum 384. This is still huge, but acceptable.
|
2013-03-08 10:14:58 +00:00
|
|
|
*/
|
2015-03-28 15:07:19 +00:00
|
|
|
memset(CC_CPU(0), 0, sizeof(cc_cpu));
|
2013-03-08 10:14:58 +00:00
|
|
|
ncallout = imin(16 + maxproc + maxfiles, 18508);
|
|
|
|
TUNABLE_INT_FETCH("kern.ncallout", &ncallout);
|
|
|
|
|
2001-08-22 04:07:27 +00:00
|
|
|
/*
|
2012-12-04 05:28:20 +00:00
|
|
|
* Calculate callout wheel size, should be next power of two higher
|
|
|
|
* than 'ncallout'.
|
2001-08-22 04:07:27 +00:00
|
|
|
*/
|
2012-12-04 05:28:20 +00:00
|
|
|
callwheelsize = 1 << fls(ncallout);
|
2001-08-22 04:07:27 +00:00
|
|
|
callwheelmask = callwheelsize - 1;
|
|
|
|
|
2014-05-10 00:53:36 +00:00
|
|
|
/*
|
|
|
|
* Fetch whether we're pinning the swi's or not.
|
|
|
|
*/
|
|
|
|
TUNABLE_INT_FETCH("kern.pin_default_swi", &pin_default_swi);
|
|
|
|
TUNABLE_INT_FETCH("kern.pin_pcpu_swi", &pin_pcpu_swi);
|
|
|
|
|
2013-03-08 10:37:17 +00:00
|
|
|
/*
|
|
|
|
* Only cpu0 handles timeout(9) and receives a preallocation.
|
|
|
|
*
|
|
|
|
* XXX: Once all timeout(9) consumers are converted this can
|
|
|
|
* be removed.
|
|
|
|
*/
|
|
|
|
timeout_cpu = PCPU_GET(cpuid);
|
|
|
|
cc = CC_CPU(timeout_cpu);
|
|
|
|
cc->cc_callout = malloc(ncallout * sizeof(struct callout),
|
|
|
|
M_CALLOUT, M_WAITOK);
|
2014-10-08 16:22:59 +00:00
|
|
|
callout_cpu_init(cc, timeout_cpu);
|
2001-08-22 04:07:27 +00:00
|
|
|
}
|
2013-03-08 10:37:17 +00:00
|
|
|
SYSINIT(callwheel_init, SI_SUB_CPU, SI_ORDER_ANY, callout_callwheel_init, NULL);
|
2001-08-22 04:07:27 +00:00
|
|
|
|
2013-03-08 10:37:17 +00:00
|
|
|
/*
|
|
|
|
* Initialize the per-cpu callout structures.
|
|
|
|
*/
|
2008-04-02 11:20:30 +00:00
|
|
|
static void
|
2014-10-08 16:22:59 +00:00
|
|
|
callout_cpu_init(struct callout_cpu *cc, int cpu)
|
2008-04-02 11:20:30 +00:00
|
|
|
{
|
|
|
|
struct callout *c;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
mtx_init(&cc->cc_lock, "callout", NULL, MTX_SPIN | MTX_RECURSE);
|
|
|
|
SLIST_INIT(&cc->cc_callfree);
|
2015-03-28 12:50:24 +00:00
|
|
|
cc->cc_inited = 1;
|
2013-03-09 20:03:10 +00:00
|
|
|
cc->cc_callwheel = malloc(sizeof(struct callout_list) * callwheelsize,
|
2013-03-08 10:37:17 +00:00
|
|
|
M_CALLOUT, M_WAITOK);
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
for (i = 0; i < callwheelsize; i++)
|
|
|
|
LIST_INIT(&cc->cc_callwheel[i]);
|
|
|
|
TAILQ_INIT(&cc->cc_expireq);
|
2014-04-12 23:29:29 +00:00
|
|
|
cc->cc_firstevent = SBT_MAX;
|
2015-01-22 11:12:42 +00:00
|
|
|
for (i = 0; i < 2; i++)
|
|
|
|
cc_cce_cleanup(cc, i);
|
2014-10-08 16:22:59 +00:00
|
|
|
snprintf(cc->cc_ktr_event_name, sizeof(cc->cc_ktr_event_name),
|
|
|
|
"callwheel cpu %d", cpu);
|
2013-03-08 10:37:17 +00:00
|
|
|
if (cc->cc_callout == NULL) /* Only cpu0 handles timeout(9) */
|
2008-04-02 11:20:30 +00:00
|
|
|
return;
|
|
|
|
for (i = 0; i < ncallout; i++) {
|
|
|
|
c = &cc->cc_callout[i];
|
|
|
|
callout_init(c, 0);
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags = CALLOUT_LOCAL_ALLOC;
|
2008-04-02 11:20:30 +00:00
|
|
|
SLIST_INSERT_HEAD(&cc->cc_callfree, c, c_links.sle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-22 11:12:42 +00:00
|
|
|
#ifdef SMP
|
|
|
|
/*
|
|
|
|
* Switches the cpu tied to a specific callout.
|
|
|
|
* The function expects a locked incoming callout cpu and returns with
|
|
|
|
* locked outcoming callout cpu.
|
|
|
|
*/
|
|
|
|
static struct callout_cpu *
|
|
|
|
callout_cpu_switch(struct callout *c, struct callout_cpu *cc, int new_cpu)
|
|
|
|
{
|
|
|
|
struct callout_cpu *new_cc;
|
|
|
|
|
|
|
|
MPASS(c != NULL && cc != NULL);
|
|
|
|
CC_LOCK_ASSERT(cc);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Avoid interrupts and preemption firing after the callout cpu
|
|
|
|
* is blocked in order to avoid deadlocks as the new thread
|
|
|
|
* may be willing to acquire the callout cpu lock.
|
|
|
|
*/
|
|
|
|
c->c_cpu = CPUBLOCK;
|
|
|
|
spinlock_enter();
|
|
|
|
CC_UNLOCK(cc);
|
|
|
|
new_cc = CC_CPU(new_cpu);
|
|
|
|
CC_LOCK(new_cc);
|
|
|
|
spinlock_exit();
|
|
|
|
c->c_cpu = new_cpu;
|
|
|
|
return (new_cc);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-04-02 11:20:30 +00:00
|
|
|
/*
|
|
|
|
* Start standard softclock thread.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
start_softclock(void *dummy)
|
|
|
|
{
|
|
|
|
struct callout_cpu *cc;
|
2014-02-14 23:19:51 +00:00
|
|
|
char name[MAXCOMLEN];
|
2008-04-02 11:20:30 +00:00
|
|
|
#ifdef SMP
|
|
|
|
int cpu;
|
2014-05-10 00:53:36 +00:00
|
|
|
struct intr_event *ie;
|
2008-04-02 11:20:30 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
cc = CC_CPU(timeout_cpu);
|
2014-02-14 23:19:51 +00:00
|
|
|
snprintf(name, sizeof(name), "clock (%d)", timeout_cpu);
|
|
|
|
if (swi_add(&clk_intr_event, name, softclock, cc, SWI_CLOCK,
|
2010-11-03 15:38:52 +00:00
|
|
|
INTR_MPSAFE, &cc->cc_cookie))
|
2008-04-02 11:20:30 +00:00
|
|
|
panic("died while creating standard software ithreads");
|
2014-05-10 00:53:36 +00:00
|
|
|
if (pin_default_swi &&
|
|
|
|
(intr_event_bind(clk_intr_event, timeout_cpu) != 0)) {
|
|
|
|
printf("%s: timeout clock couldn't be pinned to cpu %d\n",
|
|
|
|
__func__,
|
|
|
|
timeout_cpu);
|
|
|
|
}
|
|
|
|
|
2008-04-02 11:20:30 +00:00
|
|
|
#ifdef SMP
|
2010-06-11 18:46:34 +00:00
|
|
|
CPU_FOREACH(cpu) {
|
2008-04-02 11:20:30 +00:00
|
|
|
if (cpu == timeout_cpu)
|
|
|
|
continue;
|
|
|
|
cc = CC_CPU(cpu);
|
2013-03-08 10:37:17 +00:00
|
|
|
cc->cc_callout = NULL; /* Only cpu0 handles timeout(9). */
|
2014-10-08 16:22:59 +00:00
|
|
|
callout_cpu_init(cc, cpu);
|
2014-02-14 23:19:51 +00:00
|
|
|
snprintf(name, sizeof(name), "clock (%d)", cpu);
|
2014-05-10 00:53:36 +00:00
|
|
|
ie = NULL;
|
|
|
|
if (swi_add(&ie, name, softclock, cc, SWI_CLOCK,
|
2008-04-02 11:20:30 +00:00
|
|
|
INTR_MPSAFE, &cc->cc_cookie))
|
|
|
|
panic("died while creating standard software ithreads");
|
2014-05-10 00:53:36 +00:00
|
|
|
if (pin_pcpu_swi && (intr_event_bind(ie, cpu) != 0)) {
|
|
|
|
printf("%s: per-cpu clock couldn't be pinned to "
|
|
|
|
"cpu %d\n",
|
|
|
|
__func__,
|
|
|
|
cpu);
|
|
|
|
}
|
2001-08-22 04:07:27 +00:00
|
|
|
}
|
2008-04-02 11:20:30 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
SYSINIT(start_softclock, SI_SUB_SOFTINTR, SI_ORDER_FIRST, start_softclock, NULL);
|
|
|
|
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#define CC_HASH_SHIFT 8
|
|
|
|
|
|
|
|
static inline u_int
|
|
|
|
callout_hash(sbintime_t sbt)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (sbt >> (32 - CC_HASH_SHIFT));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline u_int
|
|
|
|
callout_get_bucket(sbintime_t sbt)
|
|
|
|
{
|
|
|
|
|
|
|
|
return (callout_hash(sbt) & callwheelmask);
|
|
|
|
}
|
|
|
|
|
2008-04-02 11:20:30 +00:00
|
|
|
void
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
callout_process(sbintime_t now)
|
2008-04-02 11:20:30 +00:00
|
|
|
{
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
struct callout *tmp, *tmpn;
|
2008-04-02 11:20:30 +00:00
|
|
|
struct callout_cpu *cc;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
struct callout_list *sc;
|
|
|
|
sbintime_t first, last, max, tmp_max;
|
|
|
|
uint32_t lookahead;
|
|
|
|
u_int firstb, lastb, nowb;
|
|
|
|
#ifdef CALLOUT_PROFILING
|
|
|
|
int depth_dir = 0, mpcalls_dir = 0, lockcalls_dir = 0;
|
|
|
|
#endif
|
2015-01-22 11:12:42 +00:00
|
|
|
|
2008-04-02 11:20:30 +00:00
|
|
|
cc = CC_SELF();
|
2015-01-22 11:12:42 +00:00
|
|
|
mtx_lock_spin_flags(&cc->cc_lock, MTX_QUIET);
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
|
|
|
|
/* Compute the buckets of the last scan and present times. */
|
|
|
|
firstb = callout_hash(cc->cc_lastscan);
|
|
|
|
cc->cc_lastscan = now;
|
|
|
|
nowb = callout_hash(now);
|
|
|
|
|
|
|
|
/* Compute the last bucket and minimum time of the bucket after it. */
|
|
|
|
if (nowb == firstb)
|
|
|
|
lookahead = (SBT_1S / 16);
|
|
|
|
else if (nowb - firstb == 1)
|
|
|
|
lookahead = (SBT_1S / 8);
|
|
|
|
else
|
|
|
|
lookahead = (SBT_1S / 2);
|
|
|
|
first = last = now;
|
|
|
|
first += (lookahead / 2);
|
|
|
|
last += lookahead;
|
|
|
|
last &= (0xffffffffffffffffLLU << (32 - CC_HASH_SHIFT));
|
|
|
|
lastb = callout_hash(last) - 1;
|
|
|
|
max = last;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check if we wrapped around the entire wheel from the last scan.
|
|
|
|
* In case, we need to scan entirely the wheel for pending callouts.
|
|
|
|
*/
|
|
|
|
if (lastb - firstb >= callwheelsize) {
|
|
|
|
lastb = firstb + callwheelsize - 1;
|
|
|
|
if (nowb - firstb >= callwheelsize)
|
|
|
|
nowb = lastb;
|
2008-07-19 05:18:29 +00:00
|
|
|
}
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
|
|
|
|
/* Iterate callwheel from firstb to nowb and then up to lastb. */
|
|
|
|
do {
|
|
|
|
sc = &cc->cc_callwheel[firstb & callwheelmask];
|
|
|
|
tmp = LIST_FIRST(sc);
|
|
|
|
while (tmp != NULL) {
|
|
|
|
/* Run the callout if present time within allowed. */
|
|
|
|
if (tmp->c_time <= now) {
|
|
|
|
/*
|
|
|
|
* Consumer told us the callout may be run
|
|
|
|
* directly from hardware interrupt context.
|
|
|
|
*/
|
2015-03-28 12:50:24 +00:00
|
|
|
if (tmp->c_iflags & CALLOUT_DIRECT) {
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#ifdef CALLOUT_PROFILING
|
|
|
|
++depth_dir;
|
|
|
|
#endif
|
2015-02-12 13:31:08 +00:00
|
|
|
cc_exec_next(cc) =
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
LIST_NEXT(tmp, c_links.le);
|
|
|
|
cc->cc_bucket = firstb & callwheelmask;
|
|
|
|
LIST_REMOVE(tmp, c_links.le);
|
|
|
|
softclock_call_cc(tmp, cc,
|
|
|
|
#ifdef CALLOUT_PROFILING
|
|
|
|
&mpcalls_dir, &lockcalls_dir, NULL,
|
|
|
|
#endif
|
|
|
|
1);
|
2015-02-12 13:31:08 +00:00
|
|
|
tmp = cc_exec_next(cc);
|
|
|
|
cc_exec_next(cc) = NULL;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
} else {
|
|
|
|
tmpn = LIST_NEXT(tmp, c_links.le);
|
|
|
|
LIST_REMOVE(tmp, c_links.le);
|
|
|
|
TAILQ_INSERT_TAIL(&cc->cc_expireq,
|
|
|
|
tmp, c_links.tqe);
|
2015-03-28 12:50:24 +00:00
|
|
|
tmp->c_iflags |= CALLOUT_PROCESSED;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
tmp = tmpn;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* Skip events from distant future. */
|
|
|
|
if (tmp->c_time >= max)
|
|
|
|
goto next;
|
|
|
|
/*
|
|
|
|
* Event minimal time is bigger than present maximal
|
|
|
|
* time, so it cannot be aggregated.
|
|
|
|
*/
|
|
|
|
if (tmp->c_time > last) {
|
|
|
|
lastb = nowb;
|
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
/* Update first and last time, respecting this event. */
|
|
|
|
if (tmp->c_time < first)
|
|
|
|
first = tmp->c_time;
|
|
|
|
tmp_max = tmp->c_time + tmp->c_precision;
|
|
|
|
if (tmp_max < last)
|
|
|
|
last = tmp_max;
|
|
|
|
next:
|
|
|
|
tmp = LIST_NEXT(tmp, c_links.le);
|
|
|
|
}
|
|
|
|
/* Proceed with the next bucket. */
|
|
|
|
firstb++;
|
|
|
|
/*
|
|
|
|
* Stop if we looked after present time and found
|
|
|
|
* some event we can't execute at now.
|
|
|
|
* Stop if we looked far enough into the future.
|
|
|
|
*/
|
|
|
|
} while (((int)(firstb - lastb)) <= 0);
|
|
|
|
cc->cc_firstevent = last;
|
|
|
|
#ifndef NO_EVENTTIMERS
|
|
|
|
cpu_new_callout(curcpu, last, first);
|
|
|
|
#endif
|
|
|
|
#ifdef CALLOUT_PROFILING
|
|
|
|
avg_depth_dir += (depth_dir * 1000 - avg_depth_dir) >> 8;
|
|
|
|
avg_mpcalls_dir += (mpcalls_dir * 1000 - avg_mpcalls_dir) >> 8;
|
|
|
|
avg_lockcalls_dir += (lockcalls_dir * 1000 - avg_lockcalls_dir) >> 8;
|
|
|
|
#endif
|
2015-01-22 11:12:42 +00:00
|
|
|
mtx_unlock_spin_flags(&cc->cc_lock, MTX_QUIET);
|
2008-04-02 11:20:30 +00:00
|
|
|
/*
|
|
|
|
* swi_sched acquires the thread lock, so we don't want to call it
|
|
|
|
* with cc_lock held; incorrect locking order.
|
|
|
|
*/
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
if (!TAILQ_EMPTY(&cc->cc_expireq))
|
2008-04-02 11:20:30 +00:00
|
|
|
swi_sched(cc->cc_cookie, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct callout_cpu *
|
|
|
|
callout_lock(struct callout *c)
|
|
|
|
{
|
|
|
|
struct callout_cpu *cc;
|
2015-01-22 11:12:42 +00:00
|
|
|
int cpu;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
cpu = c->c_cpu;
|
|
|
|
#ifdef SMP
|
|
|
|
if (cpu == CPUBLOCK) {
|
|
|
|
while (c->c_cpu == CPUBLOCK)
|
|
|
|
cpu_spinwait();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
cc = CC_CPU(cpu);
|
|
|
|
CC_LOCK(cc);
|
|
|
|
if (cpu == c->c_cpu)
|
|
|
|
break;
|
|
|
|
CC_UNLOCK(cc);
|
|
|
|
}
|
2008-04-02 11:20:30 +00:00
|
|
|
return (cc);
|
2001-08-22 04:07:27 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 11:12:42 +00:00
|
|
|
static void
|
|
|
|
callout_cc_add(struct callout *c, struct callout_cpu *cc,
|
|
|
|
sbintime_t sbt, sbintime_t precision, void (*func)(void *),
|
2015-02-12 13:31:08 +00:00
|
|
|
void *arg, int cpu, int flags)
|
2011-04-08 18:48:57 +00:00
|
|
|
{
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
int bucket;
|
2011-04-08 18:48:57 +00:00
|
|
|
|
|
|
|
CC_LOCK_ASSERT(cc);
|
2015-01-22 11:12:42 +00:00
|
|
|
if (sbt < cc->cc_lastscan)
|
|
|
|
sbt = cc->cc_lastscan;
|
|
|
|
c->c_arg = arg;
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags |= CALLOUT_PENDING;
|
|
|
|
c->c_iflags &= ~CALLOUT_PROCESSED;
|
|
|
|
c->c_flags |= CALLOUT_ACTIVE;
|
2015-04-13 23:06:13 +00:00
|
|
|
if (flags & C_DIRECT_EXEC)
|
2015-04-14 00:02:39 +00:00
|
|
|
c->c_iflags |= CALLOUT_DIRECT;
|
2015-01-22 11:12:42 +00:00
|
|
|
c->c_func = func;
|
|
|
|
c->c_time = sbt;
|
|
|
|
c->c_precision = precision;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
bucket = callout_get_bucket(c->c_time);
|
|
|
|
CTR3(KTR_CALLOUT, "precision set for %p: %d.%08x",
|
|
|
|
c, (int)(c->c_precision >> 32),
|
|
|
|
(u_int)(c->c_precision & 0xffffffff));
|
|
|
|
LIST_INSERT_HEAD(&cc->cc_callwheel[bucket], c, c_links.le);
|
|
|
|
if (cc->cc_bucket == bucket)
|
2015-02-12 13:31:08 +00:00
|
|
|
cc_exec_next(cc) = c;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#ifndef NO_EVENTTIMERS
|
|
|
|
/*
|
|
|
|
* Inform the eventtimers(4) subsystem there's a new callout
|
|
|
|
* that has been inserted, but only if really required.
|
|
|
|
*/
|
2014-04-12 23:29:29 +00:00
|
|
|
if (SBT_MAX - c->c_time < c->c_precision)
|
|
|
|
c->c_precision = SBT_MAX - c->c_time;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
sbt = c->c_time + c->c_precision;
|
|
|
|
if (sbt < cc->cc_firstevent) {
|
|
|
|
cc->cc_firstevent = sbt;
|
2015-01-22 11:12:42 +00:00
|
|
|
cpu_new_callout(cpu, sbt, c->c_time);
|
2011-04-08 18:48:57 +00:00
|
|
|
}
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#endif
|
2011-04-08 18:48:57 +00:00
|
|
|
}
|
|
|
|
|
2012-05-03 20:00:30 +00:00
|
|
|
static void
|
|
|
|
callout_cc_del(struct callout *c, struct callout_cpu *cc)
|
|
|
|
{
|
|
|
|
|
2015-03-28 12:50:24 +00:00
|
|
|
if ((c->c_iflags & CALLOUT_LOCAL_ALLOC) == 0)
|
2015-01-22 11:12:42 +00:00
|
|
|
return;
|
2012-12-05 19:02:22 +00:00
|
|
|
c->c_func = NULL;
|
|
|
|
SLIST_INSERT_HEAD(&cc->cc_callfree, c, c_links.sle);
|
2012-05-03 20:00:30 +00:00
|
|
|
}
|
|
|
|
|
2012-12-05 19:02:22 +00:00
|
|
|
static void
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
softclock_call_cc(struct callout *c, struct callout_cpu *cc,
|
|
|
|
#ifdef CALLOUT_PROFILING
|
|
|
|
int *mpcalls, int *lockcalls, int *gcalls,
|
|
|
|
#endif
|
|
|
|
int direct)
|
2012-05-03 20:00:30 +00:00
|
|
|
{
|
2015-01-22 11:12:42 +00:00
|
|
|
struct rm_priotracker tracker;
|
|
|
|
void (*c_func)(void *);
|
2012-05-03 20:00:30 +00:00
|
|
|
void *c_arg;
|
2015-01-22 11:12:42 +00:00
|
|
|
struct lock_class *class;
|
2012-05-03 20:00:30 +00:00
|
|
|
struct lock_object *c_lock;
|
2015-01-22 11:12:42 +00:00
|
|
|
uintptr_t lock_status;
|
2015-03-28 12:50:24 +00:00
|
|
|
int c_iflags;
|
2015-01-22 11:12:42 +00:00
|
|
|
#ifdef SMP
|
|
|
|
struct callout_cpu *new_cc;
|
|
|
|
void (*new_func)(void *);
|
|
|
|
void *new_arg;
|
|
|
|
int flags, new_cpu;
|
|
|
|
sbintime_t new_prec, new_time;
|
|
|
|
#endif
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#if defined(DIAGNOSTIC) || defined(CALLOUT_PROFILING)
|
2013-03-04 15:03:52 +00:00
|
|
|
sbintime_t sbt1, sbt2;
|
2012-05-03 20:00:30 +00:00
|
|
|
struct timespec ts2;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
static sbintime_t maxdt = 2 * SBT_1MS; /* 2 msec */
|
2012-05-03 20:00:30 +00:00
|
|
|
static timeout_t *lastfunc;
|
|
|
|
#endif
|
|
|
|
|
2015-03-28 12:50:24 +00:00
|
|
|
KASSERT((c->c_iflags & CALLOUT_PENDING) == CALLOUT_PENDING,
|
|
|
|
("softclock_call_cc: pend %p %x", c, c->c_iflags));
|
|
|
|
KASSERT((c->c_flags & CALLOUT_ACTIVE) == CALLOUT_ACTIVE,
|
|
|
|
("softclock_call_cc: act %p %x", c, c->c_flags));
|
2015-01-22 11:12:42 +00:00
|
|
|
class = (c->c_lock != NULL) ? LOCK_CLASS(c->c_lock) : NULL;
|
|
|
|
lock_status = 0;
|
|
|
|
if (c->c_flags & CALLOUT_SHAREDLOCK) {
|
|
|
|
if (class == &lock_class_rm)
|
|
|
|
lock_status = (uintptr_t)&tracker;
|
|
|
|
else
|
|
|
|
lock_status = 1;
|
|
|
|
}
|
2012-05-03 20:00:30 +00:00
|
|
|
c_lock = c->c_lock;
|
|
|
|
c_func = c->c_func;
|
|
|
|
c_arg = c->c_arg;
|
2015-03-28 12:50:24 +00:00
|
|
|
c_iflags = c->c_iflags;
|
|
|
|
if (c->c_iflags & CALLOUT_LOCAL_ALLOC)
|
|
|
|
c->c_iflags = CALLOUT_LOCAL_ALLOC;
|
2015-01-22 11:12:42 +00:00
|
|
|
else
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags &= ~CALLOUT_PENDING;
|
2015-02-09 19:19:44 +00:00
|
|
|
|
|
|
|
cc_exec_curr(cc, direct) = c;
|
|
|
|
cc_exec_cancel(cc, direct) = false;
|
2015-11-10 14:49:32 +00:00
|
|
|
cc_exec_drain(cc, direct) = NULL;
|
2015-01-22 11:12:42 +00:00
|
|
|
CC_UNLOCK(cc);
|
2012-05-03 20:00:30 +00:00
|
|
|
if (c_lock != NULL) {
|
2015-01-22 11:12:42 +00:00
|
|
|
class->lc_lock(c_lock, lock_status);
|
2012-05-03 20:00:30 +00:00
|
|
|
/*
|
2015-01-22 11:12:42 +00:00
|
|
|
* The callout may have been cancelled
|
|
|
|
* while we switched locks.
|
2012-05-03 20:00:30 +00:00
|
|
|
*/
|
2015-02-09 19:19:44 +00:00
|
|
|
if (cc_exec_cancel(cc, direct)) {
|
2015-01-22 11:12:42 +00:00
|
|
|
class->lc_unlock(c_lock);
|
|
|
|
goto skip;
|
2012-05-03 20:00:30 +00:00
|
|
|
}
|
2015-01-22 11:12:42 +00:00
|
|
|
/* The callout cannot be stopped now. */
|
2015-02-09 19:19:44 +00:00
|
|
|
cc_exec_cancel(cc, direct) = true;
|
2012-05-03 20:00:30 +00:00
|
|
|
if (c_lock == &Giant.lock_object) {
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#ifdef CALLOUT_PROFILING
|
2012-05-03 20:00:30 +00:00
|
|
|
(*gcalls)++;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#endif
|
|
|
|
CTR3(KTR_CALLOUT, "callout giant %p func %p arg %p",
|
2012-05-03 20:00:30 +00:00
|
|
|
c, c_func, c_arg);
|
|
|
|
} else {
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#ifdef CALLOUT_PROFILING
|
2012-05-03 20:00:30 +00:00
|
|
|
(*lockcalls)++;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#endif
|
2012-05-03 20:00:30 +00:00
|
|
|
CTR3(KTR_CALLOUT, "callout lock %p func %p arg %p",
|
|
|
|
c, c_func, c_arg);
|
|
|
|
}
|
|
|
|
} else {
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#ifdef CALLOUT_PROFILING
|
2012-05-03 20:00:30 +00:00
|
|
|
(*mpcalls)++;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#endif
|
|
|
|
CTR3(KTR_CALLOUT, "callout %p func %p arg %p",
|
2012-05-03 20:00:30 +00:00
|
|
|
c, c_func, c_arg);
|
|
|
|
}
|
2014-10-08 16:22:59 +00:00
|
|
|
KTR_STATE3(KTR_SCHED, "callout", cc->cc_ktr_event_name, "running",
|
|
|
|
"func:%p", c_func, "arg:%p", c_arg, "direct:%d", direct);
|
2013-03-04 15:03:52 +00:00
|
|
|
#if defined(DIAGNOSTIC) || defined(CALLOUT_PROFILING)
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
sbt1 = sbinuptime();
|
2012-05-03 20:00:30 +00:00
|
|
|
#endif
|
|
|
|
THREAD_NO_SLEEPING();
|
2015-12-16 23:39:27 +00:00
|
|
|
SDT_PROBE1(callout_execute, , , callout__start, c);
|
2012-05-03 20:00:30 +00:00
|
|
|
c_func(c_arg);
|
2015-12-16 23:39:27 +00:00
|
|
|
SDT_PROBE1(callout_execute, , , callout__end, c);
|
2012-05-03 20:00:30 +00:00
|
|
|
THREAD_SLEEPING_OK();
|
2013-03-04 15:03:52 +00:00
|
|
|
#if defined(DIAGNOSTIC) || defined(CALLOUT_PROFILING)
|
|
|
|
sbt2 = sbinuptime();
|
|
|
|
sbt2 -= sbt1;
|
|
|
|
if (sbt2 > maxdt) {
|
|
|
|
if (lastfunc != c_func || sbt2 > maxdt * 2) {
|
|
|
|
ts2 = sbttots(sbt2);
|
2012-05-03 20:00:30 +00:00
|
|
|
printf(
|
|
|
|
"Expensive timeout(9) function: %p(%p) %jd.%09ld s\n",
|
|
|
|
c_func, c_arg, (intmax_t)ts2.tv_sec, ts2.tv_nsec);
|
|
|
|
}
|
2013-03-04 15:03:52 +00:00
|
|
|
maxdt = sbt2;
|
2012-05-03 20:00:30 +00:00
|
|
|
lastfunc = c_func;
|
|
|
|
}
|
|
|
|
#endif
|
2014-10-08 16:22:59 +00:00
|
|
|
KTR_STATE0(KTR_SCHED, "callout", cc->cc_ktr_event_name, "idle");
|
2012-05-03 20:00:30 +00:00
|
|
|
CTR1(KTR_CALLOUT, "callout %p finished", c);
|
2015-03-28 12:50:24 +00:00
|
|
|
if ((c_iflags & CALLOUT_RETURNUNLOCKED) == 0)
|
2015-01-22 11:12:42 +00:00
|
|
|
class->lc_unlock(c_lock);
|
|
|
|
skip:
|
2012-05-03 20:00:30 +00:00
|
|
|
CC_LOCK(cc);
|
2015-02-09 19:19:44 +00:00
|
|
|
KASSERT(cc_exec_curr(cc, direct) == c, ("mishandled cc_curr"));
|
|
|
|
cc_exec_curr(cc, direct) = NULL;
|
2015-11-10 14:49:32 +00:00
|
|
|
if (cc_exec_drain(cc, direct)) {
|
|
|
|
void (*drain)(void *);
|
|
|
|
|
|
|
|
drain = cc_exec_drain(cc, direct);
|
|
|
|
cc_exec_drain(cc, direct) = NULL;
|
|
|
|
CC_UNLOCK(cc);
|
|
|
|
drain(c_arg);
|
|
|
|
CC_LOCK(cc);
|
|
|
|
}
|
2015-02-09 19:19:44 +00:00
|
|
|
if (cc_exec_waiting(cc, direct)) {
|
2012-05-03 20:00:30 +00:00
|
|
|
/*
|
2015-01-22 11:12:42 +00:00
|
|
|
* There is someone waiting for the
|
|
|
|
* callout to complete.
|
|
|
|
* If the callout was scheduled for
|
|
|
|
* migration just cancel it.
|
2012-05-03 20:00:30 +00:00
|
|
|
*/
|
2015-01-22 11:12:42 +00:00
|
|
|
if (cc_cce_migrating(cc, direct)) {
|
|
|
|
cc_cce_cleanup(cc, direct);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It should be assert here that the callout is not
|
|
|
|
* destroyed but that is not easy.
|
|
|
|
*/
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags &= ~CALLOUT_DFRMIGRATION;
|
2015-01-22 11:12:42 +00:00
|
|
|
}
|
2015-02-09 19:19:44 +00:00
|
|
|
cc_exec_waiting(cc, direct) = false;
|
2015-01-15 15:32:30 +00:00
|
|
|
CC_UNLOCK(cc);
|
2015-02-09 19:19:44 +00:00
|
|
|
wakeup(&cc_exec_waiting(cc, direct));
|
2012-05-03 20:00:30 +00:00
|
|
|
CC_LOCK(cc);
|
2015-01-22 11:12:42 +00:00
|
|
|
} else if (cc_cce_migrating(cc, direct)) {
|
2015-03-28 12:50:24 +00:00
|
|
|
KASSERT((c_iflags & CALLOUT_LOCAL_ALLOC) == 0,
|
2015-01-22 11:12:42 +00:00
|
|
|
("Migrating legacy callout %p", c));
|
|
|
|
#ifdef SMP
|
|
|
|
/*
|
|
|
|
* If the callout was scheduled for
|
|
|
|
* migration just perform it now.
|
|
|
|
*/
|
2015-02-09 19:19:44 +00:00
|
|
|
new_cpu = cc_migration_cpu(cc, direct);
|
|
|
|
new_time = cc_migration_time(cc, direct);
|
|
|
|
new_prec = cc_migration_prec(cc, direct);
|
|
|
|
new_func = cc_migration_func(cc, direct);
|
|
|
|
new_arg = cc_migration_arg(cc, direct);
|
2015-01-22 11:12:42 +00:00
|
|
|
cc_cce_cleanup(cc, direct);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It should be assert here that the callout is not destroyed
|
|
|
|
* but that is not easy.
|
|
|
|
*
|
|
|
|
* As first thing, handle deferred callout stops.
|
|
|
|
*/
|
2015-02-09 19:19:44 +00:00
|
|
|
if (!callout_migrating(c)) {
|
2015-01-22 11:12:42 +00:00
|
|
|
CTR3(KTR_CALLOUT,
|
|
|
|
"deferred cancelled %p func %p arg %p",
|
|
|
|
c, new_func, new_arg);
|
|
|
|
callout_cc_del(c, cc);
|
|
|
|
return;
|
|
|
|
}
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags &= ~CALLOUT_DFRMIGRATION;
|
2015-01-22 11:12:42 +00:00
|
|
|
|
|
|
|
new_cc = callout_cpu_switch(c, cc, new_cpu);
|
|
|
|
flags = (direct) ? C_DIRECT_EXEC : 0;
|
|
|
|
callout_cc_add(c, new_cc, new_time, new_prec, new_func,
|
2015-02-12 13:31:08 +00:00
|
|
|
new_arg, new_cpu, flags);
|
2015-01-22 11:12:42 +00:00
|
|
|
CC_UNLOCK(new_cc);
|
|
|
|
CC_LOCK(cc);
|
|
|
|
#else
|
|
|
|
panic("migration should not happen");
|
|
|
|
#endif
|
2015-01-15 15:32:30 +00:00
|
|
|
}
|
2015-01-22 11:12:42 +00:00
|
|
|
/*
|
|
|
|
* If the current callout is locally allocated (from
|
|
|
|
* timeout(9)) then put it on the freelist.
|
|
|
|
*
|
2015-03-28 12:50:24 +00:00
|
|
|
* Note: we need to check the cached copy of c_iflags because
|
2015-01-22 11:12:42 +00:00
|
|
|
* if it was not local, then it's not safe to deref the
|
|
|
|
* callout pointer.
|
|
|
|
*/
|
2015-03-28 12:50:24 +00:00
|
|
|
KASSERT((c_iflags & CALLOUT_LOCAL_ALLOC) == 0 ||
|
|
|
|
c->c_iflags == CALLOUT_LOCAL_ALLOC,
|
2015-01-22 11:12:42 +00:00
|
|
|
("corrupted callout"));
|
2015-03-28 12:50:24 +00:00
|
|
|
if (c_iflags & CALLOUT_LOCAL_ALLOC)
|
2015-01-22 11:12:42 +00:00
|
|
|
callout_cc_del(c, cc);
|
2012-05-03 20:00:30 +00:00
|
|
|
}
|
|
|
|
|
1997-09-21 22:00:25 +00:00
|
|
|
/*
|
2013-02-28 16:22:49 +00:00
|
|
|
* The callout mechanism is based on the work of Adam M. Costello and
|
1997-09-21 22:00:25 +00:00
|
|
|
* George Varghese, published in a technical report entitled "Redesigning
|
|
|
|
* the BSD Callout and Timer Facilities" and modified slightly for inclusion
|
|
|
|
* in FreeBSD by Justin T. Gibbs. The original work on the data structures
|
2004-04-25 04:10:17 +00:00
|
|
|
* used in this implementation was published by G. Varghese and T. Lauck in
|
1997-09-21 22:00:25 +00:00
|
|
|
* the paper "Hashed and Hierarchical Timing Wheels: Data Structures for
|
|
|
|
* the Efficient Implementation of a Timer Facility" in the Proceedings of
|
|
|
|
* the 11th ACM Annual Symposium on Operating Systems Principles,
|
|
|
|
* Austin, Texas Nov 1987.
|
|
|
|
*/
|
1998-01-10 13:16:26 +00:00
|
|
|
|
1994-05-24 10:09:53 +00:00
|
|
|
/*
|
|
|
|
* Software (low priority) clock interrupt.
|
|
|
|
* Run periodic events from timeout queue.
|
|
|
|
*/
|
|
|
|
void
|
2008-04-02 11:20:30 +00:00
|
|
|
softclock(void *arg)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2008-04-02 11:20:30 +00:00
|
|
|
struct callout_cpu *cc;
|
2002-09-04 20:05:00 +00:00
|
|
|
struct callout *c;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#ifdef CALLOUT_PROFILING
|
|
|
|
int depth = 0, gcalls = 0, lockcalls = 0, mpcalls = 0;
|
|
|
|
#endif
|
|
|
|
|
2008-04-02 11:20:30 +00:00
|
|
|
cc = (struct callout_cpu *)arg;
|
|
|
|
CC_LOCK(cc);
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
while ((c = TAILQ_FIRST(&cc->cc_expireq)) != NULL) {
|
|
|
|
TAILQ_REMOVE(&cc->cc_expireq, c, c_links.tqe);
|
|
|
|
softclock_call_cc(c, cc,
|
|
|
|
#ifdef CALLOUT_PROFILING
|
|
|
|
&mpcalls, &lockcalls, &gcalls,
|
|
|
|
#endif
|
|
|
|
0);
|
|
|
|
#ifdef CALLOUT_PROFILING
|
|
|
|
++depth;
|
|
|
|
#endif
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#ifdef CALLOUT_PROFILING
|
2003-06-04 05:25:58 +00:00
|
|
|
avg_depth += (depth * 1000 - avg_depth) >> 8;
|
|
|
|
avg_mpcalls += (mpcalls * 1000 - avg_mpcalls) >> 8;
|
2007-11-20 00:37:45 +00:00
|
|
|
avg_lockcalls += (lockcalls * 1000 - avg_lockcalls) >> 8;
|
2003-06-04 05:25:58 +00:00
|
|
|
avg_gcalls += (gcalls * 1000 - avg_gcalls) >> 8;
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
#endif
|
2008-04-02 11:20:30 +00:00
|
|
|
CC_UNLOCK(cc);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* timeout --
|
|
|
|
* Execute a function after a specified length of time.
|
|
|
|
*
|
|
|
|
* untimeout --
|
|
|
|
* Cancel previous timeout function call.
|
|
|
|
*
|
1997-09-21 22:00:25 +00:00
|
|
|
* callout_handle_init --
|
|
|
|
* Initialize a handle so that using it with untimeout is benign.
|
|
|
|
*
|
1994-05-24 10:09:53 +00:00
|
|
|
* See AT&T BCI Driver Reference Manual for specification. This
|
2013-03-03 09:11:24 +00:00
|
|
|
* implementation differs from that one in that although an
|
1997-09-21 22:00:25 +00:00
|
|
|
* identification value is returned from timeout, the original
|
|
|
|
* arguments to timeout as well as the identifier are used to
|
|
|
|
* identify entries for untimeout.
|
1994-05-24 10:09:53 +00:00
|
|
|
*/
|
1997-09-21 22:00:25 +00:00
|
|
|
struct callout_handle
|
2014-06-05 03:46:46 +00:00
|
|
|
timeout(timeout_t *ftn, void *arg, int to_ticks)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2008-04-02 11:20:30 +00:00
|
|
|
struct callout_cpu *cc;
|
1997-09-21 22:00:25 +00:00
|
|
|
struct callout *new;
|
|
|
|
struct callout_handle handle;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
2008-04-02 11:20:30 +00:00
|
|
|
cc = CC_CPU(timeout_cpu);
|
|
|
|
CC_LOCK(cc);
|
1994-05-24 10:09:53 +00:00
|
|
|
/* Fill in the next free callout structure. */
|
2008-04-02 11:20:30 +00:00
|
|
|
new = SLIST_FIRST(&cc->cc_callfree);
|
1997-09-21 22:00:25 +00:00
|
|
|
if (new == NULL)
|
|
|
|
/* XXX Attempt to malloc first */
|
1994-05-24 10:09:53 +00:00
|
|
|
panic("timeout table full");
|
2008-04-02 11:20:30 +00:00
|
|
|
SLIST_REMOVE_HEAD(&cc->cc_callfree, c_links.sle);
|
2015-01-22 11:12:42 +00:00
|
|
|
callout_reset(new, to_ticks, ftn, arg);
|
1997-09-21 22:00:25 +00:00
|
|
|
handle.callout = new;
|
2008-04-02 11:20:30 +00:00
|
|
|
CC_UNLOCK(cc);
|
|
|
|
|
1997-09-21 22:00:25 +00:00
|
|
|
return (handle);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-06-05 03:46:46 +00:00
|
|
|
untimeout(timeout_t *ftn, void *arg, struct callout_handle handle)
|
1994-05-24 10:09:53 +00:00
|
|
|
{
|
2008-04-02 11:20:30 +00:00
|
|
|
struct callout_cpu *cc;
|
1994-05-24 10:09:53 +00:00
|
|
|
|
1997-09-21 22:00:25 +00:00
|
|
|
/*
|
|
|
|
* Check for a handle that was initialized
|
|
|
|
* by callout_handle_init, but never used
|
|
|
|
* for a real timeout.
|
|
|
|
*/
|
|
|
|
if (handle.callout == NULL)
|
|
|
|
return;
|
|
|
|
|
2008-04-02 11:20:30 +00:00
|
|
|
cc = callout_lock(handle.callout);
|
2015-01-22 11:12:42 +00:00
|
|
|
if (handle.callout->c_func == ftn && handle.callout->c_arg == arg)
|
2015-01-15 15:32:30 +00:00
|
|
|
callout_stop(handle.callout);
|
2015-01-22 11:12:42 +00:00
|
|
|
CC_UNLOCK(cc);
|
1994-05-24 10:09:53 +00:00
|
|
|
}
|
|
|
|
|
1997-09-21 22:00:25 +00:00
|
|
|
void
|
|
|
|
callout_handle_init(struct callout_handle *handle)
|
|
|
|
{
|
|
|
|
handle->callout = NULL;
|
|
|
|
}
|
|
|
|
|
2016-07-28 08:57:01 +00:00
|
|
|
void
|
|
|
|
callout_when(sbintime_t sbt, sbintime_t precision, int flags,
|
|
|
|
sbintime_t *res, sbintime_t *prec_res)
|
|
|
|
{
|
|
|
|
sbintime_t to_sbt, to_pr;
|
|
|
|
|
|
|
|
if ((flags & (C_ABSOLUTE | C_PRECALC)) != 0) {
|
|
|
|
*res = sbt;
|
|
|
|
*prec_res = precision;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((flags & C_HARDCLOCK) != 0 && sbt < tick_sbt)
|
|
|
|
sbt = tick_sbt;
|
|
|
|
if ((flags & C_HARDCLOCK) != 0 ||
|
|
|
|
#ifdef NO_EVENTTIMERS
|
|
|
|
sbt >= sbt_timethreshold) {
|
|
|
|
to_sbt = getsbinuptime();
|
|
|
|
|
|
|
|
/* Add safety belt for the case of hz > 1000. */
|
|
|
|
to_sbt += tc_tick_sbt - tick_sbt;
|
|
|
|
#else
|
|
|
|
sbt >= sbt_tickthreshold) {
|
|
|
|
/*
|
|
|
|
* Obtain the time of the last hardclock() call on
|
|
|
|
* this CPU directly from the kern_clocksource.c.
|
|
|
|
* This value is per-CPU, but it is equal for all
|
|
|
|
* active ones.
|
|
|
|
*/
|
|
|
|
#ifdef __LP64__
|
|
|
|
to_sbt = DPCPU_GET(hardclocktime);
|
|
|
|
#else
|
|
|
|
spinlock_enter();
|
|
|
|
to_sbt = DPCPU_GET(hardclocktime);
|
|
|
|
spinlock_exit();
|
|
|
|
#endif
|
|
|
|
#endif
|
2016-11-25 18:02:43 +00:00
|
|
|
if (cold && to_sbt == 0)
|
|
|
|
to_sbt = sbinuptime();
|
2016-07-28 08:57:01 +00:00
|
|
|
if ((flags & C_HARDCLOCK) == 0)
|
|
|
|
to_sbt += tick_sbt;
|
|
|
|
} else
|
2016-08-10 14:41:53 +00:00
|
|
|
to_sbt = sbinuptime();
|
2016-07-28 08:57:01 +00:00
|
|
|
if (SBT_MAX - to_sbt < sbt)
|
|
|
|
to_sbt = SBT_MAX;
|
|
|
|
else
|
|
|
|
to_sbt += sbt;
|
|
|
|
*res = to_sbt;
|
|
|
|
to_pr = ((C_PRELGET(flags) < 0) ? sbt >> tc_precexp :
|
|
|
|
sbt >> C_PRELGET(flags));
|
|
|
|
*prec_res = to_pr > precision ? to_pr : precision;
|
|
|
|
}
|
|
|
|
|
1999-03-06 04:46:20 +00:00
|
|
|
/*
|
|
|
|
* New interface; clients allocate their own callout structures.
|
|
|
|
*
|
|
|
|
* callout_reset() - establish or change a timeout
|
|
|
|
* callout_stop() - disestablish a timeout
|
|
|
|
* callout_init() - initialize a callout structure so that it can
|
|
|
|
* safely be passed to callout_reset() and callout_stop()
|
|
|
|
*
|
1999-08-30 21:17:07 +00:00
|
|
|
* <sys/callout.h> defines three convenience macros:
|
1999-03-06 04:46:20 +00:00
|
|
|
*
|
2005-01-19 19:46:35 +00:00
|
|
|
* callout_active() - returns truth if callout has not been stopped,
|
|
|
|
* drained, or deactivated since the last time the callout was
|
|
|
|
* reset.
|
1999-08-30 21:17:07 +00:00
|
|
|
* callout_pending() - returns truth if callout is still waiting for timeout
|
|
|
|
* callout_deactivate() - marks the callout as having been serviced
|
1999-03-06 04:46:20 +00:00
|
|
|
*/
|
2005-09-08 14:20:39 +00:00
|
|
|
int
|
2016-07-28 08:57:01 +00:00
|
|
|
callout_reset_sbt_on(struct callout *c, sbintime_t sbt, sbintime_t prec,
|
2015-01-22 11:12:42 +00:00
|
|
|
void (*ftn)(void *), void *arg, int cpu, int flags)
|
1999-03-06 04:46:20 +00:00
|
|
|
{
|
2016-07-28 08:57:01 +00:00
|
|
|
sbintime_t to_sbt, precision;
|
2015-01-22 11:12:42 +00:00
|
|
|
struct callout_cpu *cc;
|
|
|
|
int cancelled, direct;
|
2015-03-28 12:50:24 +00:00
|
|
|
int ignore_cpu=0;
|
2015-01-15 15:32:30 +00:00
|
|
|
|
2015-01-22 11:12:42 +00:00
|
|
|
cancelled = 0;
|
2015-03-28 12:50:24 +00:00
|
|
|
if (cpu == -1) {
|
|
|
|
ignore_cpu = 1;
|
|
|
|
} else if ((cpu >= MAXCPU) ||
|
2015-03-28 15:07:19 +00:00
|
|
|
((CC_CPU(cpu))->cc_inited == 0)) {
|
2015-03-28 12:50:24 +00:00
|
|
|
/* Invalid CPU spec */
|
|
|
|
panic("Invalid CPU in callout %d", cpu);
|
|
|
|
}
|
2016-07-28 08:57:01 +00:00
|
|
|
callout_when(sbt, prec, flags, &to_sbt, &precision);
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
|
2015-02-12 13:31:08 +00:00
|
|
|
/*
|
|
|
|
* This flag used to be added by callout_cc_add, but the
|
|
|
|
* first time you call this we could end up with the
|
|
|
|
* wrong direct flag if we don't do it before we add.
|
|
|
|
*/
|
|
|
|
if (flags & C_DIRECT_EXEC) {
|
2015-03-28 12:50:24 +00:00
|
|
|
direct = 1;
|
|
|
|
} else {
|
|
|
|
direct = 0;
|
2015-02-12 13:31:08 +00:00
|
|
|
}
|
2015-01-22 11:12:42 +00:00
|
|
|
KASSERT(!direct || c->c_lock == NULL,
|
|
|
|
("%s: direct callout %p has lock", __func__, c));
|
|
|
|
cc = callout_lock(c);
|
2015-03-28 12:50:24 +00:00
|
|
|
/*
|
|
|
|
* Don't allow migration of pre-allocated callouts lest they
|
|
|
|
* become unbalanced or handle the case where the user does
|
|
|
|
* not care.
|
|
|
|
*/
|
|
|
|
if ((c->c_iflags & CALLOUT_LOCAL_ALLOC) ||
|
|
|
|
ignore_cpu) {
|
|
|
|
cpu = c->c_cpu;
|
|
|
|
}
|
|
|
|
|
2015-02-09 19:19:44 +00:00
|
|
|
if (cc_exec_curr(cc, direct) == c) {
|
2015-01-22 11:12:42 +00:00
|
|
|
/*
|
|
|
|
* We're being asked to reschedule a callout which is
|
|
|
|
* currently in progress. If there is a lock then we
|
|
|
|
* can cancel the callout if it has not really started.
|
|
|
|
*/
|
2015-09-01 09:27:14 +00:00
|
|
|
if (c->c_lock != NULL && !cc_exec_cancel(cc, direct))
|
2015-02-09 19:19:44 +00:00
|
|
|
cancelled = cc_exec_cancel(cc, direct) = true;
|
2016-08-16 23:00:22 +00:00
|
|
|
if (cc_exec_waiting(cc, direct) || cc_exec_drain(cc, direct)) {
|
2015-01-22 11:12:42 +00:00
|
|
|
/*
|
|
|
|
* Someone has called callout_drain to kill this
|
|
|
|
* callout. Don't reschedule.
|
|
|
|
*/
|
|
|
|
CTR4(KTR_CALLOUT, "%s %p func %p arg %p",
|
|
|
|
cancelled ? "cancelled" : "failed to cancel",
|
|
|
|
c, c->c_func, c->c_arg);
|
|
|
|
CC_UNLOCK(cc);
|
|
|
|
return (cancelled);
|
|
|
|
}
|
2015-02-09 19:19:44 +00:00
|
|
|
#ifdef SMP
|
|
|
|
if (callout_migrating(c)) {
|
|
|
|
/*
|
|
|
|
* This only occurs when a second callout_reset_sbt_on
|
|
|
|
* is made after a previous one moved it into
|
|
|
|
* deferred migration (below). Note we do *not* change
|
|
|
|
* the prev_cpu even though the previous target may
|
|
|
|
* be different.
|
|
|
|
*/
|
|
|
|
cc_migration_cpu(cc, direct) = cpu;
|
|
|
|
cc_migration_time(cc, direct) = to_sbt;
|
|
|
|
cc_migration_prec(cc, direct) = precision;
|
|
|
|
cc_migration_func(cc, direct) = ftn;
|
|
|
|
cc_migration_arg(cc, direct) = arg;
|
|
|
|
cancelled = 1;
|
|
|
|
CC_UNLOCK(cc);
|
|
|
|
return (cancelled);
|
|
|
|
}
|
|
|
|
#endif
|
2015-01-22 11:12:42 +00:00
|
|
|
}
|
2015-03-28 12:50:24 +00:00
|
|
|
if (c->c_iflags & CALLOUT_PENDING) {
|
|
|
|
if ((c->c_iflags & CALLOUT_PROCESSED) == 0) {
|
2015-02-12 13:31:08 +00:00
|
|
|
if (cc_exec_next(cc) == c)
|
|
|
|
cc_exec_next(cc) = LIST_NEXT(c, c_links.le);
|
2015-01-22 11:12:42 +00:00
|
|
|
LIST_REMOVE(c, c_links.le);
|
2015-03-28 12:50:24 +00:00
|
|
|
} else {
|
2015-01-22 11:12:42 +00:00
|
|
|
TAILQ_REMOVE(&cc->cc_expireq, c, c_links.tqe);
|
2015-03-28 12:50:24 +00:00
|
|
|
}
|
2015-01-22 11:12:42 +00:00
|
|
|
cancelled = 1;
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags &= ~ CALLOUT_PENDING;
|
|
|
|
c->c_flags &= ~ CALLOUT_ACTIVE;
|
2015-01-22 11:12:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef SMP
|
|
|
|
/*
|
|
|
|
* If the callout must migrate try to perform it immediately.
|
|
|
|
* If the callout is currently running, just defer the migration
|
|
|
|
* to a more appropriate moment.
|
|
|
|
*/
|
|
|
|
if (c->c_cpu != cpu) {
|
2015-02-09 19:19:44 +00:00
|
|
|
if (cc_exec_curr(cc, direct) == c) {
|
|
|
|
/*
|
|
|
|
* Pending will have been removed since we are
|
|
|
|
* actually executing the callout on another
|
|
|
|
* CPU. That callout should be waiting on the
|
|
|
|
* lock the caller holds. If we set both
|
|
|
|
* active/and/pending after we return and the
|
|
|
|
* lock on the executing callout proceeds, it
|
|
|
|
* will then see pending is true and return.
|
|
|
|
* At the return from the actual callout execution
|
|
|
|
* the migration will occur in softclock_call_cc
|
|
|
|
* and this new callout will be placed on the
|
|
|
|
* new CPU via a call to callout_cpu_switch() which
|
|
|
|
* will get the lock on the right CPU followed
|
|
|
|
* by a call callout_cc_add() which will add it there.
|
|
|
|
* (see above in softclock_call_cc()).
|
|
|
|
*/
|
|
|
|
cc_migration_cpu(cc, direct) = cpu;
|
|
|
|
cc_migration_time(cc, direct) = to_sbt;
|
|
|
|
cc_migration_prec(cc, direct) = precision;
|
|
|
|
cc_migration_func(cc, direct) = ftn;
|
|
|
|
cc_migration_arg(cc, direct) = arg;
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags |= (CALLOUT_DFRMIGRATION | CALLOUT_PENDING);
|
|
|
|
c->c_flags |= CALLOUT_ACTIVE;
|
2015-01-22 11:12:42 +00:00
|
|
|
CTR6(KTR_CALLOUT,
|
|
|
|
"migration of %p func %p arg %p in %d.%08x to %u deferred",
|
|
|
|
c, c->c_func, c->c_arg, (int)(to_sbt >> 32),
|
|
|
|
(u_int)(to_sbt & 0xffffffff), cpu);
|
|
|
|
CC_UNLOCK(cc);
|
|
|
|
return (cancelled);
|
|
|
|
}
|
|
|
|
cc = callout_cpu_switch(c, cc, cpu);
|
2008-04-02 11:20:30 +00:00
|
|
|
}
|
2015-01-22 11:12:42 +00:00
|
|
|
#endif
|
2008-04-02 11:20:30 +00:00
|
|
|
|
2015-02-12 13:31:08 +00:00
|
|
|
callout_cc_add(c, cc, to_sbt, precision, ftn, arg, cpu, flags);
|
2015-01-22 11:12:42 +00:00
|
|
|
CTR6(KTR_CALLOUT, "%sscheduled %p func %p arg %p in %d.%08x",
|
|
|
|
cancelled ? "re" : "", c, c->c_func, c->c_arg, (int)(to_sbt >> 32),
|
|
|
|
(u_int)(to_sbt & 0xffffffff));
|
|
|
|
CC_UNLOCK(cc);
|
|
|
|
|
|
|
|
return (cancelled);
|
1999-03-06 04:46:20 +00:00
|
|
|
}
|
|
|
|
|
2008-08-02 17:42:38 +00:00
|
|
|
/*
|
|
|
|
* Common idioms that can be optimized in the future.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
callout_schedule_on(struct callout *c, int to_ticks, int cpu)
|
|
|
|
{
|
|
|
|
return callout_reset_on(c, to_ticks, c->c_func, c->c_arg, cpu);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
callout_schedule(struct callout *c, int to_ticks)
|
|
|
|
{
|
|
|
|
return callout_reset_on(c, to_ticks, c->c_func, c->c_arg, c->c_cpu);
|
|
|
|
}
|
|
|
|
|
2004-04-06 23:08:49 +00:00
|
|
|
int
|
2016-03-02 18:46:17 +00:00
|
|
|
_callout_stop_safe(struct callout *c, int flags, void (*drain)(void *))
|
2004-04-06 23:08:49 +00:00
|
|
|
{
|
2015-01-22 11:12:42 +00:00
|
|
|
struct callout_cpu *cc, *old_cc;
|
|
|
|
struct lock_class *class;
|
|
|
|
int direct, sq_locked, use_lock;
|
2016-07-20 16:44:22 +00:00
|
|
|
int cancelled, not_on_a_list;
|
2015-01-15 15:32:30 +00:00
|
|
|
|
2016-03-02 18:46:17 +00:00
|
|
|
if ((flags & CS_DRAIN) != 0)
|
2015-01-26 04:04:57 +00:00
|
|
|
WITNESS_WARN(WARN_GIANTOK | WARN_SLEEPOK, c->c_lock,
|
|
|
|
"calling %s", __func__);
|
|
|
|
|
2015-01-22 11:12:42 +00:00
|
|
|
/*
|
|
|
|
* Some old subsystems don't hold Giant while running a callout_stop(),
|
|
|
|
* so just discard this check for the moment.
|
|
|
|
*/
|
2016-03-02 18:46:17 +00:00
|
|
|
if ((flags & CS_DRAIN) == 0 && c->c_lock != NULL) {
|
2015-01-22 11:12:42 +00:00
|
|
|
if (c->c_lock == &Giant.lock_object)
|
|
|
|
use_lock = mtx_owned(&Giant);
|
|
|
|
else {
|
|
|
|
use_lock = 1;
|
|
|
|
class = LOCK_CLASS(c->c_lock);
|
|
|
|
class->lc_assert(c->c_lock, LA_XLOCKED);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
use_lock = 0;
|
2015-03-28 12:50:24 +00:00
|
|
|
if (c->c_iflags & CALLOUT_DIRECT) {
|
|
|
|
direct = 1;
|
|
|
|
} else {
|
|
|
|
direct = 0;
|
|
|
|
}
|
2015-01-22 11:12:42 +00:00
|
|
|
sq_locked = 0;
|
|
|
|
old_cc = NULL;
|
|
|
|
again:
|
|
|
|
cc = callout_lock(c);
|
2015-01-15 15:32:30 +00:00
|
|
|
|
2015-03-28 12:50:24 +00:00
|
|
|
if ((c->c_iflags & (CALLOUT_DFRMIGRATION | CALLOUT_PENDING)) ==
|
|
|
|
(CALLOUT_DFRMIGRATION | CALLOUT_PENDING) &&
|
|
|
|
((c->c_flags & CALLOUT_ACTIVE) == CALLOUT_ACTIVE)) {
|
2015-02-09 19:19:44 +00:00
|
|
|
/*
|
|
|
|
* Special case where this slipped in while we
|
|
|
|
* were migrating *as* the callout is about to
|
|
|
|
* execute. The caller probably holds the lock
|
|
|
|
* the callout wants.
|
|
|
|
*
|
|
|
|
* Get rid of the migration first. Then set
|
|
|
|
* the flag that tells this code *not* to
|
|
|
|
* try to remove it from any lists (its not
|
|
|
|
* on one yet). When the callout wheel runs,
|
|
|
|
* it will ignore this callout.
|
|
|
|
*/
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags &= ~CALLOUT_PENDING;
|
|
|
|
c->c_flags &= ~CALLOUT_ACTIVE;
|
2015-02-09 19:19:44 +00:00
|
|
|
not_on_a_list = 1;
|
|
|
|
} else {
|
|
|
|
not_on_a_list = 0;
|
|
|
|
}
|
|
|
|
|
2015-01-22 11:12:42 +00:00
|
|
|
/*
|
|
|
|
* If the callout was migrating while the callout cpu lock was
|
|
|
|
* dropped, just drop the sleepqueue lock and check the states
|
|
|
|
* again.
|
|
|
|
*/
|
|
|
|
if (sq_locked != 0 && cc != old_cc) {
|
|
|
|
#ifdef SMP
|
|
|
|
CC_UNLOCK(cc);
|
2015-02-09 19:19:44 +00:00
|
|
|
sleepq_release(&cc_exec_waiting(old_cc, direct));
|
2015-01-22 11:12:42 +00:00
|
|
|
sq_locked = 0;
|
|
|
|
old_cc = NULL;
|
|
|
|
goto again;
|
|
|
|
#else
|
|
|
|
panic("migration should not happen");
|
|
|
|
#endif
|
|
|
|
}
|
2016-07-20 16:44:22 +00:00
|
|
|
|
2015-01-22 11:12:42 +00:00
|
|
|
/*
|
2016-07-20 16:44:22 +00:00
|
|
|
* If the callout is running, try to stop it or drain it.
|
2015-01-22 11:12:42 +00:00
|
|
|
*/
|
2016-07-20 16:44:22 +00:00
|
|
|
if (cc_exec_curr(cc, direct) == c) {
|
2006-02-23 19:13:12 +00:00
|
|
|
/*
|
2016-07-20 16:44:22 +00:00
|
|
|
* Succeed we to stop it or not, we must clear the
|
|
|
|
* active flag - this is what API users expect.
|
2006-02-23 19:13:12 +00:00
|
|
|
*/
|
2015-11-10 14:49:32 +00:00
|
|
|
c->c_flags &= ~CALLOUT_ACTIVE;
|
2016-07-20 16:44:22 +00:00
|
|
|
|
2016-03-02 18:46:17 +00:00
|
|
|
if ((flags & CS_DRAIN) != 0) {
|
2015-01-22 11:12:42 +00:00
|
|
|
/*
|
|
|
|
* The current callout is running (or just
|
|
|
|
* about to run) and blocking is allowed, so
|
|
|
|
* just wait for the current invocation to
|
|
|
|
* finish.
|
|
|
|
*/
|
2015-02-09 19:19:44 +00:00
|
|
|
while (cc_exec_curr(cc, direct) == c) {
|
2015-01-22 11:12:42 +00:00
|
|
|
/*
|
|
|
|
* Use direct calls to sleepqueue interface
|
|
|
|
* instead of cv/msleep in order to avoid
|
|
|
|
* a LOR between cc_lock and sleepqueue
|
|
|
|
* chain spinlocks. This piece of code
|
|
|
|
* emulates a msleep_spin() call actually.
|
|
|
|
*
|
|
|
|
* If we already have the sleepqueue chain
|
|
|
|
* locked, then we can safely block. If we
|
|
|
|
* don't already have it locked, however,
|
|
|
|
* we have to drop the cc_lock to lock
|
|
|
|
* it. This opens several races, so we
|
|
|
|
* restart at the beginning once we have
|
|
|
|
* both locks. If nothing has changed, then
|
|
|
|
* we will end up back here with sq_locked
|
|
|
|
* set.
|
|
|
|
*/
|
|
|
|
if (!sq_locked) {
|
|
|
|
CC_UNLOCK(cc);
|
|
|
|
sleepq_lock(
|
2015-02-09 19:19:44 +00:00
|
|
|
&cc_exec_waiting(cc, direct));
|
2015-01-22 11:12:42 +00:00
|
|
|
sq_locked = 1;
|
|
|
|
old_cc = cc;
|
|
|
|
goto again;
|
|
|
|
}
|
2016-07-20 16:44:22 +00:00
|
|
|
|
2015-01-22 11:12:42 +00:00
|
|
|
/*
|
|
|
|
* Migration could be cancelled here, but
|
|
|
|
* as long as it is still not sure when it
|
|
|
|
* will be packed up, just let softclock()
|
|
|
|
* take care of it.
|
|
|
|
*/
|
2015-02-09 19:19:44 +00:00
|
|
|
cc_exec_waiting(cc, direct) = true;
|
2015-01-22 11:12:42 +00:00
|
|
|
DROP_GIANT();
|
|
|
|
CC_UNLOCK(cc);
|
|
|
|
sleepq_add(
|
2015-02-09 19:19:44 +00:00
|
|
|
&cc_exec_waiting(cc, direct),
|
2015-01-22 11:12:42 +00:00
|
|
|
&cc->cc_lock.lock_object, "codrain",
|
|
|
|
SLEEPQ_SLEEP, 0);
|
|
|
|
sleepq_wait(
|
2015-02-09 19:19:44 +00:00
|
|
|
&cc_exec_waiting(cc, direct),
|
2015-01-22 11:12:42 +00:00
|
|
|
0);
|
|
|
|
sq_locked = 0;
|
|
|
|
old_cc = NULL;
|
|
|
|
|
|
|
|
/* Reacquire locks previously released. */
|
|
|
|
PICKUP_GIANT();
|
|
|
|
CC_LOCK(cc);
|
|
|
|
}
|
|
|
|
} else if (use_lock &&
|
2015-11-10 14:49:32 +00:00
|
|
|
!cc_exec_cancel(cc, direct) && (drain == NULL)) {
|
2015-02-09 19:19:44 +00:00
|
|
|
|
2015-01-22 11:12:42 +00:00
|
|
|
/*
|
|
|
|
* The current callout is waiting for its
|
|
|
|
* lock which we hold. Cancel the callout
|
|
|
|
* and return. After our caller drops the
|
|
|
|
* lock, the callout will be skipped in
|
2015-11-10 14:49:32 +00:00
|
|
|
* softclock(). This *only* works with a
|
|
|
|
* callout_stop() *not* callout_drain() or
|
|
|
|
* callout_async_drain().
|
2015-01-22 11:12:42 +00:00
|
|
|
*/
|
2015-02-09 19:19:44 +00:00
|
|
|
cc_exec_cancel(cc, direct) = true;
|
2015-01-22 11:12:42 +00:00
|
|
|
CTR3(KTR_CALLOUT, "cancelled %p func %p arg %p",
|
|
|
|
c, c->c_func, c->c_arg);
|
|
|
|
KASSERT(!cc_cce_migrating(cc, direct),
|
|
|
|
("callout wrongly scheduled for migration"));
|
2015-03-28 12:50:24 +00:00
|
|
|
if (callout_migrating(c)) {
|
|
|
|
c->c_iflags &= ~CALLOUT_DFRMIGRATION;
|
|
|
|
#ifdef SMP
|
|
|
|
cc_migration_cpu(cc, direct) = CPUBLOCK;
|
|
|
|
cc_migration_time(cc, direct) = 0;
|
|
|
|
cc_migration_prec(cc, direct) = 0;
|
|
|
|
cc_migration_func(cc, direct) = NULL;
|
|
|
|
cc_migration_arg(cc, direct) = NULL;
|
|
|
|
#endif
|
|
|
|
}
|
2015-01-22 11:12:42 +00:00
|
|
|
CC_UNLOCK(cc);
|
|
|
|
KASSERT(!sq_locked, ("sleepqueue chain locked"));
|
|
|
|
return (1);
|
2015-02-09 19:19:44 +00:00
|
|
|
} else if (callout_migrating(c)) {
|
|
|
|
/*
|
|
|
|
* The callout is currently being serviced
|
|
|
|
* and the "next" callout is scheduled at
|
|
|
|
* its completion with a migration. We remove
|
|
|
|
* the migration flag so it *won't* get rescheduled,
|
|
|
|
* but we can't stop the one thats running so
|
|
|
|
* we return 0.
|
|
|
|
*/
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags &= ~CALLOUT_DFRMIGRATION;
|
2015-02-09 19:19:44 +00:00
|
|
|
#ifdef SMP
|
|
|
|
/*
|
|
|
|
* We can't call cc_cce_cleanup here since
|
|
|
|
* if we do it will remove .ce_curr and
|
|
|
|
* its still running. This will prevent a
|
|
|
|
* reschedule of the callout when the
|
|
|
|
* execution completes.
|
|
|
|
*/
|
|
|
|
cc_migration_cpu(cc, direct) = CPUBLOCK;
|
|
|
|
cc_migration_time(cc, direct) = 0;
|
|
|
|
cc_migration_prec(cc, direct) = 0;
|
|
|
|
cc_migration_func(cc, direct) = NULL;
|
|
|
|
cc_migration_arg(cc, direct) = NULL;
|
|
|
|
#endif
|
2015-01-22 11:12:42 +00:00
|
|
|
CTR3(KTR_CALLOUT, "postponing stop %p func %p arg %p",
|
|
|
|
c, c->c_func, c->c_arg);
|
2015-11-10 14:49:32 +00:00
|
|
|
if (drain) {
|
|
|
|
cc_exec_drain(cc, direct) = drain;
|
|
|
|
}
|
2015-01-22 11:12:42 +00:00
|
|
|
CC_UNLOCK(cc);
|
The paradigm of a callout is that it has three consequent states:
not scheduled -> scheduled -> running -> not scheduled. The API and the
manual page assume that, some comments in the code assume that, and looks
like some contributors to the code also did. The problem is that this
paradigm isn't true. A callout can be scheduled and running at the same
time, which makes API description ambigouous. In such case callout_stop()
family of functions/macros should return 1 and 0 at the same time, since it
successfully unscheduled future callout but the current one is running.
Before this change we returned 1 in such a case, with an exception that
if running callout was migrating we returned 0, unless CS_MIGRBLOCK was
specified.
With this change, we now return 0 in case if future callout was unscheduled,
but another one is still in action, indicating to API users that resources
are not yet safe to be freed.
However, the sleepqueue code relies on getting 1 return code in that case,
and there already was CS_MIGRBLOCK flag, that covered one of the edge cases.
In the new return path we will also use this flag, to keep sleepqueue safe.
Since the flag CS_MIGRBLOCK doesn't block migration and now isn't limited to
migration edge case, rename it to CS_EXECUTING.
This change fixes panics on a high loaded TCP server.
Reviewed by: jch, hselasky, rrs, kib
Approved by: re (gjb)
Differential Revision: https://reviews.freebsd.org/D7042
2016-07-05 18:47:17 +00:00
|
|
|
return ((flags & CS_EXECUTING) != 0);
|
2015-01-22 11:12:42 +00:00
|
|
|
}
|
|
|
|
CTR3(KTR_CALLOUT, "failed to stop %p func %p arg %p",
|
|
|
|
c, c->c_func, c->c_arg);
|
2015-11-10 14:49:32 +00:00
|
|
|
if (drain) {
|
|
|
|
cc_exec_drain(cc, direct) = drain;
|
|
|
|
}
|
2016-07-19 18:31:19 +00:00
|
|
|
KASSERT(!sq_locked, ("sleepqueue chain still locked"));
|
2016-07-20 16:44:22 +00:00
|
|
|
cancelled = ((flags & CS_EXECUTING) != 0);
|
|
|
|
} else
|
|
|
|
cancelled = 1;
|
|
|
|
|
2016-07-19 18:31:19 +00:00
|
|
|
if (sq_locked)
|
|
|
|
sleepq_release(&cc_exec_waiting(cc, direct));
|
The paradigm of a callout is that it has three consequent states:
not scheduled -> scheduled -> running -> not scheduled. The API and the
manual page assume that, some comments in the code assume that, and looks
like some contributors to the code also did. The problem is that this
paradigm isn't true. A callout can be scheduled and running at the same
time, which makes API description ambigouous. In such case callout_stop()
family of functions/macros should return 1 and 0 at the same time, since it
successfully unscheduled future callout but the current one is running.
Before this change we returned 1 in such a case, with an exception that
if running callout was migrating we returned 0, unless CS_MIGRBLOCK was
specified.
With this change, we now return 0 in case if future callout was unscheduled,
but another one is still in action, indicating to API users that resources
are not yet safe to be freed.
However, the sleepqueue code relies on getting 1 return code in that case,
and there already was CS_MIGRBLOCK flag, that covered one of the edge cases.
In the new return path we will also use this flag, to keep sleepqueue safe.
Since the flag CS_MIGRBLOCK doesn't block migration and now isn't limited to
migration edge case, rename it to CS_EXECUTING.
This change fixes panics on a high loaded TCP server.
Reviewed by: jch, hselasky, rrs, kib
Approved by: re (gjb)
Differential Revision: https://reviews.freebsd.org/D7042
2016-07-05 18:47:17 +00:00
|
|
|
|
2016-07-20 16:44:22 +00:00
|
|
|
if ((c->c_iflags & CALLOUT_PENDING) == 0) {
|
|
|
|
CTR3(KTR_CALLOUT, "failed to stop %p func %p arg %p",
|
|
|
|
c, c->c_func, c->c_arg);
|
2016-07-20 16:48:25 +00:00
|
|
|
/*
|
|
|
|
* For not scheduled and not executing callout return
|
|
|
|
* negative value.
|
|
|
|
*/
|
|
|
|
if (cc_exec_curr(cc, direct) != c)
|
|
|
|
cancelled = -1;
|
2016-07-20 16:44:22 +00:00
|
|
|
CC_UNLOCK(cc);
|
2016-07-20 16:48:25 +00:00
|
|
|
return (cancelled);
|
2016-07-20 16:44:22 +00:00
|
|
|
}
|
|
|
|
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags &= ~CALLOUT_PENDING;
|
|
|
|
c->c_flags &= ~CALLOUT_ACTIVE;
|
1999-03-06 04:46:20 +00:00
|
|
|
|
2006-10-11 14:57:03 +00:00
|
|
|
CTR3(KTR_CALLOUT, "cancelled %p func %p arg %p",
|
|
|
|
c, c->c_func, c->c_arg);
|
2015-02-09 19:19:44 +00:00
|
|
|
if (not_on_a_list == 0) {
|
2015-03-28 12:50:24 +00:00
|
|
|
if ((c->c_iflags & CALLOUT_PROCESSED) == 0) {
|
2015-02-12 13:31:08 +00:00
|
|
|
if (cc_exec_next(cc) == c)
|
|
|
|
cc_exec_next(cc) = LIST_NEXT(c, c_links.le);
|
2015-02-09 19:19:44 +00:00
|
|
|
LIST_REMOVE(c, c_links.le);
|
2015-03-28 12:50:24 +00:00
|
|
|
} else {
|
2015-02-09 19:19:44 +00:00
|
|
|
TAILQ_REMOVE(&cc->cc_expireq, c, c_links.tqe);
|
2015-03-28 12:50:24 +00:00
|
|
|
}
|
2015-02-09 19:19:44 +00:00
|
|
|
}
|
2015-01-22 11:12:42 +00:00
|
|
|
callout_cc_del(c, cc);
|
|
|
|
CC_UNLOCK(cc);
|
2016-07-20 16:44:22 +00:00
|
|
|
return (cancelled);
|
1999-03-06 04:46:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-06-05 03:46:46 +00:00
|
|
|
callout_init(struct callout *c, int mpsafe)
|
1999-03-06 04:46:20 +00:00
|
|
|
{
|
2015-01-22 11:12:42 +00:00
|
|
|
bzero(c, sizeof *c);
|
2005-02-07 02:47:33 +00:00
|
|
|
if (mpsafe) {
|
2015-01-22 11:12:42 +00:00
|
|
|
c->c_lock = NULL;
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags = CALLOUT_RETURNUNLOCKED;
|
2005-02-07 02:47:33 +00:00
|
|
|
} else {
|
2015-01-22 11:12:42 +00:00
|
|
|
c->c_lock = &Giant.lock_object;
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags = 0;
|
2005-02-07 02:47:33 +00:00
|
|
|
}
|
2015-01-22 11:12:42 +00:00
|
|
|
c->c_cpu = timeout_cpu;
|
2005-02-07 02:47:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-06-05 03:46:46 +00:00
|
|
|
_callout_init_lock(struct callout *c, struct lock_object *lock, int flags)
|
2005-02-07 02:47:33 +00:00
|
|
|
{
|
|
|
|
bzero(c, sizeof *c);
|
2007-11-20 00:37:45 +00:00
|
|
|
c->c_lock = lock;
|
2015-01-22 11:12:42 +00:00
|
|
|
KASSERT((flags & ~(CALLOUT_RETURNUNLOCKED | CALLOUT_SHAREDLOCK)) == 0,
|
|
|
|
("callout_init_lock: bad flags %d", flags));
|
|
|
|
KASSERT(lock != NULL || (flags & CALLOUT_RETURNUNLOCKED) == 0,
|
|
|
|
("callout_init_lock: CALLOUT_RETURNUNLOCKED with no lock"));
|
|
|
|
KASSERT(lock == NULL || !(LOCK_CLASS(lock)->lc_flags &
|
|
|
|
(LC_SPINLOCK | LC_SLEEPABLE)), ("%s: invalid lock class",
|
|
|
|
__func__));
|
2015-03-28 12:50:24 +00:00
|
|
|
c->c_iflags = flags & (CALLOUT_RETURNUNLOCKED | CALLOUT_SHAREDLOCK);
|
2008-04-02 11:20:30 +00:00
|
|
|
c->c_cpu = timeout_cpu;
|
1999-03-06 04:46:20 +00:00
|
|
|
}
|
|
|
|
|
1997-12-23 16:32:35 +00:00
|
|
|
#ifdef APM_FIXUP_CALLTODO
|
|
|
|
/*
|
|
|
|
* Adjust the kernel calltodo timeout list. This routine is used after
|
|
|
|
* an APM resume to recalculate the calltodo timer list values with the
|
|
|
|
* number of hz's we have been sleeping. The next hardclock() will detect
|
|
|
|
* that there are fired timers and run softclock() to execute them.
|
|
|
|
*
|
|
|
|
* Please note, I have not done an exhaustive analysis of what code this
|
|
|
|
* might break. I am motivated to have my select()'s and alarm()'s that
|
|
|
|
* have expired during suspend firing upon resume so that the applications
|
|
|
|
* which set the timer can do the maintanence the timer was for as close
|
|
|
|
* as possible to the originally intended time. Testing this code for a
|
|
|
|
* week showed that resuming from a suspend resulted in 22 to 25 timers
|
2016-04-29 22:15:33 +00:00
|
|
|
* firing, which seemed independent on whether the suspend was 2 hours or
|
1997-12-23 16:32:35 +00:00
|
|
|
* 2 days. Your milage may vary. - Ken Key <key@cs.utk.edu>
|
|
|
|
*/
|
|
|
|
void
|
2014-06-05 03:46:46 +00:00
|
|
|
adjust_timeout_calltodo(struct timeval *time_change)
|
1997-12-23 16:32:35 +00:00
|
|
|
{
|
|
|
|
register struct callout *p;
|
|
|
|
unsigned long delta_ticks;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* How many ticks were we asleep?
|
1998-05-17 20:08:05 +00:00
|
|
|
* (stolen from tvtohz()).
|
1997-12-23 16:32:35 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* Don't do anything */
|
|
|
|
if (time_change->tv_sec < 0)
|
|
|
|
return;
|
|
|
|
else if (time_change->tv_sec <= LONG_MAX / 1000000)
|
2016-04-26 15:38:17 +00:00
|
|
|
delta_ticks = howmany(time_change->tv_sec * 1000000 +
|
|
|
|
time_change->tv_usec, tick) + 1;
|
1997-12-23 16:32:35 +00:00
|
|
|
else if (time_change->tv_sec <= LONG_MAX / hz)
|
|
|
|
delta_ticks = time_change->tv_sec * hz +
|
2016-04-26 15:38:17 +00:00
|
|
|
howmany(time_change->tv_usec, tick) + 1;
|
1997-12-23 16:32:35 +00:00
|
|
|
else
|
|
|
|
delta_ticks = LONG_MAX;
|
|
|
|
|
|
|
|
if (delta_ticks > INT_MAX)
|
|
|
|
delta_ticks = INT_MAX;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now rip through the timer calltodo list looking for timers
|
|
|
|
* to expire.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* don't collide with softclock() */
|
2008-04-02 11:20:30 +00:00
|
|
|
CC_LOCK(cc);
|
1997-12-23 16:32:35 +00:00
|
|
|
for (p = calltodo.c_next; p != NULL; p = p->c_next) {
|
|
|
|
p->c_time -= delta_ticks;
|
|
|
|
|
|
|
|
/* Break if the timer had more time on it than delta_ticks */
|
|
|
|
if (p->c_time > 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* take back the ticks the timer didn't use (p->c_time <= 0) */
|
|
|
|
delta_ticks = -p->c_time;
|
|
|
|
}
|
2008-04-02 11:20:30 +00:00
|
|
|
CC_UNLOCK(cc);
|
1997-12-23 16:32:35 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif /* APM_FIXUP_CALLTODO */
|
- Make callout(9) tickless, relying on eventtimers(4) as backend for
precise time event generation. This greatly improves granularity of
callouts which are not anymore constrained to wait next tick to be
scheduled.
- Extend the callout KPI introducing a set of callout_reset_sbt* functions,
which take a sbintime_t as timeout argument. The new KPI also offers a
way for consumers to specify precision tolerance they allow, so that
callout can coalesce events and reduce number of interrupts as well as
potentially avoid scheduling a SWI thread.
- Introduce support for dispatching callouts directly from hardware
interrupt context, specifying an additional flag. This feature should be
used carefully, as long as interrupt context has some limitations
(e.g. no sleeping locks can be held).
- Enhance mechanisms to gather informations about callwheel, introducing
a new sysctl to obtain stats.
This change breaks the KBI. struct callout fields has been changed, in
particular 'int ticks' (4 bytes) has been replaced with 'sbintime_t'
(8 bytes) and another 'sbintime_t' field was added for precision.
Together with: mav
Reviewed by: attilio, bde, luigi, phk
Sponsored by: Google Summer of Code 2012, iXsystems inc.
Tested by: flo (amd64, sparc64), marius (sparc64), ian (arm),
markj (amd64), mav, Fabian Keil
2013-03-04 11:09:56 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
flssbt(sbintime_t sbt)
|
|
|
|
{
|
|
|
|
|
|
|
|
sbt += (uint64_t)sbt >> 1;
|
|
|
|
if (sizeof(long) >= sizeof(sbintime_t))
|
|
|
|
return (flsl(sbt));
|
|
|
|
if (sbt >= SBT_1S)
|
|
|
|
return (flsl(((uint64_t)sbt) >> 32) + 32);
|
|
|
|
return (flsl(sbt));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Dump immediate statistic snapshot of the scheduled callouts.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
sysctl_kern_callout_stat(SYSCTL_HANDLER_ARGS)
|
|
|
|
{
|
|
|
|
struct callout *tmp;
|
|
|
|
struct callout_cpu *cc;
|
|
|
|
struct callout_list *sc;
|
|
|
|
sbintime_t maxpr, maxt, medpr, medt, now, spr, st, t;
|
|
|
|
int ct[64], cpr[64], ccpbk[32];
|
|
|
|
int error, val, i, count, tcum, pcum, maxc, c, medc;
|
|
|
|
#ifdef SMP
|
|
|
|
int cpu;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
val = 0;
|
|
|
|
error = sysctl_handle_int(oidp, &val, 0, req);
|
|
|
|
if (error != 0 || req->newptr == NULL)
|
|
|
|
return (error);
|
|
|
|
count = maxc = 0;
|
|
|
|
st = spr = maxt = maxpr = 0;
|
|
|
|
bzero(ccpbk, sizeof(ccpbk));
|
|
|
|
bzero(ct, sizeof(ct));
|
|
|
|
bzero(cpr, sizeof(cpr));
|
|
|
|
now = sbinuptime();
|
|
|
|
#ifdef SMP
|
|
|
|
CPU_FOREACH(cpu) {
|
|
|
|
cc = CC_CPU(cpu);
|
|
|
|
#else
|
|
|
|
cc = CC_CPU(timeout_cpu);
|
|
|
|
#endif
|
|
|
|
CC_LOCK(cc);
|
|
|
|
for (i = 0; i < callwheelsize; i++) {
|
|
|
|
sc = &cc->cc_callwheel[i];
|
|
|
|
c = 0;
|
|
|
|
LIST_FOREACH(tmp, sc, c_links.le) {
|
|
|
|
c++;
|
|
|
|
t = tmp->c_time - now;
|
|
|
|
if (t < 0)
|
|
|
|
t = 0;
|
|
|
|
st += t / SBT_1US;
|
|
|
|
spr += tmp->c_precision / SBT_1US;
|
|
|
|
if (t > maxt)
|
|
|
|
maxt = t;
|
|
|
|
if (tmp->c_precision > maxpr)
|
|
|
|
maxpr = tmp->c_precision;
|
|
|
|
ct[flssbt(t)]++;
|
|
|
|
cpr[flssbt(tmp->c_precision)]++;
|
|
|
|
}
|
|
|
|
if (c > maxc)
|
|
|
|
maxc = c;
|
|
|
|
ccpbk[fls(c + c / 2)]++;
|
|
|
|
count += c;
|
|
|
|
}
|
|
|
|
CC_UNLOCK(cc);
|
|
|
|
#ifdef SMP
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (i = 0, tcum = 0; i < 64 && tcum < count / 2; i++)
|
|
|
|
tcum += ct[i];
|
|
|
|
medt = (i >= 2) ? (((sbintime_t)1) << (i - 2)) : 0;
|
|
|
|
for (i = 0, pcum = 0; i < 64 && pcum < count / 2; i++)
|
|
|
|
pcum += cpr[i];
|
|
|
|
medpr = (i >= 2) ? (((sbintime_t)1) << (i - 2)) : 0;
|
|
|
|
for (i = 0, c = 0; i < 32 && c < count / 2; i++)
|
|
|
|
c += ccpbk[i];
|
|
|
|
medc = (i >= 2) ? (1 << (i - 2)) : 0;
|
|
|
|
|
|
|
|
printf("Scheduled callouts statistic snapshot:\n");
|
|
|
|
printf(" Callouts: %6d Buckets: %6d*%-3d Bucket size: 0.%06ds\n",
|
|
|
|
count, callwheelsize, mp_ncpus, 1000000 >> CC_HASH_SHIFT);
|
|
|
|
printf(" C/Bk: med %5d avg %6d.%06jd max %6d\n",
|
|
|
|
medc,
|
|
|
|
count / callwheelsize / mp_ncpus,
|
|
|
|
(uint64_t)count * 1000000 / callwheelsize / mp_ncpus % 1000000,
|
|
|
|
maxc);
|
|
|
|
printf(" Time: med %5jd.%06jds avg %6jd.%06jds max %6jd.%06jds\n",
|
|
|
|
medt / SBT_1S, (medt & 0xffffffff) * 1000000 >> 32,
|
|
|
|
(st / count) / 1000000, (st / count) % 1000000,
|
|
|
|
maxt / SBT_1S, (maxt & 0xffffffff) * 1000000 >> 32);
|
|
|
|
printf(" Prec: med %5jd.%06jds avg %6jd.%06jds max %6jd.%06jds\n",
|
|
|
|
medpr / SBT_1S, (medpr & 0xffffffff) * 1000000 >> 32,
|
|
|
|
(spr / count) / 1000000, (spr / count) % 1000000,
|
|
|
|
maxpr / SBT_1S, (maxpr & 0xffffffff) * 1000000 >> 32);
|
|
|
|
printf(" Distribution: \tbuckets\t time\t tcum\t"
|
|
|
|
" prec\t pcum\n");
|
|
|
|
for (i = 0, tcum = pcum = 0; i < 64; i++) {
|
|
|
|
if (ct[i] == 0 && cpr[i] == 0)
|
|
|
|
continue;
|
|
|
|
t = (i != 0) ? (((sbintime_t)1) << (i - 1)) : 0;
|
|
|
|
tcum += ct[i];
|
|
|
|
pcum += cpr[i];
|
|
|
|
printf(" %10jd.%06jds\t 2**%d\t%7d\t%7d\t%7d\t%7d\n",
|
|
|
|
t / SBT_1S, (t & 0xffffffff) * 1000000 >> 32,
|
|
|
|
i - 1 - (32 - CC_HASH_SHIFT),
|
|
|
|
ct[i], tcum, cpr[i], pcum);
|
|
|
|
}
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
SYSCTL_PROC(_kern, OID_AUTO, callout_stat,
|
|
|
|
CTLTYPE_INT | CTLFLAG_RW | CTLFLAG_MPSAFE,
|
|
|
|
0, 0, sysctl_kern_callout_stat, "I",
|
|
|
|
"Dump immediate statistic snapshot of the scheduled callouts");
|
2016-07-20 16:44:22 +00:00
|
|
|
|
2016-06-06 20:57:24 +00:00
|
|
|
#ifdef DDB
|
|
|
|
static void
|
|
|
|
_show_callout(struct callout *c)
|
|
|
|
{
|
|
|
|
|
|
|
|
db_printf("callout %p\n", c);
|
|
|
|
#define C_DB_PRINTF(f, e) db_printf(" %s = " f "\n", #e, c->e);
|
|
|
|
db_printf(" &c_links = %p\n", &(c->c_links));
|
|
|
|
C_DB_PRINTF("%" PRId64, c_time);
|
|
|
|
C_DB_PRINTF("%" PRId64, c_precision);
|
|
|
|
C_DB_PRINTF("%p", c_arg);
|
|
|
|
C_DB_PRINTF("%p", c_func);
|
|
|
|
C_DB_PRINTF("%p", c_lock);
|
|
|
|
C_DB_PRINTF("%#x", c_flags);
|
|
|
|
C_DB_PRINTF("%#x", c_iflags);
|
|
|
|
C_DB_PRINTF("%d", c_cpu);
|
|
|
|
#undef C_DB_PRINTF
|
|
|
|
}
|
|
|
|
|
|
|
|
DB_SHOW_COMMAND(callout, db_show_callout)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!have_addr) {
|
|
|
|
db_printf("usage: show callout <struct callout *>\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_show_callout((struct callout *)addr);
|
|
|
|
}
|
|
|
|
#endif /* DDB */
|