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

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
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -450,17 +450,12 @@ struct io_async_rw {
	ssize_t				size;
};

struct io_async_open {
	struct filename			*filename;
};

struct io_async_ctx {
	union {
		struct io_async_rw	rw;
		struct io_async_msghdr	msg;
		struct io_async_connect	connect;
		struct io_timeout_data	timeout;
		struct io_async_open	open;
	};
};