summaryrefslogtreecommitdiff
path: root/src/sys/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/include')
-rw-r--r--src/sys/include/arch/amd64/mdcpu.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sys/include/arch/amd64/mdcpu.h b/src/sys/include/arch/amd64/mdcpu.h
index 8701a61..a7336bd 100644
--- a/src/sys/include/arch/amd64/mdcpu.h
+++ b/src/sys/include/arch/amd64/mdcpu.h
@@ -53,6 +53,7 @@
* @apic_id: Local APIC ID
* @cr3: CR3 register value (PML<n> phys)
* @vendor: Processor vendor (CPU_VENDOR_*)
+ * @family: Processor family ID
* @lapic_base: LAPIC register interface base
* @x2apic: Has the x2APIC? Is 1 if true
* @tss: Task state segment for this core
@@ -64,6 +65,7 @@ struct mdcore {
uint32_t apic_id;
uint64_t cr3;
uint8_t vendor;
+ uint32_t family;
void *lapic_base;
uint8_t x2apic : 1;
struct tss_entry tss;