tech-kern archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re-arrange contents of struct cpuinfo - kern/52919
Since maxv@ has already done some rearranging, but so far has not bumped
the system version, I would like to do some more re-arrangement. This
will group all the XEN stuff together, as well as move all of the
conditional parts of sstruct cpuinfo to the end, following all of the
non-conditional parts.
Please review the attached patch and let me know if there any serious
objections. I'd like to commit within the next day or two, along with a
kernel rev bump...
+------------------+--------------------------+----------------------------+
| Paul Goyette | PGP Key fingerprint: | E-mail addresses: |
| (Retired) | FA29 0E3B 35AF E8AE 6651 | paul at whooppee dot com |
| Kernel Developer | 0786 F758 55DE 53BA 7731 | pgoyette at netbsd dot org |
+------------------+--------------------------+----------------------------+
Index: cpu.h
===================================================================
RCS file: /cvsroot/src/sys/arch/x86/include/cpu.h,v
retrieving revision 1.95
diff -u -p -r1.95 cpu.h
--- cpu.h 15 Jul 2018 08:47:43 -0000 1.95
+++ cpu.h 15 Jul 2018 22:23:37 -0000
@@ -127,9 +127,6 @@ struct cpu_info {
uint64_t ci_scratch;
uintptr_t ci_pmap_data[128 / sizeof(uintptr_t)];
-#ifdef XEN
- u_long ci_evtmask[NR_EVENT_CHANNELS]; /* events allowed on this CPU */
-#endif
struct intrsource *ci_isources[MAX_INTR_SOURCES];
volatile int ci_mtx_count; /* Negative count of spin mutexes */
@@ -174,6 +171,44 @@ struct cpu_info {
u_int ci_cflush_lsize; /* CLFLUSH insn line size */
struct x86_cache_info ci_cinfo[CAI_COUNT];
+ device_t ci_frequency; /* Frequency scaling technology */
+ device_t ci_padlock; /* VIA PadLock private storage */
+ device_t ci_temperature; /* Intel coretemp(4) or equivalent */
+ device_t ci_vm; /* Virtual machine guest driver */
+
+ /*
+ * Segmentation-related data.
+ */
+ union descriptor *ci_gdt;
+ struct cpu_tss *ci_tss; /* Per-cpu TSSes; shared among LWPs */
+ int ci_tss_sel; /* TSS selector of this cpu */
+
+ /*
+ * The following two are actually region_descriptors,
+ * but that would pollute the namespace.
+ */
+ uintptr_t ci_suspend_gdt;
+ uint16_t ci_suspend_gdt_padding;
+ uintptr_t ci_suspend_idt;
+ uint16_t ci_suspend_idt_padding;
+
+ uint16_t ci_suspend_tr;
+ uint16_t ci_suspend_ldt;
+ uintptr_t ci_suspend_fs;
+ uintptr_t ci_suspend_gs;
+ uintptr_t ci_suspend_kgs;
+ uintptr_t ci_suspend_efer;
+ uintptr_t ci_suspend_reg[12];
+ uintptr_t ci_suspend_cr0;
+ uintptr_t ci_suspend_cr2;
+ uintptr_t ci_suspend_cr3;
+ uintptr_t ci_suspend_cr4;
+ uintptr_t ci_suspend_cr8;
+
+ /* The following must be in a single cache line. */
+ int ci_want_resched __aligned(64);
+ int ci_padout __aligned(64);
+
#ifndef __HAVE_DIRECT_MAP
#define VPAGE_SRC 0
#define VPAGE_DST 1
@@ -201,42 +236,24 @@ struct cpu_info {
vaddr_t ci_svs_utls;
#endif
-#if defined(XEN) && (defined(PAE) || defined(__x86_64__))
+#if defined(XEN)
+#if defined(PAE) || defined(__x86_64__)
/* Currently active user PGD (can't use rcr3() with Xen) */
pd_entry_t * ci_kpm_pdir; /* per-cpu PMD (va) */
paddr_t ci_kpm_pdirpa; /* per-cpu PMD (pa) */
kmutex_t ci_kpm_mtx;
+#endif /* defined(PAE) || defined(__x86_64__) */
+
#if defined(__x86_64__)
/* per-cpu version of normal_pdes */
pd_entry_t * ci_normal_pdes[3]; /* Ok to hardcode. only for x86_64 && XEN */
paddr_t ci_xen_current_user_pgd;
-#endif /* __x86_64__ */
-#endif /* XEN et.al */
-
-#ifdef XEN
- size_t ci_xpq_idx;
-#endif
+#endif /* defined(__x86_64__) */
-#ifndef XEN
- struct evcnt ci_ipi_events[X86_NIPI];
-#else /* XEN */
+ u_long ci_evtmask[NR_EVENT_CHANNELS]; /* events allowed on this CPU */
struct evcnt ci_ipi_events[XEN_NIPIS];
evtchn_port_t ci_ipi_evtchn;
-#endif /* XEN */
-
- device_t ci_frequency; /* Frequency scaling technology */
- device_t ci_padlock; /* VIA PadLock private storage */
- device_t ci_temperature; /* Intel coretemp(4) or equivalent */
- device_t ci_vm; /* Virtual machine guest driver */
-
- /*
- * Segmentation-related data.
- */
- union descriptor *ci_gdt;
- struct cpu_tss *ci_tss; /* Per-cpu TSSes; shared among LWPs */
- int ci_tss_sel; /* TSS selector of this cpu */
-
-#ifdef XEN
+ size_t ci_xpq_idx;
/* Xen raw system time at which we last ran hardclock. */
uint64_t ci_xen_hardclock_systime_ns;
@@ -263,33 +280,10 @@ struct cpu_info {
struct evcnt ci_xen_raw_systime_backwards_evcnt;
struct evcnt ci_xen_systime_backwards_hardclock_evcnt;
struct evcnt ci_xen_missed_hardclock_evcnt;
-#endif
-
- /*
- * The following two are actually region_descriptors,
- * but that would pollute the namespace.
- */
- uintptr_t ci_suspend_gdt;
- uint16_t ci_suspend_gdt_padding;
- uintptr_t ci_suspend_idt;
- uint16_t ci_suspend_idt_padding;
-
- uint16_t ci_suspend_tr;
- uint16_t ci_suspend_ldt;
- uintptr_t ci_suspend_fs;
- uintptr_t ci_suspend_gs;
- uintptr_t ci_suspend_kgs;
- uintptr_t ci_suspend_efer;
- uintptr_t ci_suspend_reg[12];
- uintptr_t ci_suspend_cr0;
- uintptr_t ci_suspend_cr2;
- uintptr_t ci_suspend_cr3;
- uintptr_t ci_suspend_cr4;
- uintptr_t ci_suspend_cr8;
+#else /* defined(XEN) */
+ struct evcnt ci_ipi_events[X86_NIPI];
+#endif /* defined(XEN) */
- /* The following must be in a single cache line. */
- int ci_want_resched __aligned(64);
- int ci_padout __aligned(64);
};
/*
Home |
Main Index |
Thread Index |
Old Index