Page MenuHomeFreeBSD

x86/iommu: Reduce the number of queued invalidation interrupts
ClosedPublic

Authored by alc on Aug 6 2022, 7:36 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Jul 21, 4:33 AM
Unknown Object (File)
Tue, Jul 21, 4:28 AM
Unknown Object (File)
Tue, Jul 14, 1:09 PM
Unknown Object (File)
Mon, Jul 13, 7:20 AM
Unknown Object (File)
Sat, Jul 4, 4:31 AM
Unknown Object (File)
Thu, Jun 25, 8:26 PM
Unknown Object (File)
Jun 23 2026, 7:55 PM
Unknown Object (File)
May 31 2026, 4:43 PM
Subscribers

Details

Summary

Restructure dmar_qi_task() so as to reduce the number of invalidation completion interrupts. Specifically, because processing completed invalidations in dmar_qi_task() can take some time, don't reenable completion interrupts until we have finished processing the completed invalidations a first time. Then, check a second time after reenabling completion interrupts, so that invalidations that completed just before interrupts were reenabled do not linger until a future invalidation raises an interrupt. Testing for completed invalidations is now cheap; no locking is required.

Test Plan
netperf -H lip3 -t TCP_MAERTS -i 20

before

irq25: dmar0:qi                 35094545     144718

after

irq25: dmar0:qi                 28855066      92485

Diff Detail

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

Event Timeline

alc requested review of this revision.Aug 6 2022, 7:36 AM
alc created this revision.
This revision is now accepted and ready to land.Aug 6 2022, 1:13 PM