| 888 | } |
| 889 | |
| 890 | static void |
| 891 | invlpg_handler(vm_offset_t smp_tlb_addr1) |
| 892 | { |
| 893 | #ifdef COUNT_XINVLTLB_HITS |
| 894 | xhits_pg[PCPU_GET(cpuid)]++; |
| 895 | #endif /* COUNT_XINVLTLB_HITS */ |
| 896 | #ifdef COUNT_IPIS |
| 897 | (*ipi_invlpg_counts[PCPU_GET(cpuid)])++; |
| 898 | #endif /* COUNT_IPIS */ |
| 899 | |
| 900 | invlpg(smp_tlb_addr1); |
| 901 | } |
| 902 | |
| 903 | static void |
| 904 | invlpg_invpcid_handler(pmap_t smp_tlb_pmap, vm_offset_t smp_tlb_addr1) |
no test coverage detected