Remove unused per-cpu variables inside_intr and ss_eflags.
This commit is contained in:
parent
987efc765e
commit
7586909279
@ -52,7 +52,6 @@ struct globaldata {
|
||||
int gd_switchticks;
|
||||
u_int gd_cpuno; /* this cpu number */
|
||||
u_int gd_other_cpus; /* all other cpus */
|
||||
int gd_inside_intr;
|
||||
u_int64_t gd_idlepcbphys; /* pa of gd_idlepcb */
|
||||
u_int64_t gd_pending_ipis; /* pending IPI events */
|
||||
u_int32_t gd_next_asn; /* next ASN to allocate */
|
||||
|
@ -52,7 +52,6 @@ struct globaldata {
|
||||
int gd_switchticks;
|
||||
u_int gd_cpuno; /* this cpu number */
|
||||
u_int gd_other_cpus; /* all other cpus */
|
||||
int gd_inside_intr;
|
||||
u_int64_t gd_idlepcbphys; /* pa of gd_idlepcb */
|
||||
u_int64_t gd_pending_ipis; /* pending IPI events */
|
||||
u_int32_t gd_next_asn; /* next ASN to allocate */
|
||||
|
@ -201,8 +201,6 @@ ASSYM(GD_KTR_BUF_DATA, offsetof(struct globaldata, gd_ktr_buf_data));
|
||||
ASSYM(GD_CPUID, offsetof(struct globaldata, gd_cpuid));
|
||||
ASSYM(GD_CPU_LOCKID, offsetof(struct globaldata, gd_cpu_lockid));
|
||||
ASSYM(GD_OTHER_CPUS, offsetof(struct globaldata, gd_other_cpus));
|
||||
ASSYM(GD_SS_EFLAGS, offsetof(struct globaldata, gd_ss_eflags));
|
||||
ASSYM(GD_INSIDE_INTR, offsetof(struct globaldata, gd_inside_intr));
|
||||
ASSYM(GD_PRV_CMAP1, offsetof(struct globaldata, gd_prv_CMAP1));
|
||||
ASSYM(GD_PRV_CMAP2, offsetof(struct globaldata, gd_prv_CMAP2));
|
||||
ASSYM(GD_PRV_CMAP3, offsetof(struct globaldata, gd_prv_CMAP3));
|
||||
|
@ -69,8 +69,6 @@ struct globaldata {
|
||||
u_int gd_cpuid;
|
||||
u_int gd_cpu_lockid;
|
||||
u_int gd_other_cpus;
|
||||
int gd_inside_intr;
|
||||
u_int gd_ss_eflags;
|
||||
pt_entry_t *gd_prv_CMAP1;
|
||||
pt_entry_t *gd_prv_CMAP2;
|
||||
pt_entry_t *gd_prv_CMAP3;
|
||||
|
@ -201,8 +201,6 @@ ASSYM(GD_KTR_BUF_DATA, offsetof(struct globaldata, gd_ktr_buf_data));
|
||||
ASSYM(GD_CPUID, offsetof(struct globaldata, gd_cpuid));
|
||||
ASSYM(GD_CPU_LOCKID, offsetof(struct globaldata, gd_cpu_lockid));
|
||||
ASSYM(GD_OTHER_CPUS, offsetof(struct globaldata, gd_other_cpus));
|
||||
ASSYM(GD_SS_EFLAGS, offsetof(struct globaldata, gd_ss_eflags));
|
||||
ASSYM(GD_INSIDE_INTR, offsetof(struct globaldata, gd_inside_intr));
|
||||
ASSYM(GD_PRV_CMAP1, offsetof(struct globaldata, gd_prv_CMAP1));
|
||||
ASSYM(GD_PRV_CMAP2, offsetof(struct globaldata, gd_prv_CMAP2));
|
||||
ASSYM(GD_PRV_CMAP3, offsetof(struct globaldata, gd_prv_CMAP3));
|
||||
|
@ -69,8 +69,6 @@ struct globaldata {
|
||||
u_int gd_cpuid;
|
||||
u_int gd_cpu_lockid;
|
||||
u_int gd_other_cpus;
|
||||
int gd_inside_intr;
|
||||
u_int gd_ss_eflags;
|
||||
pt_entry_t *gd_prv_CMAP1;
|
||||
pt_entry_t *gd_prv_CMAP2;
|
||||
pt_entry_t *gd_prv_CMAP3;
|
||||
|
@ -69,8 +69,6 @@ struct globaldata {
|
||||
u_int gd_cpuid;
|
||||
u_int gd_cpu_lockid;
|
||||
u_int gd_other_cpus;
|
||||
int gd_inside_intr;
|
||||
u_int gd_ss_eflags;
|
||||
pt_entry_t *gd_prv_CMAP1;
|
||||
pt_entry_t *gd_prv_CMAP2;
|
||||
pt_entry_t *gd_prv_CMAP3;
|
||||
|
@ -51,7 +51,6 @@ struct globaldata {
|
||||
int gd_switchticks;
|
||||
u_int gd_cpuno; /* this cpu number */
|
||||
u_int gd_other_cpus; /* all other cpus */
|
||||
int gd_inside_intr;
|
||||
u_int64_t gd_idlepcbphys; /* pa of gd_idlepcb */
|
||||
u_int64_t gd_pending_ipis; /* pending IPI events */
|
||||
struct pmap *gd_current_pmap; /* which pmap is active */
|
||||
|
@ -51,7 +51,6 @@ struct globaldata {
|
||||
int gd_switchticks;
|
||||
u_int gd_cpuno; /* this cpu number */
|
||||
u_int gd_other_cpus; /* all other cpus */
|
||||
int gd_inside_intr;
|
||||
u_int64_t gd_idlepcbphys; /* pa of gd_idlepcb */
|
||||
u_int64_t gd_pending_ipis; /* pending IPI events */
|
||||
struct pmap *gd_current_pmap; /* which pmap is active */
|
||||
|
@ -52,7 +52,6 @@ struct globaldata {
|
||||
int gd_switchticks;
|
||||
u_int gd_cpuno; /* this cpu number */
|
||||
u_int gd_other_cpus; /* all other cpus */
|
||||
int gd_inside_intr;
|
||||
u_int64_t gd_idlepcbphys; /* pa of gd_idlepcb */
|
||||
u_int64_t gd_pending_ipis; /* pending IPI events */
|
||||
u_int32_t gd_next_asn; /* next ASN to allocate */
|
||||
|
@ -52,7 +52,6 @@ struct globaldata {
|
||||
int gd_switchticks;
|
||||
u_int gd_cpuno; /* this cpu number */
|
||||
u_int gd_other_cpus; /* all other cpus */
|
||||
int gd_inside_intr;
|
||||
u_int64_t gd_idlepcbphys; /* pa of gd_idlepcb */
|
||||
u_int64_t gd_pending_ipis; /* pending IPI events */
|
||||
u_int32_t gd_next_asn; /* next ASN to allocate */
|
||||
|
Loading…
x
Reference in New Issue
Block a user