Conversation
Enable IA32 emulation in the generic x86_64 firmware so 32-bit guest applications can run alongside 64-bit processes. IA32_EMULATION allows 32-bit programs to run, but does not provide legacy time32 syscalls when COMPAT_32BIT_TIME is disabled. The i386 futex syscall uses sys_futex_time32 even for operations that do not pass a timeout. Steam's 32-bit client aborts on Linux 6.12.91 because its first FUTEX_WAKE_PRIVATE call returns ENOSYS. Enable COMPAT_32BIT_TIME to provide the legacy syscall ABI expected by this client and other 32-bit applications built against it. Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com>
jakogut
requested review from
MatiasVara,
jakecorrenti,
slp and
tylerfanelli
as code owners
September 22, 2026 19:01
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.
Enable IA32 emulation in the generic x86_64 firmware so 32-bit guest applications can run alongside 64-bit processes.
IA32_EMULATION allows 32-bit programs to run, but does not provide legacy time32 syscalls when COMPAT_32BIT_TIME is disabled. The i386 futex syscall uses sys_futex_time32 even for operations that do not pass a timeout.
Steam's 32-bit client aborts on Linux 6.12.91 because its first FUTEX_WAKE_PRIVATE call returns ENOSYS. Enable COMPAT_32BIT_TIME to provide the legacy syscall ABI expected by this client and other 32-bit applications built against it.