From: Anuj Gupta Date: Mon, 2 Sep 2024 06:21:33 +0000 (+0530) Subject: io_uring: add new line after variable declaration X-Git-Tag: v6.12-rc1~205^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6cf52b42c4efa4d064d19064fd2313ca4aaf9569;p=thirdparty%2Fkernel%2Flinux.git io_uring: add new line after variable declaration Fixes checkpatch warning Signed-off-by: Anuj Gupta Link: https://lore.kernel.org/r/20240902062134.136387-2-anuj20.g@samsung.com Signed-off-by: Jens Axboe --- diff --git a/io_uring/eventfd.c b/io_uring/eventfd.c index b9384503a2b75..d9836d43725fd 100644 --- a/io_uring/eventfd.c +++ b/io_uring/eventfd.c @@ -126,6 +126,7 @@ int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg, ev_fd->cq_ev_fd = eventfd_ctx_fdget(fd); if (IS_ERR(ev_fd->cq_ev_fd)) { int ret = PTR_ERR(ev_fd->cq_ev_fd); + kfree(ev_fd); return ret; }