Skip to content

Commit

Permalink
io_uring: move io_eventfd_put
Browse files Browse the repository at this point in the history
Non functional change: move this function above io_eventfd_signal so it
can be used from there

Signed-off-by: Dylan Yudaken <dylany@fb.com>
Link: https://lore.kernel.org/r/20220830125013.570060-6-dylany@fb.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
  • Loading branch information
Dylan Yudaken authored and Jens Axboe committed Sep 21, 2022
1 parent c0e0d6b commit d8e9214
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions io_uring/io_uring.c
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,14 @@ static __cold void io_queue_deferred(struct io_ring_ctx *ctx)
}
}

static void io_eventfd_put(struct rcu_head *rcu)
{
struct io_ev_fd *ev_fd = container_of(rcu, struct io_ev_fd, rcu);

eventfd_ctx_put(ev_fd->cq_ev_fd);
kfree(ev_fd);
}

static void io_eventfd_signal(struct io_ring_ctx *ctx)
{
struct io_ev_fd *ev_fd;
Expand Down Expand Up @@ -2469,14 +2477,6 @@ static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg,
return 0;
}

static void io_eventfd_put(struct rcu_head *rcu)
{
struct io_ev_fd *ev_fd = container_of(rcu, struct io_ev_fd, rcu);

eventfd_ctx_put(ev_fd->cq_ev_fd);
kfree(ev_fd);
}

static int io_eventfd_unregister(struct io_ring_ctx *ctx)
{
struct io_ev_fd *ev_fd;
Expand Down

0 comments on commit d8e9214

Please sign in to comment.