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
cxl_mmio_read32() and cxl_mmio_read64() consider it an error if a mmio read returns 0xfffffff... (all 1's).
By default when reading 0xffffff, it raises SIGBUS, which terminates the process.
Instead, libcxl should consider 0xffffff... as a hint that an error might have occurred and run extra checks to know for sure. It is similar to what the kernel is doing. The issue is how to do it from userland.
The text was updated successfully, but these errors were encountered:
cxl_mmio_read32() and cxl_mmio_read64() consider it an error if a mmio read returns 0xfffffff... (all 1's).
By default when reading 0xffffff, it raises SIGBUS, which terminates the process.
Instead, libcxl should consider 0xffffff... as a hint that an error might have occurred and run extra checks to know for sure. It is similar to what the kernel is doing. The issue is how to do it from userland.
The text was updated successfully, but these errors were encountered: