struct blk_plug         plug;
 };
 
+struct io_ev_fd {
+       struct eventfd_ctx      *cq_ev_fd;
+       struct rcu_head         rcu;
+};
+
 struct io_ring_ctx {
        /* const or read-mostly hot data */
        struct {
        struct {
                unsigned                cached_cq_tail;
                unsigned                cq_entries;
-               struct eventfd_ctx      *cq_ev_fd;
+               struct io_ev_fd __rcu   *io_ev_fd;
                struct wait_queue_head  cq_wait;
                unsigned                cq_extra;
                atomic_t                cq_timeouts;
        return &rings->cqes[tail & mask];
 }
 
-static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
+static void io_eventfd_signal(struct io_ring_ctx *ctx)
 {
-       if (likely(!ctx->cq_ev_fd))
-               return false;
+       struct io_ev_fd *ev_fd;
+
+       /* Return quickly if ctx->io_ev_fd doesn't exist */
+       if (likely(!rcu_dereference_raw(ctx->io_ev_fd)))
+               return;
+
+       rcu_read_lock();
+       /*
+        * rcu_dereference ctx->io_ev_fd once and use it for both for checking
+        * and eventfd_signal
+        */
+       ev_fd = rcu_dereference(ctx->io_ev_fd);
+
+       /*
+        * Check again if ev_fd exists incase an io_eventfd_unregister call
+        * completed between the NULL check of ctx->io_ev_fd at the start of
+        * the function and rcu_read_lock.
+        */
+       if (unlikely(!ev_fd))
+               goto out;
        if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
-               return false;
-       return !ctx->eventfd_async || io_wq_current_is_worker();
+               goto out;
+
+       if (!ctx->eventfd_async || io_wq_current_is_worker())
+               eventfd_signal(ev_fd->cq_ev_fd, 1);
+
+out:
+       rcu_read_unlock();
 }
 
 /*
         */
        if (wq_has_sleeper(&ctx->cq_wait))
                wake_up_all(&ctx->cq_wait);
-       if (io_should_trigger_evfd(ctx))
-               eventfd_signal(ctx->cq_ev_fd, 1);
+       io_eventfd_signal(ctx);
 }
 
 static void io_cqring_ev_posted_iopoll(struct io_ring_ctx *ctx)
                if (waitqueue_active(&ctx->cq_wait))
                        wake_up_all(&ctx->cq_wait);
        }
-       if (io_should_trigger_evfd(ctx))
-               eventfd_signal(ctx->cq_ev_fd, 1);
+       io_eventfd_signal(ctx);
 }
 
 /* Returns true if there are no backlogged entries after the flush */
 
 static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
 {
+       struct io_ev_fd *ev_fd;
        __s32 __user *fds = arg;
-       int fd;
+       int fd, ret;
 
-       if (ctx->cq_ev_fd)
+       ev_fd = rcu_dereference_protected(ctx->io_ev_fd,
+                                       lockdep_is_held(&ctx->uring_lock));
+       if (ev_fd)
                return -EBUSY;
 
        if (copy_from_user(&fd, fds, sizeof(*fds)))
                return -EFAULT;
 
-       ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
-       if (IS_ERR(ctx->cq_ev_fd)) {
-               int ret = PTR_ERR(ctx->cq_ev_fd);
+       ev_fd = kmalloc(sizeof(*ev_fd), GFP_KERNEL);
+       if (!ev_fd)
+               return -ENOMEM;
 
-               ctx->cq_ev_fd = NULL;
+       ev_fd->cq_ev_fd = eventfd_ctx_fdget(fd);
+       if (IS_ERR(ev_fd->cq_ev_fd)) {
+               ret = PTR_ERR(ev_fd->cq_ev_fd);
+               kfree(ev_fd);
                return ret;
        }
 
-       return 0;
+       rcu_assign_pointer(ctx->io_ev_fd, ev_fd);
+       return ret;
+}
+
+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)
 {
-       if (ctx->cq_ev_fd) {
-               eventfd_ctx_put(ctx->cq_ev_fd);
-               ctx->cq_ev_fd = NULL;
+       struct io_ev_fd *ev_fd;
+
+       ev_fd = rcu_dereference_protected(ctx->io_ev_fd,
+                                       lockdep_is_held(&ctx->uring_lock));
+       if (ev_fd) {
+               rcu_assign_pointer(ctx->io_ev_fd, NULL);
+               call_rcu(&ev_fd->rcu, io_eventfd_put);
                return 0;
        }
 
                __io_sqe_files_unregister(ctx);
        if (ctx->rings)
                __io_cqring_overflow_flush(ctx, true);
-       mutex_unlock(&ctx->uring_lock);
        io_eventfd_unregister(ctx);
+       mutex_unlock(&ctx->uring_lock);
        io_destroy_buffers(ctx);
        if (ctx->sq_creds)
                put_cred(ctx->sq_creds);
        case IORING_REGISTER_FILES:
        case IORING_UNREGISTER_FILES:
        case IORING_REGISTER_FILES_UPDATE:
+       case IORING_REGISTER_EVENTFD:
+       case IORING_UNREGISTER_EVENTFD:
        case IORING_REGISTER_PROBE:
        case IORING_REGISTER_PERSONALITY:
        case IORING_UNREGISTER_PERSONALITY: