From: Pavel Begunkov Date: Fri, 7 Feb 2020 16:21:25 +0000 (+0300) Subject: io_uring: remove unused struct io_async_open X-Git-Tag: v5.6-rc2~17^2~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e96e977992d0ea40b6e70cb63dede85c9078e744;p=thirdparty%2Fkernel%2Flinux.git io_uring: remove unused struct io_async_open struct io_async_open is unused, remove it. Signed-off-by: Pavel Begunkov Signed-off-by: Jens Axboe --- diff --git a/fs/io_uring.c b/fs/io_uring.c index 2954a8bdf8244..ebf3b43fb91bf 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; }; };