projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1802656
)
io_uring: add new line after variable declaration
author
Anuj Gupta
<anuj20.g@samsung.com>
Mon, 2 Sep 2024 06:21:33 +0000
(11:51 +0530)
committer
Jens Axboe
<axboe@kernel.dk>
Mon, 2 Sep 2024 15:39:57 +0000
(09:39 -0600)
Fixes checkpatch warning
Signed-off-by: Anuj Gupta <anuj20.g@samsung.com>
Link:
https://lore.kernel.org/r/20240902062134.136387-2-anuj20.g@samsung.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/eventfd.c
patch
|
blob
|
blame
|
history
diff --git
a/io_uring/eventfd.c
b/io_uring/eventfd.c
index b9384503a2b752ec132347d594c060a41877875f..d9836d43725fdd1a70a2f74dd0205cec0ab5f753 100644
(file)
--- 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;
}