Prev: [PATCH] obsolete config in kernel source (SA1100_CT6001)
Next: inotify/fsnotify: tree-watching support
From: Yong Zhang on 5 Feb 2010 09:00 Use DECLARE_WAIT_QUEUE_HEAD_ONSTACK to make lockdep happy Signed-off-by: Yong Zhang <yong.zhang0(a)gmail.com> Cc: Dan Williams <dan.j.williams(a)intel.com> Cc: Maciej Sosnowski <maciej.sosnowski(a)intel.com> Cc: Andrew Morton <akpm(a)linux-foundation.org> Cc: Nicolas Ferre <nicolas.ferre(a)atmel.com> --- drivers/dma/dmatest.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/dma/dmatest.c b/drivers/dma/dmatest.c index 8b90516..948d563 100644 --- a/drivers/dma/dmatest.c +++ b/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); } -- 1.6.3.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |