The BKL is only used in put_super and fill_super, which are both protected
by the superblocks s_umount rw_semaphore. Therefore it is safe to remove
the BKL entirely.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: linux-afs@lists.infradead.org
Cc: David Howells <dhowells@redhat.com>
 #include <linux/mount.h>
 #include <linux/init.h>
 #include <linux/slab.h>
-#include <linux/smp_lock.h>
 #include <linux/fs.h>
 #include <linux/pagemap.h>
 #include <linux/parser.h>
        struct inode *inode = NULL;
        int ret;
 
-       lock_kernel();
-
        _enter("");
 
        /* allocate a superblock info record */
        as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
        if (!as) {
                _leave(" = -ENOMEM");
-               unlock_kernel();
                return -ENOMEM;
        }
 
        sb->s_root = root;
 
        _leave(" = 0");
-       unlock_kernel();
        return 0;
 
 error_inode:
        sb->s_fs_info = NULL;
 
        _leave(" = %d", ret);
-       unlock_kernel();
        return ret;
 }
 
 
        _enter("");
 
-       lock_kernel();
-
        afs_put_volume(as->volume);
 
-       unlock_kernel();
-
        _leave("");
 }