Page MenuHomeFreeBSD

amd64: compare TLB shootdown target to all_cpus
ClosedPublic

Authored by gallatin on Jan 11 2021, 9:24 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Oct 22, 11:43 AM
Unknown Object (File)
Sep 30 2024, 7:20 PM
Unknown Object (File)
Sep 27 2024, 3:23 AM
Unknown Object (File)
Sep 23 2024, 7:22 PM
Unknown Object (File)
Sep 22 2024, 12:34 PM
Unknown Object (File)
Sep 12 2024, 8:28 AM
Unknown Object (File)
Sep 8 2024, 4:11 PM
Unknown Object (File)
Sep 7 2024, 1:40 PM
Subscribers
None

Details

Summary

On amd64, the pmap code passes all_cpus to smp_targeted_tlb_shootdown() when unmapping from the kernel map. This function has an optimized path to send ipi's to all but itself, which it intends to do when the target is all cpus. However, we need to compare the target cpu mask with all_cpus(), rather than using CPU_ISFULLSET(). Comparing with CPU_ISFULLSET() will only work when we have MAXCPU cpus active in the system, otherwise, we'll be sending repeated ipis, rather than a single ipi to all cpus but ourselves.

Fixing this should reduce the time spent in native_lapic_ipi_wait as we will be sending ipis in parallel, rather than one-by-one. This result is confirmed by dtrace

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

gallatin created this revision.
gallatin added reviewers: kib, jhb, markj, jtl.
kib added a reviewer: alc.
This revision is now accepted and ready to land.Jan 11 2021, 9:31 PM

i386 should probably get the same patch?

i386 should probably get the same patch?

Possibly, but I don't have any i386 to test on, so I'm reluctant to touch it.