diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-02-01 10:45:26 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-02-01 10:45:26 -0800 |
commit | e20da891302c69d49fea181b4e49c33acc2305de (patch) | |
tree | 237bb5e56a2a2ad84e796af6758079011896bf53 /kernel | |
parent | 834db333eda46246f6290f0e1a7525af04fc8cb4 (diff) | |
parent | 48d50674179981e41f432167b2441cec782d5484 (diff) | |
download | op-kernel-dev-e20da891302c69d49fea181b4e49c33acc2305de.zip op-kernel-dev-e20da891302c69d49fea181b4e49c33acc2305de.tar.gz |
Merge branch 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
lockdep: Fix check_usage_backwards() error message
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/lockdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/lockdep.c b/kernel/lockdep.c index 5feaddc..c62ec14 100644 --- a/kernel/lockdep.c +++ b/kernel/lockdep.c @@ -2147,7 +2147,7 @@ check_usage_backwards(struct task_struct *curr, struct held_lock *this, return ret; return print_irq_inversion_bug(curr, &root, target_entry, - this, 1, irqclass); + this, 0, irqclass); } void print_irqtrace_events(struct task_struct *curr) |