From: Arnd Bergmann Date: Tue, 20 May 2008 17:17:02 +0000 (+0200) Subject: x86-mce: BKL pushdown X-Git-Tag: v2.6.27-rc1~1103^2~15 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=38c4c97c62a30aef276663c1128a2051a25ead7d;p=safe%2Fjmp%2Flinux-2.6 x86-mce: BKL pushdown Signed-off-by: Arnd Bergmann --- diff --git a/arch/x86/kernel/cpu/mcheck/mce_64.c b/arch/x86/kernel/cpu/mcheck/mce_64.c index e07e8c0..4ef1516 100644 --- a/arch/x86/kernel/cpu/mcheck/mce_64.c +++ b/arch/x86/kernel/cpu/mcheck/mce_64.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include @@ -527,10 +528,12 @@ static int open_exclu; /* already open exclusive? */ static int mce_open(struct inode *inode, struct file *file) { + lock_kernel(); spin_lock(&mce_state_lock); if (open_exclu || (open_count && (file->f_flags & O_EXCL))) { spin_unlock(&mce_state_lock); + unlock_kernel(); return -EBUSY; } @@ -539,6 +542,7 @@ static int mce_open(struct inode *inode, struct file *file) open_count++; spin_unlock(&mce_state_lock); + unlock_kernel(); return nonseekable_open(inode, file); }