Skip to content

Commit

Permalink
Update liburing
Browse files Browse the repository at this point in the history
  • Loading branch information
Oipo committed Aug 22, 2024
1 parent e672877 commit be71d69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/liburing
Submodule liburing updated 93 files
+3 −0 .gitignore
+17 −0 CHANGELOG
+11 −3 Makefile
+1 −1 README
+78 −3 configure
+11 −4 examples/Makefile
+62 −0 examples/helpers.c
+7 −0 examples/helpers.h
+509 −0 examples/napi-busy-poll-client.c
+450 −0 examples/napi-busy-poll-server.c
+2,410 −0 examples/proxy.c
+102 −0 examples/proxy.h
+74 −14 examples/send-zerocopy.c
+1 −1 liburing.spec
+1 −1 make-debs.sh
+8 −0 man/io_uring_buf_ring_add.3
+46 −0 man/io_uring_buf_ring_available.3
+6 −0 man/io_uring_buf_ring_init.3
+2 −2 man/io_uring_check_version.3
+39 −31 man/io_uring_enter.2
+33 −1 man/io_uring_prep_cmd.3
+74 −0 man/io_uring_prep_fixed_fd_install.3
+48 −0 man/io_uring_prep_ftruncate.3
+92 −0 man/io_uring_prep_futex_wait.3
+76 −0 man/io_uring_prep_futex_waitv.3
+84 −0 man/io_uring_prep_futex_wake.3
+13 −1 man/io_uring_prep_poll_update.3
+98 −0 man/io_uring_prep_read_multishot.3
+1 −1 man/io_uring_prep_socket.3
+1 −1 man/io_uring_prep_timeout.3
+1 −1 man/io_uring_prep_timeout_update.3
+65 −0 man/io_uring_prep_waitid.3
+2 −2 man/io_uring_queue_init.3
+1 −1 man/io_uring_register.2
+5 −0 man/io_uring_register_buf_ring.3
+40 −0 man/io_uring_register_napi.3
+31 −9 man/io_uring_setup.2
+6 −0 man/io_uring_submit_and_wait.3
+21 −3 man/io_uring_submit_and_wait_timeout.3
+27 −0 man/io_uring_unregister_napi.3
+6 −0 man/io_uring_wait_cqe_nr.3
+15 −3 man/io_uring_wait_cqes.3
+19 −2 src/Makefile
+0 −1 src/arch/aarch64/lib.h
+108 −28 src/include/liburing.h
+52 −0 src/include/liburing/io_uring.h
+15 −1 src/liburing-ffi.map
+7 −0 src/liburing.map
+8 −12 src/queue.c
+24 −0 src/register.c
+34 −11 src/setup.c
+9 −0 src/setup.h
+1 −1 src/version.c
+16 −2 test/Makefile
+1 −1 test/a4c0b3decb33.c
+1 −1 test/accept-reuse.c
+18 −2 test/accept.c
+121 −0 test/buf-ring-nommap.c
+83 −0 test/buf-ring-put.c
+42 −7 test/buf-ring.c
+46 −11 test/connect.c
+168 −0 test/defer-tw-timeout.c
+1 −1 test/eventfd-reg.c
+500 −0 test/fd-install.c
+7 −3 test/file-register.c
+1 −1 test/file-verify.c
+97 −0 test/fixed-buf-merge.c
+571 −0 test/futex.c
+48 −40 test/hardlink.c
+8 −12 test/helpers.c
+10 −0 test/helpers.h
+5 −2 test/io_uring_enter.c
+318 −0 test/msg-ring-fd.c
+26 −6 test/msg-ring-flags.c
+42 −10 test/msg-ring.c
+1 −1 test/multicqes_drain.c
+4 −2 test/no-mmap-inval.c
+5 −1 test/openat2.c
+0 −426 test/pollfree.c
+153 −0 test/read-mshot-empty.c
+404 −0 test/read-mshot.c
+6 −2 test/recv-multishot.c
+82 −6 test/reg-fd-only.c
+19 −5 test/ring-leak.c
+242 −0 test/ringbuf-status.c
+220 −116 test/send-zerocopy.c
+5 −2 test/send_recv.c
+332 −0 test/socket-getsetsock-cmd.c
+33 −11 test/socket-io-cmd.c
+0 −168 test/sqpoll-cancel-hang.c
+186 −0 test/truncate.c
+2 −2 test/version.c
+373 −0 test/waitid.c

0 comments on commit be71d69

Please sign in to comment.