Browse Source

flash: BKL pushdown

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Arnd Bergmann 17 years ago
parent
commit
78abb6ac91
1 changed files with 5 additions and 1 deletions
  1. 5 1
      drivers/sbus/char/flash.c

+ 5 - 1
drivers/sbus/char/flash.c

@@ -127,9 +127,13 @@ flash_read(struct file * file, char __user * buf,
 static int
 static int
 flash_open(struct inode *inode, struct file *file)
 flash_open(struct inode *inode, struct file *file)
 {
 {
-	if (test_and_set_bit(0, (void *)&flash.busy) != 0)
+	lock_kernel();
+	if (test_and_set_bit(0, (void *)&flash.busy) != 0) {
+		unlock_kernel();
 		return -EBUSY;
 		return -EBUSY;
+	}
 
 
+	unlock_kernel();
 	return 0;
 	return 0;
 }
 }