io_uring: remove unused struct io_async_open
authorPavel Begunkov <asml.silence@gmail.com>
Fri, 7 Feb 2020 16:21:25 +0000 (19:21 +0300)
committerJens Axboe <axboe@kernel.dk>
Sat, 8 Feb 2020 20:06:58 +0000 (13:06 -0700)
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>
fs/io_uring.c

index 2954a8bdf8244db8b2fff7ba841555a759f36159..ebf3b43fb91bf61eeb3dad9edc26d5e73807d543 100644 (file)
@@ -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;
        };
 };