You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting up, I encountered ibv_reg_mr failed [error code: 14] error, indicating that the memory region requested is a bad / invalid address.
Here are the values that I have
This likely indicates that the memory you're trying to register is out-of-bounds.
Try setting your device size to a value lower than 8G using the change_dev_size.py script. After doing so, recompile LibFS/KernFS, and then rerun mkfs.sh.
You're correct, thank you very much for the suggestion and help!
Do you mind if I clarify why the problem occured? Assise's NVM region is 8GiB and from what I understand, the actual size of the emulated NVM is indeed 8GiB, as shown through ndctl list
Hi,
Problem
When setting up, I encountered
ibv_reg_mr failed [error code: 14]
error, indicating that the memory region requested is a bad / invalid address.Here are the values that I have
libfs/lib/global/global.h
g_log_size 32768UL // (128 MB)
libfs/lib/rdma/mr.c
mrs[0] = {addr = 140733004644352, length = 4299161600}
mrs[1] = {addr = 140728713871360, length = 111071232}
vi /etc/default/grub
python3 ./utils/change_dev_size.py 8 0 0
/etc/security/limits.conf
Do you mind helping me out with this problem?
Thank you!
The text was updated successfully, but these errors were encountered: