The patch titled aio: remove unused aio_run_iocbs() has been removed from the -mm tree. Its filename is aio-remove-unused-aio_run_iocbs.patch This patch was dropped because it is obsolete ------------------------------------------------------ Subject: aio: remove unused aio_run_iocbs() From: Zach Brown <zach.brown@xxxxxxxxxx> Nothing is calling the aio_run_iocbs() variant of *aio_run_*iocb*(). Let's try and make life just a little less complicated by getting rid of it. Signed-off-by: Zach Brown <zach.brown@xxxxxxxxxx> Cc: Benjamin LaHaise <bcrl@xxxxxxxxx> Cc: Suparna Bhattacharya <suparna@xxxxxxxxxx> Cc: Badari Pulavarty <pbadari@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/aio.c | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff -puN fs/aio.c~aio-remove-unused-aio_run_iocbs fs/aio.c --- a/fs/aio.c~aio-remove-unused-aio_run_iocbs +++ a/fs/aio.c @@ -814,30 +814,13 @@ static void aio_queue_work(struct kioctx queue_delayed_work(aio_wq, &ctx->wq, timeout); } - /* - * aio_run_iocbs: + * aio_run_all_iocbs: * Process all pending retries queued on the ioctx - * run list. + * run list. It will retry until the list stays empty. * Assumes it is operating within the aio issuer's mm * context. */ -static inline void aio_run_iocbs(struct kioctx *ctx) -{ - int requeue; - - spin_lock_irq(&ctx->ctx_lock); - - requeue = __aio_run_iocbs(ctx); - spin_unlock_irq(&ctx->ctx_lock); - if (requeue) - aio_queue_work(ctx); -} - -/* - * just like aio_run_iocbs, but keeps running them until - * the list stays empty - */ static inline void aio_run_all_iocbs(struct kioctx *ctx) { spin_lock_irq(&ctx->ctx_lock); _ Patches currently in -mm which might be from zach.brown@xxxxxxxxxx are dio-centralize-completion-in-dio_complete.patch dio-call-blk_run_address_space-once-per-op.patch dio-formalize-bio-counters-as-a-dio-reference-count.patch dio-remove-duplicate-bio-wait-code.patch dio-only-call-aio_complete-after-returning-eiocbqueued.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html