Commit e96e9779 authored by Pavel Begunkov's avatar Pavel Begunkov Committed by Jens Axboe

io_uring: remove unused struct io_async_open

struct io_async_open is unused, remove it.
Signed-off-by: default avatarPavel Begunkov <asml.silence@gmail.com>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 63e5d81f
...@@ -450,17 +450,12 @@ struct io_async_rw { ...@@ -450,17 +450,12 @@ struct io_async_rw {
ssize_t size; ssize_t size;
}; };
struct io_async_open {
struct filename *filename;
};
struct io_async_ctx { struct io_async_ctx {
union { union {
struct io_async_rw rw; struct io_async_rw rw;
struct io_async_msghdr msg; struct io_async_msghdr msg;
struct io_async_connect connect; struct io_async_connect connect;
struct io_timeout_data timeout; struct io_timeout_data timeout;
struct io_async_open open;
}; };
}; };
......
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