Page MenuHomeFreeBSD

enabling Hyper-V SMP for ARM64
ClosedPublic

Authored by schakrabarti_microsoft.com on May 26 2023, 9:17 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Dec 11, 4:56 PM
Unknown Object (File)
Thu, Dec 11, 4:24 PM
Unknown Object (File)
Tue, Dec 9, 6:28 PM
Unknown Object (File)
Sun, Nov 30, 4:03 AM
Unknown Object (File)
Thu, Nov 27, 12:30 PM
Unknown Object (File)
Nov 20 2025, 7:13 AM
Unknown Object (File)
Nov 14 2025, 3:06 PM
Unknown Object (File)
Nov 9 2025, 12:05 AM
Subscribers

Details

Summary

vmbus_synic_setup(), is invoked via vmbus_intrhook -> vmbus_doattach -> smp_rendezvous. On !EARLY_AP_STARTUP (e.g., aarch64), SMP isn't functional in intrhooks and smp_rendezvous() will just call vmbus_synic_setup() on the boot AP. There's nothing that will initialize the pcpu data on every other AP.
To fix it we need to use SI_SUB_SMP for vmbus_doattach().

Diff Detail

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

Event Timeline

sys/dev/hyperv/vmbus/vmbus.c
1534

This code should just go away entirely, there is no !EARLY_AP_STARTUP platform where it will ever call vmbus_doattach here.

1586

There's a reference to cold down here in the sysinit that should also go away, we should just always call vmbus_doattach() if we're doing the sysinit -- it *has* to be positioned at a point where "thread scheduling is possible".

schakrabarti_microsoft.com marked an inline comment as done.
schakrabarti_microsoft.com marked an inline comment as done.
This revision is now accepted and ready to land.Jun 6 2023, 7:54 AM
This revision was automatically updated to reflect the committed changes.