We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
We use the Ubuntu power-on auto-start script to execute two launch_vm.sh scripts to bringup two guest VMs.
Sometimes the guest bringup fails and the error is as follows:
18.440990] acrn_dm: mkdir /run/hugepage failed. [ 18.441002] acrn_dm: vm_create: VM2 [ 18.441005] acrn_dm: vm_create: VM1 [ 18.452230] acrn_dm: vm setup asyncio page [ 18.452249] acrn_dm: vm_setup_memory: size=0x500000000 [ 18.452264] acrn_dm: lock acrn hugetlb failed with errno: 9 [ 18.452907] acrn_dm: ACRN_IOCTL_SET_MEMSEG ioctl() returned an error: Bad address [ 18.452924] acrn_dm: Unable to setup memory (14) [ 18.462165] acrn_dm: vm setup asyncio page [ 18.462188] acrn_dm: vm_setup_memory: size=0x800000000 [ 23.093691] acrn_dm: vm_init_vdevs
I think this is a software bug. When multiple VMs create the/run/hugepagedirectory at the same time, there is no locking mechanism.
/run/hugepage
init_hugetlb should return a Boolean value and cannot return -1.
init_hugetlb
The text was updated successfully, but these errors were encountered:
18.440990] acrn_dm: mkdir /run/hugepage failed. [ 18.441002] acrn_dm: vm_create: VM2 [ 18.441005] acrn_dm: vm_create: VM1 [ 18.452230] acrn_dm: vm setup asyncio page [ 18.452249] acrn_dm: vm_setup_memory: size=0x500000000 [ 18.452264] acrn_dm: lock acrn hugetlb failed with errno: 9 [ 18.452907] acrn_dm: ACRN_IOCTL_SET_MEMSEG ioctl() returned an error: Bad address [ 18.452924] acrn_dm: Unable to setup memory (14) [ 18.462165] acrn_dm: vm setup asyncio page [ 18.462188] acrn_dm: vm_setup_memory: size=0x800000000
Sorry, something went wrong.
No branches or pull requests
We use the Ubuntu power-on auto-start script to execute two launch_vm.sh scripts to bringup two guest VMs.
Sometimes the guest bringup fails and the error is as follows:
18.440990] acrn_dm: mkdir /run/hugepage failed. [ 18.441002] acrn_dm: vm_create: VM2 [ 18.441005] acrn_dm: vm_create: VM1 [ 18.452230] acrn_dm: vm setup asyncio page [ 18.452249] acrn_dm: vm_setup_memory: size=0x500000000 [ 18.452264] acrn_dm: lock acrn hugetlb failed with errno: 9 [ 18.452907] acrn_dm: ACRN_IOCTL_SET_MEMSEG ioctl() returned an error: Bad address [ 18.452924] acrn_dm: Unable to setup memory (14) [ 18.462165] acrn_dm: vm setup asyncio page [ 18.462188] acrn_dm: vm_setup_memory: size=0x800000000 [ 23.093691] acrn_dm: vm_init_vdevs
I think this is a software bug. When multiple VMs create the
/run/hugepage
directory at the same time, there is no locking mechanism.init_hugetlb
should return a Boolean value and cannot return -1.The text was updated successfully, but these errors were encountered: