From f8865bc65feced660a3075175200a60968187bba Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Wed, 29 May 2019 14:05:08 -0500 Subject: liburing: export io_uring_queue_mmap symbol io_uring_queue_mmap wasn't exported from the ld map file, meaning the linker gave it private, static linkage in the resulting shared object, as opposed to global linkage. This results in the symbol seemingly missing at link-time, despite the existence of the symbol in the library itself. Signed-off-by: Austin Seipp Signed-off-by: Jens Axboe --- src/liburing.map | 1 + 1 file changed, 1 insertion(+) diff --git a/src/liburing.map b/src/liburing.map index eb0e84a..39b0ca8 100644 --- a/src/liburing.map +++ b/src/liburing.map @@ -1,6 +1,7 @@ LIBURING_0.1 { global: io_uring_queue_init; + io_uring_queue_mmap; io_uring_queue_exit; io_uring_peek_cqe; io_uring_wait_cqe; -- cgit