lkml.org 
[lkml]   [2018]   [Mar]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 06/30] aio: simplify cancellation
    Date
    With the current aio code there is no need for the magic KIOCB_CANCELLED
    value, as a cancelation just kicks the driver to queue the completion
    ASAP, with all actual completion handling done in another thread. Given
    that both the completion path and cancelation take the context lock there
    is no need for magic cmpxchg loops either. If we remove iocbs from the
    active list before calling ->ki_cancel we can also rely on the invariant
    thay anything found on the list has a ->ki_cancel callback and can be
    cancelled, further simplifing the code.

    Signed-off-by: Christoph Hellwig <hch@lst.de>
    ---
    fs/aio.c | 34 ++--------------------------------
    1 file changed, 2 insertions(+), 32 deletions(-)

    diff --git a/fs/aio.c b/fs/aio.c
    index 0df07d399a05..c36eec8b0879 100644
    --- a/fs/aio.c
    +++ b/fs/aio.c
    @@ -162,19 +162,6 @@ struct fsync_iocb {
    bool datasync;
    };

    -/*
    - * We use ki_cancel == KIOCB_CANCELLED to indicate that a kiocb has been either
    - * cancelled or completed (this makes a certain amount of sense because
    - * successful cancellation - io_cancel() - does deliver the completion to
    - * userspace).
    - *
    - * And since most things don't implement kiocb cancellation and we'd really like
    - * kiocb completion to be lockless when possible, we use ki_cancel to
    - * synchronize cancellation and completion - we only set it to KIOCB_CANCELLED
    - * with xchg() or cmpxchg(), see batch_complete_aio() and kiocb_cancel().
    - */
    -#define KIOCB_CANCELLED ((void *) (~0ULL))
    -
    struct aio_kiocb {
    union {
    struct kiocb rw;
    @@ -574,23 +561,8 @@ EXPORT_SYMBOL(kiocb_set_cancel_fn);

    static int kiocb_cancel(struct aio_kiocb *kiocb)
    {
    - kiocb_cancel_fn *old, *cancel;
    -
    - /*
    - * Don't want to set kiocb->ki_cancel = KIOCB_CANCELLED unless it
    - * actually has a cancel function, hence the cmpxchg()
    - */
    -
    - cancel = READ_ONCE(kiocb->ki_cancel);
    - do {
    - if (!cancel || cancel == KIOCB_CANCELLED)
    - return -EINVAL;
    -
    - old = cancel;
    - cancel = cmpxchg(&kiocb->ki_cancel, old, KIOCB_CANCELLED);
    - } while (cancel != old);
    -
    - return cancel(&kiocb->rw);
    + list_del_init(&kiocb->ki_list);
    + return kiocb->ki_cancel(&kiocb->rw);
    }

    static void free_ioctx(struct work_struct *work)
    @@ -633,8 +605,6 @@ static void free_ioctx_users(struct percpu_ref *ref)
    while (!list_empty(&ctx->active_reqs)) {
    req = list_first_entry(&ctx->active_reqs,
    struct aio_kiocb, ki_list);
    -
    - list_del_init(&req->ki_list);
    kiocb_cancel(req);
    }

    --
    2.14.2
    \
     
     \ /
      Last update: 2018-03-28 09:42    [W:4.107 / U:0.728 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site