LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] fix workqueue plist init to include a spinlock
[not found] <20080129170418.441437926@mvista.com>
@ 2008-01-29 17:04 ` Daniel Walker
0 siblings, 0 replies; only message in thread
From: Daniel Walker @ 2008-01-29 17:04 UTC (permalink / raw)
To: mingo
Cc: Peter Zijlstra, Steven Rostedt, Kevin Hilman, linux-rt-users,
linux-kernel
The lock field in plist_head_init() is used for debugging the plist,
and if a NULL is sent in it spews constant errors with debugging enabled ..
So I added what looks like the correct spinlocks into the plist_head_init().
Signed-off-by: Daniel Walker <dwalker@mvista.com>
---
kernel/workqueue.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: linux-2.6.24/kernel/workqueue.c
===================================================================
--- linux-2.6.24.orig/kernel/workqueue.c
+++ linux-2.6.24/kernel/workqueue.c
@@ -415,7 +415,7 @@ static void insert_wq_barrier(struct cpu
INIT_WORK(&barr->work, wq_barrier_func);
__set_bit(WORK_STRUCT_PENDING, work_data_bits(&barr->work));
- plist_head_init(&barr->worklist, NULL);
+ plist_head_init(&barr->worklist, &cwq->lock);
plist_head_splice(&cwq->worklist, &barr->worklist);
barr->cwq = cwq;
init_completion(&barr->done);
@@ -845,7 +845,7 @@ init_cpu_workqueue(struct workqueue_stru
cwq->wq = wq;
spin_lock_init(&cwq->lock);
- plist_head_init(&cwq->worklist, NULL);
+ plist_head_init(&cwq->worklist, &cwq->lock);
init_waitqueue_head(&cwq->more_work);
cwq->barrier = NULL;
init_waitqueue_head(&cwq->work_done);
--
--
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-01-29 17:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <20080129170418.441437926@mvista.com>
2008-01-29 17:04 ` [PATCH] fix workqueue plist init to include a spinlock Daniel Walker
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).