The patch titled Subject: crypto: engine: fix linux-next merge conflict has been added to the -mm tree. Its filename is kthread-kthread-worker-api-cleanup-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/kthread-kthread-worker-api-cleanup-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/kthread-kthread-worker-api-cleanup-fix.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 *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: crypto: engine: fix linux-next merge conflict A merge conflict between the akpm-current tree and the crypto tree caused a build failure in ARM allmodconfig today: crypto/crypto_engine.c: In function 'crypto_transfer_hash_request': crypto/crypto_engine.c:234:3: error: implicit declaration of function 'queue_kthread_work' [-Werror=implicit-function-declaration] This adapts the crypto code to the API change. Fixes: 4cba7cf025f3 ("crypto: engine - permit to enqueue ashash_request") Fixes: 8ca76638a2d0 ("kthread: kthread worker API cleanup") Link: http://lkml.kernel.org/r/20160908135724.1311726-1-arnd@xxxxxxxx Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: Petr Mladek <pmladek@xxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- crypto/crypto_engine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN crypto/crypto_engine.c~kthread-kthread-worker-api-cleanup-fix crypto/crypto_engine.c --- a/crypto/crypto_engine.c~kthread-kthread-worker-api-cleanup-fix +++ a/crypto/crypto_engine.c @@ -231,7 +231,7 @@ int crypto_transfer_hash_request(struct ret = ahash_enqueue_request(&engine->queue, req); if (!engine->busy && need_pump) - queue_kthread_work(&engine->kworker, &engine->pump_requests); + kthread_queue_work(&engine->kworker, &engine->pump_requests); spin_unlock_irqrestore(&engine->queue_lock, flags); return ret; @@ -321,7 +321,7 @@ void crypto_finalize_hash_request(struct req->base.complete(&req->base, err); - queue_kthread_work(&engine->kworker, &engine->pump_requests); + kthread_queue_work(&engine->kworker, &engine->pump_requests); } EXPORT_SYMBOL_GPL(crypto_finalize_hash_request); _ Patches currently in -mm which might be from arnd@xxxxxxxx are compat-remove-compat_printk.patch kthread-kthread-worker-api-cleanup-fix.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