diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2020-07-14 20:37:50 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2020-07-14 20:37:50 +0000 |
| commit | dc43978aa57835b1d9cab54dafdf28b02a9440ea (patch) | |
| tree | c8a506d800ef1471e82ea6aec05c61280c3163c1 /sys/amd64/include/pcpu.h | |
| parent | 504ee6a001c499c5cc1695b3f75f2548a6835c41 (diff) | |
Notes
Diffstat (limited to 'sys/amd64/include/pcpu.h')
| -rw-r--r-- | sys/amd64/include/pcpu.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/amd64/include/pcpu.h b/sys/amd64/include/pcpu.h index b7b546ed2b6de..22c6ed40aa20e 100644 --- a/sys/amd64/include/pcpu.h +++ b/sys/amd64/include/pcpu.h @@ -85,7 +85,7 @@ _Static_assert(sizeof(struct monitorbuf) == 128, "2x cache line"); u_int pc_vcpu_id; /* Xen vCPU ID */ \ uint32_t pc_pcid_next; \ uint32_t pc_pcid_gen; \ - uint32_t pc_smp_tlb_done; /* TLB op acknowledgement */ \ + uint32_t pc_unused; \ uint32_t pc_ibpb_set; \ void *pc_mds_buf; \ void *pc_mds_buf64; \ @@ -94,7 +94,12 @@ _Static_assert(sizeof(struct monitorbuf) == 128, "2x cache line"); u_int pc_ipi_bitmap; \ struct amd64tss pc_common_tss; \ struct user_segment_descriptor pc_gdt[NGDT]; \ - char __pad[2956] /* pad to UMA_PCPU_ALLOC_SIZE */ + void *pc_smp_tlb_pmap; \ + uint64_t pc_smp_tlb_addr1; \ + uint64_t pc_smp_tlb_addr2; \ + uint32_t pc_smp_tlb_gen; \ + u_int pc_smp_tlb_op; \ + char __pad[2924] /* pad to UMA_PCPU_ALLOC_SIZE */ #define PC_DBREG_CMD_NONE 0 #define PC_DBREG_CMD_LOAD 1 |
