-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
qemu-user-i386: unable to reserve virtual address space #6172
Comments
That's a quite strange error. I didn't observed it on my device and x86 binaries are executed fine both on AArch64 and ARM devices. |
Problem is that it tries to read I have added a patch which changes a fallback value from 4096 (1 page) to 32768 (8 pages) as in |
That seems to work, thanks. |
Problem description
Trying to run any binary in qemu-user-i386 results in this error:
Note that the
-R
option does not fix the problem. It is either too small or it throws the same error.It seems that the "Success" part is the result of
strerror(errno)
, buterrno == 0
Steps to reproduce
exit(0)
:Expected behavior
It runs as expected.
Additional information
Note that it is impossible to read the
vm.mmap_min_addr
sysctl without root on my device.The text was updated successfully, but these errors were encountered: