bf561-coreb: BKL unneeded for open()
authorJonathan Corbet <corbet@lwn.net>
Mon, 30 Jun 2008 22:45:15 +0000 (16:45 -0600)
committerJonathan Corbet <corbet@lwn.net>
Wed, 2 Jul 2008 21:06:28 +0000 (15:06 -0600)
According to Mike Frysinger:

http://permalink.gmane.org/gmane.linux.kernel/699279

open() does not need the BKL, so take it back out.

arch/blackfin/mach-bf561/coreb.c

index 852647801a012e40fa2186e6dfc7958e841b143f..8598098c08408e85382bb21960f219a130a71ec5 100644 (file)
@@ -32,7 +32,6 @@
 #include <linux/device.h>
 #include <linux/ioport.h>
 #include <linux/module.h>
-#include <linux/smp_lock.h>
 #include <linux/uaccess.h>
 #include <linux/fs.h>
 #include <asm/dma.h>
@@ -195,9 +194,9 @@ static loff_t coreb_lseek(struct file *file, loff_t offset, int origin)
        return ret;
 }
 
+/* No BKL needed here */
 static int coreb_open(struct inode *inode, struct file *file)
 {
-       lock_kernel();
        spin_lock_irq(&coreb_lock);
 
        if (coreb_status & COREB_IS_OPEN)
@@ -206,12 +205,10 @@ static int coreb_open(struct inode *inode, struct file *file)
        coreb_status |= COREB_IS_OPEN;
 
        spin_unlock_irq(&coreb_lock);
-       unlock_kernel();
        return 0;
 
  out_busy:
        spin_unlock_irq(&coreb_lock);
-       unlock_kernel();
        return -EBUSY;
 }