diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-11-07 18:52:45 +0300 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-11-07 18:52:45 +0300 |
| commit | 9dc520632a0dd3bdc37540528040771a96bdc8ff (patch) | |
| tree | 2b2858dd30593bcde4cc08444d98c9b9f9cd826a /include | |
| parent | 11a6afabb4b38e70b6d697fd90fddedb9ad0ec43 (diff) | |
| parent | 1fd5367391bf0eeb09e624c4ab45121b54eaab96 (diff) | |
| download | linux-9dc520632a0dd3bdc37540528040771a96bdc8ff.tar.xz | |
Merge tag 'io_uring-6.18-20251106' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux
Pull io_uring fixes from Jens Axboe:
- Remove the sync refill API that was added in this release, in
anticipation of doing it in a better way for the next release
- Fix type extension for calculating size off nr_pages, like we do
in other spots
* tag 'io_uring-6.18-20251106' of git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux:
io_uring: fix types for region size calulation
io_uring/zcrx: remove sync refill uapi
Diffstat (limited to 'include')
| -rw-r--r-- | include/uapi/linux/io_uring.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/uapi/linux/io_uring.h b/include/uapi/linux/io_uring.h index 263bed13473e..b7c8dad26690 100644 --- a/include/uapi/linux/io_uring.h +++ b/include/uapi/linux/io_uring.h @@ -689,9 +689,6 @@ enum io_uring_register_op { /* query various aspects of io_uring, see linux/io_uring/query.h */ IORING_REGISTER_QUERY = 35, - /* return zcrx buffers back into circulation */ - IORING_REGISTER_ZCRX_REFILL = 36, - /* this goes last */ IORING_REGISTER_LAST, @@ -1073,15 +1070,6 @@ struct io_uring_zcrx_ifq_reg { __u64 __resv[3]; }; -struct io_uring_zcrx_sync_refill { - __u32 zcrx_id; - /* the number of entries to return */ - __u32 nr_entries; - /* pointer to an array of struct io_uring_zcrx_rqe */ - __u64 rqes; - __u64 __resv[2]; -}; - #ifdef __cplusplus } #endif |
