mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 11:56:58 +00:00
io_handle_query_entry() doesn't use its struct io_ring_ctx *ctx argument. So remove it from the function and its callers. Signed-off-by: Caleb Sander Mateos <csander@purestorage.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
10 lines
176 B
C
10 lines
176 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef IORING_QUERY_H
|
|
#define IORING_QUERY_H
|
|
|
|
#include <linux/io_uring_types.h>
|
|
|
|
int io_query(void __user *arg, unsigned nr_args);
|
|
|
|
#endif
|