Rename the cyclic global variable lapic_cyclic_clock_func to just
cyclic_clock_func. This will make more sense when we start developing non x86 cyclic version.
This commit is contained in:
parent
4eb7b21df0
commit
7a84f3701d
@ -70,7 +70,7 @@ __FBSDID("$FreeBSD$");
|
||||
|
||||
#ifdef KDTRACE_HOOKS
|
||||
#include <sys/dtrace_bsd.h>
|
||||
cyclic_clock_func_t lapic_cyclic_clock_func[MAXCPU];
|
||||
cyclic_clock_func_t cyclic_clock_func[MAXCPU];
|
||||
#endif
|
||||
|
||||
/* Sanity checks on IDT vectors. */
|
||||
@ -778,8 +778,8 @@ lapic_handle_timer(struct trapframe *frame)
|
||||
* timers.
|
||||
*/
|
||||
int cpu = PCPU_GET(cpuid);
|
||||
if (lapic_cyclic_clock_func[cpu] != NULL)
|
||||
(*lapic_cyclic_clock_func[cpu])(frame);
|
||||
if (cyclic_clock_func[cpu] != NULL)
|
||||
(*cyclic_clock_func[cpu])(frame);
|
||||
#endif
|
||||
|
||||
/* Fire hardclock at hz. */
|
||||
|
@ -67,7 +67,7 @@ cyclic_machdep_uninit(void)
|
||||
|
||||
for (i = 0; i <= mp_maxid; i++)
|
||||
/* Reset the cyclic clock callback hook. */
|
||||
lapic_cyclic_clock_func[i] = NULL;
|
||||
cyclic_clock_func[i] = NULL;
|
||||
|
||||
/* De-register the cyclic backend. */
|
||||
cyclic_uninit();
|
||||
@ -105,13 +105,13 @@ cyclic_clock(struct trapframe *frame)
|
||||
static void enable(cyb_arg_t arg)
|
||||
{
|
||||
/* Register the cyclic clock callback function. */
|
||||
lapic_cyclic_clock_func[curcpu] = cyclic_clock;
|
||||
cyclic_clock_func[curcpu] = cyclic_clock;
|
||||
}
|
||||
|
||||
static void disable(cyb_arg_t arg)
|
||||
{
|
||||
/* Reset the cyclic clock callback function. */
|
||||
lapic_cyclic_clock_func[curcpu] = NULL;
|
||||
cyclic_clock_func[curcpu] = NULL;
|
||||
}
|
||||
|
||||
static void reprogram(cyb_arg_t arg, hrtime_t exp)
|
||||
|
@ -71,7 +71,7 @@ __FBSDID("$FreeBSD$");
|
||||
|
||||
#ifdef KDTRACE_HOOKS
|
||||
#include <sys/dtrace_bsd.h>
|
||||
cyclic_clock_func_t lapic_cyclic_clock_func[MAXCPU];
|
||||
cyclic_clock_func_t cyclic_clock_func[MAXCPU];
|
||||
#endif
|
||||
|
||||
/* Sanity checks on IDT vectors. */
|
||||
@ -779,8 +779,8 @@ lapic_handle_timer(struct trapframe *frame)
|
||||
* timers.
|
||||
*/
|
||||
int cpu = PCPU_GET(cpuid);
|
||||
if (lapic_cyclic_clock_func[cpu] != NULL)
|
||||
(*lapic_cyclic_clock_func[cpu])(frame);
|
||||
if (cyclic_clock_func[cpu] != NULL)
|
||||
(*cyclic_clock_func[cpu])(frame);
|
||||
#endif
|
||||
|
||||
/* Fire hardclock at hz. */
|
||||
|
@ -50,7 +50,7 @@ typedef void (*cyclic_clock_func_t)(struct trapframe *);
|
||||
*
|
||||
* Defining them here avoids a proliferation of header files.
|
||||
*/
|
||||
extern cyclic_clock_func_t lapic_cyclic_clock_func[];
|
||||
extern cyclic_clock_func_t cyclic_clock_func[];
|
||||
|
||||
/*
|
||||
* The dtrace module handles traps that occur during a DTrace probe.
|
||||
|
Loading…
Reference in New Issue
Block a user