io_uring: Fix unused function warnings
authorYueHaibing <yuehaibing@huawei.com>
Wed, 4 Mar 2020 07:53:52 +0000 (15:53 +0800)
committerJens Axboe <axboe@kernel.dk>
Tue, 10 Mar 2020 15:12:56 +0000 (09:12 -0600)
commit469956e853ccdba72bb82ad2eea6e8ab6b15791f
treefa23adb3e1a046d419b687a7bec06f92dad6b11d
parent84557871f2ff332edd445d70349c8724c313c683
io_uring: Fix unused function warnings

If CONFIG_NET is not set, gcc warns:

fs/io_uring.c:3110:12: warning: io_setup_async_msg defined but not used [-Wunused-function]
 static int io_setup_async_msg(struct io_kiocb *req,
            ^~~~~~~~~~~~~~~~~~

There are many funcions wraped by CONFIG_NET, move them
together to simplify code, also fix this warning.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Minor tweaks.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c