The patch titled aio: remove unused aio_run_iocbs() has been added to the -mm tree. Its filename is aio-remove-unused-aio_run_iocbs.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: aio: remove unused aio_run_iocbs() From: Jeff Moyer <jmoyer@xxxxxxxxxx> aio_run_iocbs() is not used at all, so get rid of it. Signed-off-by: Jeff Moyer <jmoyer@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/aio.c | 22 +++------------------- 1 file changed, 3 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 @@ -798,30 +798,14 @@ 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, and keep running them 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 jmoyer@xxxxxxxxxx are linux-next.patch aio-remove-unnecessary-check.patch aio-remove-unused-aio_run_iocbs.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