The patch titled dmaengine: correct onstack wait_queue_head declaration has been removed from the -mm tree. Its filename was dmaengine-correct-onstack-wait_queue_head-declaration.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: dmaengine: correct onstack wait_queue_head declaration From: Yong Zhang <yong.zhang0@xxxxxxxxx> Use DECLARE_WAIT_QUEUE_HEAD_ONSTACK() to make lockdep happy. Signed-off-by: Yong Zhang <yong.zhang0@xxxxxxxxx> Cc: Dan Williams <dan.j.williams@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/dma/dmatest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/dma/dmatest.c~dmaengine-correct-onstack-wait_queue_head-declaration drivers/dma/dmatest.c --- a/drivers/dma/dmatest.c~dmaengine-correct-onstack-wait_queue_head-declaration +++ a/drivers/dma/dmatest.c @@ -467,7 +467,7 @@ err_srcs: if (iterations > 0) while (!kthread_should_stop()) { - DECLARE_WAIT_QUEUE_HEAD(wait_dmatest_exit); + DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wait_dmatest_exit); interruptible_sleep_on(&wait_dmatest_exit); } _ Patches currently in -mm which might be from yong.zhang0@xxxxxxxxx are linux-next.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