mtd: autoconvert trivial BKL users to private mutex

All these files use the big kernel lock in a trivial
way to serialize their private file operations,
typically resulting from an earlier semi-automatic
pushdown from VFS.

None of these drivers appears to want to lock against
other code, and they all use the BKL as the top-level
lock in their file operations, meaning that there
is no lock-order inversion problem.

Consequently, we can remove the BKL completely,
replacing it with a per-file mutex in every case.
Using a scripted approach means we can avoid
typos.

file=$1
name=$2
if grep -q lock_kernel ${file} ; then
if grep -q 'include.*linux.mutex.h' ${file} ; then
sed -i '/include.*<linux\/smp_lock.h>/d' ${file}
else
sed -i 's/include.*<linux\/smp_lock.h>.*$/include <linux\/mutex.h>/g' ${file}
fi
sed -i ${file} \
-e "/^#include.*linux.mutex.h/,$ {
1,/^\(static\|int\|long\)/ {
/^\(static\|int\|long\)/istatic DEFINE_MUTEX(${name}_mutex);

} }" \
-e "s/\(un\)*lock_kernel\>[ ]*()/mutex_\1lock(\&${name}_mutex)/g" \
-e '/[ ]*cycle_kernel_lock();/d'
else
sed -i -e '/include.*\<smp_lock.h\>/d' ${file} \
-e '/cycle_kernel_lock()/d'
fi

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: David Woodhouse <David.Woodhouse@intel.com>
Cc: linux-mtd@lists.infradead.org

+8 -7
+8 -7
drivers/mtd/mtdchar.c
··· 26 #include <linux/module.h> 27 #include <linux/slab.h> 28 #include <linux/sched.h> 29 - #include <linux/smp_lock.h> 30 #include <linux/backing-dev.h> 31 #include <linux/compat.h> 32 #include <linux/mount.h> ··· 37 #include <asm/uaccess.h> 38 39 #define MTD_INODE_FS_MAGIC 0x11307854 40 static struct vfsmount *mtd_inode_mnt __read_mostly; 41 42 /* ··· 91 if ((file->f_mode & FMODE_WRITE) && (minor & 1)) 92 return -EACCES; 93 94 - lock_kernel(); 95 mtd = get_mtd_device(NULL, devnum); 96 97 if (IS_ERR(mtd)) { ··· 139 file->private_data = mfi; 140 141 out: 142 - unlock_kernel(); 143 return ret; 144 } /* mtd_open */ 145 ··· 867 { 868 int ret; 869 870 - lock_kernel(); 871 ret = mtd_ioctl(file, cmd, arg); 872 - unlock_kernel(); 873 874 return ret; 875 } ··· 893 void __user *argp = compat_ptr(arg); 894 int ret = 0; 895 896 - lock_kernel(); 897 898 switch (cmd) { 899 case MEMWRITEOOB32: ··· 928 ret = mtd_ioctl(file, cmd, (unsigned long)argp); 929 } 930 931 - unlock_kernel(); 932 933 return ret; 934 }
··· 26 #include <linux/module.h> 27 #include <linux/slab.h> 28 #include <linux/sched.h> 29 + #include <linux/mutex.h> 30 #include <linux/backing-dev.h> 31 #include <linux/compat.h> 32 #include <linux/mount.h> ··· 37 #include <asm/uaccess.h> 38 39 #define MTD_INODE_FS_MAGIC 0x11307854 40 + static DEFINE_MUTEX(mtd_mutex); 41 static struct vfsmount *mtd_inode_mnt __read_mostly; 42 43 /* ··· 90 if ((file->f_mode & FMODE_WRITE) && (minor & 1)) 91 return -EACCES; 92 93 + mutex_lock(&mtd_mutex); 94 mtd = get_mtd_device(NULL, devnum); 95 96 if (IS_ERR(mtd)) { ··· 138 file->private_data = mfi; 139 140 out: 141 + mutex_unlock(&mtd_mutex); 142 return ret; 143 } /* mtd_open */ 144 ··· 866 { 867 int ret; 868 869 + mutex_lock(&mtd_mutex); 870 ret = mtd_ioctl(file, cmd, arg); 871 + mutex_unlock(&mtd_mutex); 872 873 return ret; 874 } ··· 892 void __user *argp = compat_ptr(arg); 893 int ret = 0; 894 895 + mutex_lock(&mtd_mutex); 896 897 switch (cmd) { 898 case MEMWRITEOOB32: ··· 927 ret = mtd_ioctl(file, cmd, (unsigned long)argp); 928 } 929 930 + mutex_unlock(&mtd_mutex); 931 932 return ret; 933 }