Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 100394
b: refs/heads/master
c: 38c4c97
h: refs/heads/master
v: v3
  • Loading branch information
Arnd Bergmann authored and Jonathan Corbet committed Jul 2, 2008
1 parent a74b79a commit d4edff2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3e0420f066c632e135939ccf218ae793e02dccd7
refs/heads/master: 38c4c97c62a30aef276663c1128a2051a25ead7d
4 changes: 4 additions & 0 deletions trunk/arch/x86/kernel/cpu/mcheck/mce_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/smp_lock.h>
#include <linux/string.h>
#include <linux/rcupdate.h>
#include <linux/kallsyms.h>
Expand Down Expand Up @@ -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;
}

Expand All @@ -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);
}
Expand Down

0 comments on commit d4edff2

Please sign in to comment.