aboutsummaryrefslogtreecommitdiffstats
path: root/fs/io_uring.c
diff options
context:
space:
mode:
authorPavel Begunkov <asml.silence@gmail.com>2020-02-07 19:21:25 +0300
committerJens Axboe <axboe@kernel.dk>2020-02-08 13:06:58 -0700
commite96e977992d0ea40b6e70cb63dede85c9078e744 (patch)
tree483a120198380c4d20d820f30114a5fa9b91938c /fs/io_uring.c
parentio_uring: flush overflowed CQ events in the io_uring_poll() (diff)
downloadlinux-dev-e96e977992d0ea40b6e70cb63dede85c9078e744.tar.xz
linux-dev-e96e977992d0ea40b6e70cb63dede85c9078e744.zip
io_uring: remove unused struct io_async_open
struct io_async_open is unused, remove it. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/io_uring.c')
-rw-r--r--fs/io_uring.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c
index 2954a8bdf824..ebf3b43fb91b 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -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;
};
};