summaryrefslogtreecommitdiffstats
path: root/kernel/fork.c
diff options
context:
space:
mode:
authorZilvinas Valinskas2007-03-16 22:38:34 +0100
committerLinus Torvalds2007-03-17 03:25:06 +0100
commite29e175b0f40cffc86068156733def14a7a533ab (patch)
tree563204ffd4c548f2ea5773f14259afd60ecfc212 /kernel/fork.c
parent[PATCH] oom fix: prevent oom from killing a process with children/sibling unk... (diff)
downloadkernel-qcow2-linux-e29e175b0f40cffc86068156733def14a7a533ab.tar.gz
kernel-qcow2-linux-e29e175b0f40cffc86068156733def14a7a533ab.tar.xz
kernel-qcow2-linux-e29e175b0f40cffc86068156733def14a7a533ab.zip
[PATCH] initialise pi_lock if CONFIG_RT_MUTEXES=N
Fixes a bogus lockdep warning which causes lockdep to disable itself. Acked-by: Ingo Molnar <mingo@elte.hu> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/fork.c')
-rw-r--r--kernel/fork.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/fork.c b/kernel/fork.c
index d154cc786489..6af959c034d8 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -933,8 +933,8 @@ asmlinkage long sys_set_tid_address(int __user *tidptr)
static inline void rt_mutex_init_task(struct task_struct *p)
{
-#ifdef CONFIG_RT_MUTEXES
spin_lock_init(&p->pi_lock);
+#ifdef CONFIG_RT_MUTEXES
plist_head_init(&p->pi_waiters, &p->pi_lock);
p->pi_blocked_on = NULL;
#endif