StagingBuffer: Prefer mlock to io_uring_register_buffers

This commit is contained in:
2025-11-09 01:16:17 -04:00
parent 010ba9c7bd
commit d2e2d9bc3b
3 changed files with 25 additions and 1 deletions
+1
View File
@@ -149,6 +149,7 @@ private:
{
if (ptr != nullptr && size > 0)
{
munlock(ptr, size);
munmap(ptr, size);
}
}