mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
ooops finish last commit.
moved the variables but not the declarations.
This commit is contained in:
parent
82a1dfc16d
commit
293968d8d3
2 changed files with 5 additions and 3 deletions
|
|
@ -48,6 +48,7 @@ __FBSDID("$FreeBSD$");
|
|||
#include <sys/smp.h>
|
||||
#include <sys/sysctl.h>
|
||||
#include <sys/sx.h>
|
||||
#include <machine/smp.h>
|
||||
|
||||
/*
|
||||
* INVERSE_ESTCPU_WEIGHT is only suitable for statclock() frequencies in
|
||||
|
|
|
|||
|
|
@ -49,16 +49,17 @@ extern int smp_active;
|
|||
extern int smp_cpus;
|
||||
extern volatile cpumask_t started_cpus;
|
||||
extern volatile cpumask_t stopped_cpus;
|
||||
extern cpumask_t idle_cpus_mask;
|
||||
extern cpumask_t hlt_cpus_mask;
|
||||
extern cpumask_t logical_cpus_mask;
|
||||
#endif /* SMP */
|
||||
|
||||
extern u_int mp_maxid;
|
||||
extern int mp_maxcpus;
|
||||
extern int mp_ncpus;
|
||||
extern volatile int smp_started;
|
||||
|
||||
extern cpumask_t all_cpus;
|
||||
extern cpumask_t idle_cpus_mask;
|
||||
extern cpumask_t hlt_cpus_mask;
|
||||
extern cpumask_t logical_cpus_mask;
|
||||
|
||||
/*
|
||||
* Macro allowing us to determine whether a CPU is absent at any given
|
||||
|
|
|
|||
Loading…
Reference in a new issue