From: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> When adding these two functions, Stefano didn't add io_uring_enable_rings() and io_uring_register_restrictions() to liburing.map. It causes a linking problem. Add them to liburing.map. This issue hits liburing 2.0 to 2.3. Closes: https://github.com/axboe/liburing/pull/774 Fixes: https://github.com/axboe/liburing/issues/773 Fixes: https://github.com/facebook/folly/issues/1908 Fixes: d2654b1ac886 ("Add helper to enable rings") Fixes: 25cf9b968a27 ("Add helper to register restrictions") Cc: Dylan Yudaken <dylany@xxxxxxxx> Cc: Stefano Garzarella <sgarzare@xxxxxxxxxx> Signed-off-by: Ammar Faizi <ammarfaizi2@xxxxxxxxxxx> --- src/liburing.map | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/liburing.map b/src/liburing.map index 67aebae..1dbe765 100644 --- a/src/liburing.map +++ b/src/liburing.map @@ -73,4 +73,7 @@ LIBURING_2.4 { io_uring_major_version; io_uring_minor_version; io_uring_check_version; + + io_uring_enable_rings; + io_uring_register_restrictions; } LIBURING_2.3; base-commit: 0df8a379e929641699c2ab1f42de1efd2515b908 -- Ammar Faizi