diff options
author | Pavel Begunkov <asml.silence@gmail.com> | 2020-02-07 19:21:25 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-02-08 13:06:58 -0700 |
commit | e96e977992d0ea40b6e70cb63dede85c9078e744 (patch) | |
tree | 483a120198380c4d20d820f30114a5fa9b91938c /fs/io_uring.c | |
parent | 63e5d81f72af1bf370bf8a6745b0a8d71a7bb37d (diff) |
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.c | 5 |
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; }; }; |