Commit 12044332 authored by Jens Axboe's avatar Jens Axboe

io_uring/kbuf: shrink nr_iovs/mode in struct buf_sel_arg

nr_iovs is capped at 1024, and mode only has a few low values. We can
safely make them u16, in preparation for adding a few more members.
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 7ed9e09e
...@@ -56,8 +56,8 @@ struct buf_sel_arg { ...@@ -56,8 +56,8 @@ struct buf_sel_arg {
struct iovec *iovs; struct iovec *iovs;
size_t out_len; size_t out_len;
size_t max_len; size_t max_len;
int nr_iovs; unsigned short nr_iovs;
int mode; unsigned short mode;
}; };
void __user *io_buffer_select(struct io_kiocb *req, size_t *len, void __user *io_buffer_select(struct io_kiocb *req, size_t *len,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment