CHANGELOG 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. liburing-2.6 release
  2. - Add getsockopt and setsockopt socket commands
  3. - Add test cases to test/hardlink
  4. - Man page fixes
  5. - Add futex support, and test cases
  6. - Add waitid support, and test cases
  7. - Add read multishot, and test cases
  8. - Add support for IORING_SETUP_NO_SQARRAY
  9. - Use IORING_SETUP_NO_SQARRAY as the default
  10. - Add support for IORING_OP_FIXED_FD_INSTALL
  11. - Add io_uring_prep_fixed_fd_install() helper
  12. - Support for napi busy polling
  13. - Improve/add test cases
  14. - Man page fixes
  15. - Add sample 'proxy' example
  16. liburing-2.5 release
  17. - Add support for io_uring_prep_cmd_sock()
  18. - Add support for application allocated ring memory, for placing rings
  19. in huge mem. Available through io_uring_queue_init_mem().
  20. - Add support for registered ring fds
  21. - Various documentation updates
  22. - Various fixes
  23. liburing-2.4 release
  24. - Add io_uring_{major,minor,check}_version() functions.
  25. - Add IO_URING_{MAJOR,MINOR,CHECK}_VERSION() macros.
  26. - FFI support (for non-C/C++ languages integration).
  27. - Add io_uring_prep_msg_ring_cqe_flags() function.
  28. - Deprecate --nolibc configure option.
  29. - CONFIG_NOLIBC is always enabled on x86-64, x86, and aarch64.
  30. - Add support for IORING_REGISTER_USE_REGISTERED_RING and use if available.
  31. - Add io_uring_close_ring_fd() function.
  32. - Add io_uring_prep_msg_ring_fd_alloc function.
  33. - Add io_uring_free_buf_ring() and io_uring_setup_buf_ring() functions.
  34. - Ensure that io_uring_prep_accept_direct(), io_uring_prep_openat_direct(),
  35. io_uring_prep_openat2_direct(), io_uring_prep_msg_ring_fd(), and
  36. io_uring_prep_socket_direct() factor in being called with
  37. IORING_FILE_INDEX_ALLOC for allocating a direct descriptor.
  38. - Add io_uring_prep_sendto() function.
  39. - Add io_uring_prep_cmd_sock() function.
  40. liburing-2.3 release
  41. - Support non-libc build for aarch64.
  42. - Add io_uring_{enter,enter2,register,setup} syscall functions.
  43. - Add sync cancel interface, io_uring_register_sync_cancel().
  44. - Fix return value of io_uring_submit_and_wait_timeout() to match the
  45. man page.
  46. - Improvements to the regression tests
  47. - Add support and test case for passthrough IO
  48. - Add recv and recvmsg multishot helpers and support
  49. - Add documentation and support for IORING_SETUP_DEFER_TASKRUN
  50. - Fix potential missing kernel entry with IORING_SETUP_IOPOLL
  51. - Add support and documentation for zero-copy network transmit
  52. - Various optimizations
  53. - Many cleanups
  54. - Many man page additions and updates
  55. liburing-2.2 release
  56. - Support non-libc builds.
  57. - Optimized syscall handling for x86-64/x86/aarch64.
  58. - Enable non-lib function calls for fast path functions.
  59. - Add support for multishot accept.
  60. - io_uring_register_files() will set RLIMIT_NOFILE if necessary.
  61. - Add support for registered ring fds, io_uring_register_ring_fd(),
  62. reducing the overhead of an io_uring_enter() system call.
  63. - Add support for the message ring opcode.
  64. - Add support for newer request cancelation features.
  65. - Add support for IORING_SETUP_COOP_TASKRUN, which can help reduce the
  66. overhead of io_uring in general. Most applications should set this flag,
  67. see the io_uring_setup.2 man page for details.
  68. - Add support for registering a sparse buffer and file set.
  69. - Add support for a new buffer provide scheme, see
  70. io_uring_register_buf_ring.3 for details.
  71. - Add io_uring_submit_and_wait_timeout() for submitting IO and waiting
  72. for completions with a timeout.
  73. - Add io_uring_prep_{read,write}v2 prep helpers.
  74. - Add io_uring_prep_close_direct() helper.
  75. - Add support for SQE128 and CQE32, which are doubly sized SQE and CQE
  76. rings. This is needed for some cases of the new IORING_OP_URING_CMD,
  77. notably for NVMe passthrough.
  78. - ~5500 lines of man page additions, including adding ~90 new man pages.
  79. - Synced with the 5.19 kernel release, supporting all the features of
  80. 5.19 and earlier.
  81. - 24 new regression test cases, and ~7000 lines of new tests in general.
  82. - General optimizations and fixes.