diff options
| author | Pavel Begunkov <asml.silence@gmail.com> | 2026-07-22 14:42:16 +0100 |
|---|---|---|
| committer | Jens Axboe <axboe@kernel.dk> | 2026-07-22 09:48:42 -0600 |
| commit | 201e30810223a40275f17c5e6ee410fa857b6b44 (patch) | |
| tree | 2860c286e95adc2fd9239a124e005b78661b6f90 /include/uapi/linux | |
| parent | af78c0020480aba3132fb9fa4db0fd1fb949feaa (diff) | |
| download | linux-201e30810223a40275f17c5e6ee410fa857b6b44.tar.gz linux-201e30810223a40275f17c5e6ee410fa857b6b44.tar.bz2 linux-201e30810223a40275f17c5e6ee410fa857b6b44.zip | |
io_uring/zcrx: rename ZCRX_NOTIF_NO_BUFFERS
ZCRX_NOTIF_NO_BUFFERS tells when page pool fails to allocate memory from
zcrx. "No buffers" could be more confusing, rename it to
ZCRX_NOTIF_ALLOC_FAIL.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://patch.msgid.link/29bd4fc069bc89691868beba0627ffbe570c2722.1784726895.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/io_uring/zcrx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/io_uring/zcrx.h b/include/uapi/linux/io_uring/zcrx.h index 99e56ec26ead..abb898d59a4b 100644 --- a/include/uapi/linux/io_uring/zcrx.h +++ b/include/uapi/linux/io_uring/zcrx.h @@ -69,7 +69,7 @@ enum zcrx_features { }; enum zcrx_notification_type { - ZCRX_NOTIF_NO_BUFFERS, + ZCRX_NOTIF_ALLOC_FAIL, ZCRX_NOTIF_COPY, __ZCRX_NOTIF_TYPE_LAST, |