Home
last modified time | relevance | path

Searched refs:nr_args (Results 1 – 5 of 5) sorted by relevance

/io_uring/
Drsrc.c22 u32 nr_args; member
435 unsigned nr_args) in __io_sqe_files_update() argument
448 if (up->offset + nr_args > ctx->nr_user_files) in __io_sqe_files_update()
451 for (done = 0; done < nr_args; done++) { in __io_sqe_files_update()
515 unsigned int nr_args) in __io_sqe_buffers_update() argument
526 if (up->offset + nr_args > ctx->nr_user_bufs) in __io_sqe_buffers_update()
529 for (done = 0; done < nr_args; done++) { in __io_sqe_buffers_update()
575 unsigned nr_args) in __io_register_rsrc_update() argument
580 if (check_add_overflow(up->offset, nr_args, &tmp)) in __io_register_rsrc_update()
588 return __io_sqe_files_update(ctx, up, nr_args); in __io_register_rsrc_update()
[all …]
Dtctx.c245 unsigned nr_args) in io_ringfd_register() argument
252 if (!nr_args || nr_args > IO_RINGFD_REG_MAX) in io_ringfd_register()
262 for (i = 0; i < nr_args; i++) { in io_ringfd_register()
304 unsigned nr_args) in io_ringfd_unregister() argument
311 if (!nr_args || nr_args > IO_RINGFD_REG_MAX) in io_ringfd_unregister()
316 for (i = 0; i < nr_args; i++) { in io_ringfd_unregister()
Dtctx.h18 unsigned nr_args);
20 unsigned nr_args);
Drsrc.h74 unsigned int nr_args, u64 __user *tags);
78 unsigned nr_args, u64 __user *tags);
96 unsigned nr_args);
Dio_uring.c3692 unsigned nr_args) in io_probe() argument
3698 size = struct_size(p, ops, nr_args); in io_probe()
3713 if (nr_args > IORING_OP_LAST) in io_probe()
3714 nr_args = IORING_OP_LAST; in io_probe()
3716 for (i = 0; i < nr_args; i++) { in io_probe()
3749 void __user *arg, unsigned int nr_args) in io_register_restrictions() argument
3763 if (!arg || nr_args > IORING_MAX_RESTRICTIONS) in io_register_restrictions()
3766 size = array_size(nr_args, sizeof(*res)); in io_register_restrictions()
3776 for (i = 0; i < nr_args; i++) { in io_register_restrictions()
3971 void __user *arg, unsigned nr_args) in __io_uring_register() argument
[all …]