boards/qemu-intel64: add citest configuration - #20030
Open
raiden00pl wants to merge 2 commits into
Open
Conversation
xiaoxiang781216
previously approved these changes
Sep 1, 2026
raiden00pl
force-pushed
the
nuttx-qemu-pr
branch
4 times, most recently
from
September 2, 2026 06:41
08f275e to
75606b3
Compare
xiaoxiang781216
previously approved these changes
Sep 2, 2026
Member
Author
|
CI container uses old QEMU version that doens't support x2APIC, so we need this PR to run it #20044 |
raiden00pl
force-pushed
the
nuttx-qemu-pr
branch
from
September 2, 2026 10:26
75606b3 to
df4246b
Compare
CI/NTFC testing config for intel64 Signed-off-by: raiden00pl <raiden00@railab.me>
raiden00pl
force-pushed
the
nuttx-qemu-pr
branch
from
September 2, 2026 10:27
df4246b to
bcf65ba
Compare
xiaoxiang781216
previously approved these changes
Sep 2, 2026
intel64_oneshot_start() takes g_oneshot_spin and then, if the timer is already running, calls intel64_oneshot_cancel(), which takes the same spinlock again. Spinlocks are not recursive, so the CPU spins forever on its own lock while holding the critical section; the HPET timer ISR on another CPU then blocks on g_cpu_irqlock and the system hangs. This is hit as soon as the tickless scheduler re-arms a running HPET oneshot timer under SMP (ostest task_restart, LTP aio tests). Stop the running timer inline instead of calling cancel: disable the interrupt, detach the ISR so up_enable_irq() does not assert on a busy IRQ, and clear the running flag. The ISR, comparator and interrupt enable are reprogrammed by the rest of the function anyway. Assisted-by: Claude Code Signed-off-by: raiden00pl <raiden00@railab.me>
xiaoxiang781216
approved these changes
Sep 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
CI/NTFC testing config for intel64
Impact
CI tests for intel64
Testing
CI