diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2023-02-18 14:39:01 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-02-18 13:19:36 -0800 |
commit | ccd3077c9def7345704f5cb3acb8e2142039681f (patch) | |
tree | 93e0490f458c68955ad24f5b3ead6920eaa850b1 | |
parent | 132845c1121fc54262d6224e07ed05e2fe42d493 (diff) | |
download | meta-openembedded-ccd3077c9def7345704f5cb3acb8e2142039681f.tar.gz |
liburing: upgrade 2.2 -> 2.3
Changelog:
===========
- Support non-libc build for aarch64.
- Add io_uring_{enter,enter2,register,setup} syscall functions.
- Add sync cancel interface, io_uring_register_sync_cancel().
- Fix return value of io_uring_submit_and_wait_timeout() to match the
man page.
- Improvements to the regression tests
- Add support and test case for passthrough IO
- Add recv and recvmsg multishot helpers and support
- Add documentation and support for IORING_SETUP_DEFER_TASKRUN
- Fix potential missing kernel entry with IORING_SETUP_IOPOLL
- Add support and documentation for zero-copy network transmit
- Various optimizations
- Many cleanups
- Many man page additions and updates
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/liburing/liburing_2.3.bb (renamed from meta-oe/recipes-support/liburing/liburing_2.2.bb) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/liburing/liburing_2.2.bb b/meta-oe/recipes-support/liburing/liburing_2.3.bb index 8cc7d74f9f..b3da4d5e0e 100644 --- a/meta-oe/recipes-support/liburing/liburing_2.2.bb +++ b/meta-oe/recipes-support/liburing/liburing_2.3.bb | |||
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://README;beginline=41;endline=44;md5=2b0e9926530c269f5a | |||
12 | SRC_URI = "git://github.com/axboe/liburing.git;branch=master;protocol=https" | 12 | SRC_URI = "git://github.com/axboe/liburing.git;branch=master;protocol=https" |
13 | SRC_URI:append:libc-musl:riscv64 = " file://0001-do-not-build-examples.patch " | 13 | SRC_URI:append:libc-musl:riscv64 = " file://0001-do-not-build-examples.patch " |
14 | SRC_URI:append:libc-musl:riscv32 = " file://0001-do-not-build-examples.patch " | 14 | SRC_URI:append:libc-musl:riscv32 = " file://0001-do-not-build-examples.patch " |
15 | SRCREV = "dda4848a9911120a903bef6284fb88286f4464c9" | 15 | SRCREV = "4915f2af869876d892a1f591ee2c21be21c6fc5c" |
16 | 16 | ||
17 | S = "${WORKDIR}/git" | 17 | S = "${WORKDIR}/git" |
18 | 18 | ||