Commit 78abb6ac authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Jonathan Corbet

flash: BKL pushdown

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parent 1d17bf0c
......@@ -127,9 +127,13 @@ flash_read(struct file * file, char __user * buf,
static int
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;
}
unlock_kernel();
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment