Merge branch 'trivial' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/bkl

* 'trivial' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/bkl:
block: autoconvert trivial BKL users to private mutex
drivers: autoconvert trivial BKL users to private mutex
ipmi: autoconvert trivial BKL users to private mutex
mac: autoconvert trivial BKL users to private mutex
mtd: autoconvert trivial BKL users to private mutex
scsi: autoconvert trivial BKL users to private mutex

Fix up trivial conflicts (due to addition of private mutex right next to
deletion of a version string) in drivers/char/pcmcia/cm40[04]0_cs.c

+614 -556
-3
block/bsg.c
··· 20 20 #include <linux/uio.h> 21 21 #include <linux/idr.h> 22 22 #include <linux/bsg.h> 23 - #include <linux/smp_lock.h> 24 23 #include <linux/slab.h> 25 24 26 25 #include <scsi/scsi.h> ··· 842 843 { 843 844 struct bsg_device *bd; 844 845 845 - lock_kernel(); 846 846 bd = bsg_get_device(inode, file); 847 - unlock_kernel(); 848 847 849 848 if (IS_ERR(bd)) 850 849 return PTR_ERR(bd);
+6 -5
drivers/block/DAC960.c
··· 36 36 #include <linux/ioport.h> 37 37 #include <linux/mm.h> 38 38 #include <linux/slab.h> 39 - #include <linux/smp_lock.h> 39 + #include <linux/mutex.h> 40 40 #include <linux/proc_fs.h> 41 41 #include <linux/seq_file.h> 42 42 #include <linux/reboot.h> ··· 54 54 #define DAC960_GAM_MINOR 252 55 55 56 56 57 + static DEFINE_MUTEX(DAC960_mutex); 57 58 static DAC960_Controller_T *DAC960_Controllers[DAC960_MaxControllers]; 58 59 static int DAC960_ControllerCount; 59 60 static struct proc_dir_entry *DAC960_ProcDirectoryEntry; ··· 82 81 int drive_nr = (long)disk->private_data; 83 82 int ret = -ENXIO; 84 83 85 - lock_kernel(); 84 + mutex_lock(&DAC960_mutex); 86 85 if (p->FirmwareType == DAC960_V1_Controller) { 87 86 if (p->V1.LogicalDriveInformation[drive_nr]. 88 87 LogicalDriveState == DAC960_V1_LogicalDrive_Offline) ··· 100 99 goto out; 101 100 ret = 0; 102 101 out: 103 - unlock_kernel(); 102 + mutex_unlock(&DAC960_mutex); 104 103 return ret; 105 104 } 106 105 ··· 6626 6625 long ErrorCode = 0; 6627 6626 if (!capable(CAP_SYS_ADMIN)) return -EACCES; 6628 6627 6629 - lock_kernel(); 6628 + mutex_lock(&DAC960_mutex); 6630 6629 switch (Request) 6631 6630 { 6632 6631 case DAC960_IOCTL_GET_CONTROLLER_COUNT: ··· 7057 7056 default: 7058 7057 ErrorCode = -ENOTTY; 7059 7058 } 7060 - unlock_kernel(); 7059 + mutex_unlock(&DAC960_mutex); 7061 7060 return ErrorCode; 7062 7061 } 7063 7062
+10 -9
drivers/block/amiflop.c
··· 60 60 #include <linux/hdreg.h> 61 61 #include <linux/delay.h> 62 62 #include <linux/init.h> 63 - #include <linux/smp_lock.h> 63 + #include <linux/mutex.h> 64 64 #include <linux/amifdreg.h> 65 65 #include <linux/amifd.h> 66 66 #include <linux/buffer_head.h> ··· 109 109 #define FD_HD_3 0x55555555 /* high-density 3.5" (1760K) drive */ 110 110 #define FD_DD_5 0xaaaaaaaa /* double-density 5.25" (440K) drive */ 111 111 112 + static DEFINE_MUTEX(amiflop_mutex); 112 113 static unsigned long int fd_def_df0 = FD_DD_3; /* default for df0 if it doesn't identify */ 113 114 114 115 module_param(fd_def_df0, ulong, 0); ··· 1507 1506 { 1508 1507 int ret; 1509 1508 1510 - lock_kernel(); 1509 + mutex_lock(&amiflop_mutex); 1511 1510 ret = fd_locked_ioctl(bdev, mode, cmd, param); 1512 - unlock_kernel(); 1511 + mutex_unlock(&amiflop_mutex); 1513 1512 1514 1513 return ret; 1515 1514 } ··· 1556 1555 int old_dev; 1557 1556 unsigned long flags; 1558 1557 1559 - lock_kernel(); 1558 + mutex_lock(&amiflop_mutex); 1560 1559 old_dev = fd_device[drive]; 1561 1560 1562 1561 if (fd_ref[drive] && old_dev != system) { 1563 - unlock_kernel(); 1562 + mutex_unlock(&amiflop_mutex); 1564 1563 return -EBUSY; 1565 1564 } 1566 1565 ··· 1576 1575 rel_fdc(); 1577 1576 1578 1577 if (wrprot) { 1579 - unlock_kernel(); 1578 + mutex_unlock(&amiflop_mutex); 1580 1579 return -EROFS; 1581 1580 } 1582 1581 } ··· 1595 1594 printk(KERN_INFO "fd%d: accessing %s-disk with %s-layout\n",drive, 1596 1595 unit[drive].type->name, data_types[system].name); 1597 1596 1598 - unlock_kernel(); 1597 + mutex_unlock(&amiflop_mutex); 1599 1598 return 0; 1600 1599 } 1601 1600 ··· 1604 1603 struct amiga_floppy_struct *p = disk->private_data; 1605 1604 int drive = p - unit; 1606 1605 1607 - lock_kernel(); 1606 + mutex_lock(&amiflop_mutex); 1608 1607 if (unit[drive].dirty == 1) { 1609 1608 del_timer (flush_track_timer + drive); 1610 1609 non_int_flush_track (drive); ··· 1618 1617 /* the mod_use counter is handled this way */ 1619 1618 floppy_off (drive | 0x40000000); 1620 1619 #endif 1621 - unlock_kernel(); 1620 + mutex_unlock(&amiflop_mutex); 1622 1621 return 0; 1623 1622 } 1624 1623
+5 -4
drivers/block/aoe/aoeblk.c
··· 12 12 #include <linux/slab.h> 13 13 #include <linux/genhd.h> 14 14 #include <linux/netdevice.h> 15 - #include <linux/smp_lock.h> 15 + #include <linux/mutex.h> 16 16 #include "aoe.h" 17 17 18 + static DEFINE_MUTEX(aoeblk_mutex); 18 19 static struct kmem_cache *buf_pool_cache; 19 20 20 21 static ssize_t aoedisk_show_state(struct device *dev, ··· 126 125 struct aoedev *d = bdev->bd_disk->private_data; 127 126 ulong flags; 128 127 129 - lock_kernel(); 128 + mutex_lock(&aoeblk_mutex); 130 129 spin_lock_irqsave(&d->lock, flags); 131 130 if (d->flags & DEVFL_UP) { 132 131 d->nopen++; 133 132 spin_unlock_irqrestore(&d->lock, flags); 134 - unlock_kernel(); 133 + mutex_unlock(&aoeblk_mutex); 135 134 return 0; 136 135 } 137 136 spin_unlock_irqrestore(&d->lock, flags); 138 - unlock_kernel(); 137 + mutex_unlock(&aoeblk_mutex); 139 138 return -ENODEV; 140 139 } 141 140
+5 -4
drivers/block/aoe/aoechr.c
··· 9 9 #include <linux/completion.h> 10 10 #include <linux/delay.h> 11 11 #include <linux/slab.h> 12 - #include <linux/smp_lock.h> 12 + #include <linux/mutex.h> 13 13 #include <linux/skbuff.h> 14 14 #include "aoe.h" 15 15 ··· 37 37 char *msg; 38 38 }; 39 39 40 + static DEFINE_MUTEX(aoechr_mutex); 40 41 static struct ErrMsg emsgs[NMSG]; 41 42 static int emsgs_head_idx, emsgs_tail_idx; 42 43 static struct completion emsgs_comp; ··· 184 183 { 185 184 int n, i; 186 185 187 - lock_kernel(); 186 + mutex_lock(&aoechr_mutex); 188 187 n = iminor(inode); 189 188 filp->private_data = (void *) (unsigned long) n; 190 189 191 190 for (i = 0; i < ARRAY_SIZE(chardevs); ++i) 192 191 if (chardevs[i].minor == n) { 193 - unlock_kernel(); 192 + mutex_unlock(&aoechr_mutex); 194 193 return 0; 195 194 } 196 - unlock_kernel(); 195 + mutex_unlock(&aoechr_mutex); 197 196 return -EINVAL; 198 197 } 199 198
+8 -7
drivers/block/ataflop.c
··· 67 67 #include <linux/delay.h> 68 68 #include <linux/init.h> 69 69 #include <linux/blkdev.h> 70 - #include <linux/smp_lock.h> 70 + #include <linux/mutex.h> 71 71 72 72 #include <asm/atafd.h> 73 73 #include <asm/atafdreg.h> ··· 79 79 80 80 #undef DEBUG 81 81 82 + static DEFINE_MUTEX(ataflop_mutex); 82 83 static struct request_queue *floppy_queue; 83 84 static struct request *fd_request; 84 85 ··· 1672 1671 { 1673 1672 int ret; 1674 1673 1675 - lock_kernel(); 1674 + mutex_lock(&ataflop_mutex); 1676 1675 ret = fd_locked_ioctl(bdev, mode, cmd, arg); 1677 - unlock_kernel(); 1676 + mutex_unlock(&ataflop_mutex); 1678 1677 1679 1678 return ret; 1680 1679 } ··· 1855 1854 { 1856 1855 int ret; 1857 1856 1858 - lock_kernel(); 1857 + mutex_lock(&ataflop_mutex); 1859 1858 ret = floppy_open(bdev, mode); 1860 - unlock_kernel(); 1859 + mutex_unlock(&ataflop_mutex); 1861 1860 1862 1861 return ret; 1863 1862 } ··· 1865 1864 static int floppy_release(struct gendisk *disk, fmode_t mode) 1866 1865 { 1867 1866 struct atari_floppy_struct *p = disk->private_data; 1868 - lock_kernel(); 1867 + mutex_lock(&ataflop_mutex); 1869 1868 if (p->ref < 0) 1870 1869 p->ref = 0; 1871 1870 else if (!p->ref--) { 1872 1871 printk(KERN_ERR "floppy_release with fd_ref == 0"); 1873 1872 p->ref = 0; 1874 1873 } 1875 - unlock_kernel(); 1874 + mutex_unlock(&ataflop_mutex); 1876 1875 return 0; 1877 1876 } 1878 1877
+4 -3
drivers/block/brd.c
··· 15 15 #include <linux/blkdev.h> 16 16 #include <linux/bio.h> 17 17 #include <linux/highmem.h> 18 - #include <linux/smp_lock.h> 18 + #include <linux/mutex.h> 19 19 #include <linux/radix-tree.h> 20 20 #include <linux/buffer_head.h> /* invalidate_bh_lrus() */ 21 21 #include <linux/slab.h> ··· 55 55 /* 56 56 * Look up and return a brd's page for a given sector. 57 57 */ 58 + static DEFINE_MUTEX(brd_mutex); 58 59 static struct page *brd_lookup_page(struct brd_device *brd, sector_t sector) 59 60 { 60 61 pgoff_t idx; ··· 403 402 * ram device BLKFLSBUF has special semantics, we want to actually 404 403 * release and destroy the ramdisk data. 405 404 */ 406 - lock_kernel(); 405 + mutex_lock(&brd_mutex); 407 406 mutex_lock(&bdev->bd_mutex); 408 407 error = -EBUSY; 409 408 if (bdev->bd_openers <= 1) { ··· 420 419 error = 0; 421 420 } 422 421 mutex_unlock(&bdev->bd_mutex); 423 - unlock_kernel(); 422 + mutex_unlock(&brd_mutex); 424 423 425 424 return error; 426 425 }
+7 -7
drivers/block/cciss.c
··· 26 26 #include <linux/pci.h> 27 27 #include <linux/kernel.h> 28 28 #include <linux/slab.h> 29 - #include <linux/smp_lock.h> 30 29 #include <linux/delay.h> 31 30 #include <linux/major.h> 32 31 #include <linux/fs.h> ··· 65 66 MODULE_VERSION("3.6.26"); 66 67 MODULE_LICENSE("GPL"); 67 68 69 + static DEFINE_MUTEX(cciss_mutex); 68 70 static int cciss_allow_hpsa; 69 71 module_param(cciss_allow_hpsa, int, S_IRUGO|S_IWUSR); 70 72 MODULE_PARM_DESC(cciss_allow_hpsa, ··· 1059 1059 { 1060 1060 int ret; 1061 1061 1062 - lock_kernel(); 1062 + mutex_lock(&cciss_mutex); 1063 1063 ret = cciss_open(bdev, mode); 1064 - unlock_kernel(); 1064 + mutex_unlock(&cciss_mutex); 1065 1065 1066 1066 return ret; 1067 1067 } ··· 1074 1074 ctlr_info_t *h; 1075 1075 drive_info_struct *drv; 1076 1076 1077 - lock_kernel(); 1077 + mutex_lock(&cciss_mutex); 1078 1078 h = get_host(disk); 1079 1079 drv = get_drv(disk); 1080 1080 dev_dbg(&h->pdev->dev, "cciss_release %s\n", disk->disk_name); 1081 1081 drv->usage_count--; 1082 1082 h->usage_count--; 1083 - unlock_kernel(); 1083 + mutex_unlock(&cciss_mutex); 1084 1084 return 0; 1085 1085 } 1086 1086 ··· 1088 1088 unsigned cmd, unsigned long arg) 1089 1089 { 1090 1090 int ret; 1091 - lock_kernel(); 1091 + mutex_lock(&cciss_mutex); 1092 1092 ret = cciss_ioctl(bdev, mode, cmd, arg); 1093 - unlock_kernel(); 1093 + mutex_unlock(&cciss_mutex); 1094 1094 return ret; 1095 1095 } 1096 1096
+8 -7
drivers/block/cpqarray.c
··· 35 35 #include <linux/seq_file.h> 36 36 #include <linux/init.h> 37 37 #include <linux/hdreg.h> 38 - #include <linux/smp_lock.h> 38 + #include <linux/mutex.h> 39 39 #include <linux/spinlock.h> 40 40 #include <linux/blkdev.h> 41 41 #include <linux/genhd.h> ··· 68 68 69 69 #define CPQARRAY_DMA_MASK 0xFFFFFFFF /* 32 bit DMA */ 70 70 71 + static DEFINE_MUTEX(cpqarray_mutex); 71 72 static int nr_ctlr; 72 73 static ctlr_info_t *hba[MAX_CTLR]; 73 74 ··· 846 845 { 847 846 int ret; 848 847 849 - lock_kernel(); 848 + mutex_lock(&cpqarray_mutex); 850 849 ret = ida_open(bdev, mode); 851 - unlock_kernel(); 850 + mutex_unlock(&cpqarray_mutex); 852 851 853 852 return ret; 854 853 } ··· 860 859 { 861 860 ctlr_info_t *host; 862 861 863 - lock_kernel(); 862 + mutex_lock(&cpqarray_mutex); 864 863 host = get_host(disk); 865 864 host->usage_count--; 866 - unlock_kernel(); 865 + mutex_unlock(&cpqarray_mutex); 867 866 868 867 return 0; 869 868 } ··· 1218 1217 { 1219 1218 int ret; 1220 1219 1221 - lock_kernel(); 1220 + mutex_lock(&cpqarray_mutex); 1222 1221 ret = ida_locked_ioctl(bdev, mode, cmd, param); 1223 - unlock_kernel(); 1222 + mutex_unlock(&cpqarray_mutex); 1224 1223 1225 1224 return ret; 1226 1225 }
+6 -5
drivers/block/drbd/drbd_main.c
··· 32 32 #include <asm/types.h> 33 33 #include <net/sock.h> 34 34 #include <linux/ctype.h> 35 - #include <linux/smp_lock.h> 35 + #include <linux/mutex.h> 36 36 #include <linux/fs.h> 37 37 #include <linux/file.h> 38 38 #include <linux/proc_fs.h> ··· 64 64 struct completion *done; 65 65 }; 66 66 67 + static DEFINE_MUTEX(drbd_main_mutex); 67 68 int drbdd_init(struct drbd_thread *); 68 69 int drbd_worker(struct drbd_thread *); 69 70 int drbd_asender(struct drbd_thread *); ··· 2537 2536 unsigned long flags; 2538 2537 int rv = 0; 2539 2538 2540 - lock_kernel(); 2539 + mutex_lock(&drbd_main_mutex); 2541 2540 spin_lock_irqsave(&mdev->req_lock, flags); 2542 2541 /* to have a stable mdev->state.role 2543 2542 * and no race with updating open_cnt */ ··· 2552 2551 if (!rv) 2553 2552 mdev->open_cnt++; 2554 2553 spin_unlock_irqrestore(&mdev->req_lock, flags); 2555 - unlock_kernel(); 2554 + mutex_unlock(&drbd_main_mutex); 2556 2555 2557 2556 return rv; 2558 2557 } ··· 2560 2559 static int drbd_release(struct gendisk *gd, fmode_t mode) 2561 2560 { 2562 2561 struct drbd_conf *mdev = gd->private_data; 2563 - lock_kernel(); 2562 + mutex_lock(&drbd_main_mutex); 2564 2563 mdev->open_cnt--; 2565 - unlock_kernel(); 2564 + mutex_unlock(&drbd_main_mutex); 2566 2565 return 0; 2567 2566 } 2568 2567
+8 -8
drivers/block/floppy.c
··· 178 178 #include <linux/slab.h> 179 179 #include <linux/mm.h> 180 180 #include <linux/bio.h> 181 - #include <linux/smp_lock.h> 182 181 #include <linux/string.h> 183 182 #include <linux/jiffies.h> 184 183 #include <linux/fcntl.h> ··· 198 199 * It's been recommended that take about 1/4 of the default speed 199 200 * in some more extreme cases. 200 201 */ 202 + static DEFINE_MUTEX(floppy_mutex); 201 203 static int slow_floppy; 202 204 203 205 #include <asm/dma.h> ··· 3553 3553 { 3554 3554 int ret; 3555 3555 3556 - lock_kernel(); 3556 + mutex_lock(&floppy_mutex); 3557 3557 ret = fd_locked_ioctl(bdev, mode, cmd, param); 3558 - unlock_kernel(); 3558 + mutex_unlock(&floppy_mutex); 3559 3559 3560 3560 return ret; 3561 3561 } ··· 3616 3616 { 3617 3617 int drive = (long)disk->private_data; 3618 3618 3619 - lock_kernel(); 3619 + mutex_lock(&floppy_mutex); 3620 3620 mutex_lock(&open_lock); 3621 3621 if (UDRS->fd_ref < 0) 3622 3622 UDRS->fd_ref = 0; ··· 3627 3627 if (!UDRS->fd_ref) 3628 3628 opened_bdev[drive] = NULL; 3629 3629 mutex_unlock(&open_lock); 3630 - unlock_kernel(); 3630 + mutex_unlock(&floppy_mutex); 3631 3631 3632 3632 return 0; 3633 3633 } ··· 3645 3645 int res = -EBUSY; 3646 3646 char *tmp; 3647 3647 3648 - lock_kernel(); 3648 + mutex_lock(&floppy_mutex); 3649 3649 mutex_lock(&open_lock); 3650 3650 old_dev = UDRS->fd_device; 3651 3651 if (opened_bdev[drive] && opened_bdev[drive] != bdev) ··· 3722 3722 goto out; 3723 3723 } 3724 3724 mutex_unlock(&open_lock); 3725 - unlock_kernel(); 3725 + mutex_unlock(&floppy_mutex); 3726 3726 return 0; 3727 3727 out: 3728 3728 if (UDRS->fd_ref < 0) ··· 3733 3733 opened_bdev[drive] = NULL; 3734 3734 out2: 3735 3735 mutex_unlock(&open_lock); 3736 - unlock_kernel(); 3736 + mutex_unlock(&floppy_mutex); 3737 3737 return res; 3738 3738 } 3739 3739
+6 -5
drivers/block/loop.c
··· 67 67 #include <linux/compat.h> 68 68 #include <linux/suspend.h> 69 69 #include <linux/freezer.h> 70 - #include <linux/smp_lock.h> 70 + #include <linux/mutex.h> 71 71 #include <linux/writeback.h> 72 72 #include <linux/buffer_head.h> /* for invalidate_bdev() */ 73 73 #include <linux/completion.h> ··· 77 77 78 78 #include <asm/uaccess.h> 79 79 80 + static DEFINE_MUTEX(loop_mutex); 80 81 static LIST_HEAD(loop_devices); 81 82 static DEFINE_MUTEX(loop_devices_mutex); 82 83 ··· 1410 1409 { 1411 1410 struct loop_device *lo = bdev->bd_disk->private_data; 1412 1411 1413 - lock_kernel(); 1412 + mutex_lock(&loop_mutex); 1414 1413 mutex_lock(&lo->lo_ctl_mutex); 1415 1414 lo->lo_refcnt++; 1416 1415 mutex_unlock(&lo->lo_ctl_mutex); 1417 - unlock_kernel(); 1416 + mutex_unlock(&loop_mutex); 1418 1417 1419 1418 return 0; 1420 1419 } ··· 1424 1423 struct loop_device *lo = disk->private_data; 1425 1424 int err; 1426 1425 1427 - lock_kernel(); 1426 + mutex_lock(&loop_mutex); 1428 1427 mutex_lock(&lo->lo_ctl_mutex); 1429 1428 1430 1429 if (--lo->lo_refcnt) ··· 1449 1448 out: 1450 1449 mutex_unlock(&lo->lo_ctl_mutex); 1451 1450 out_unlocked: 1452 - lock_kernel(); 1451 + mutex_unlock(&loop_mutex); 1453 1452 return 0; 1454 1453 } 1455 1454
+4 -3
drivers/block/nbd.c
··· 24 24 #include <linux/errno.h> 25 25 #include <linux/file.h> 26 26 #include <linux/ioctl.h> 27 - #include <linux/smp_lock.h> 27 + #include <linux/mutex.h> 28 28 #include <linux/compiler.h> 29 29 #include <linux/err.h> 30 30 #include <linux/kernel.h> ··· 53 53 #define DBG_BLKDEV 0x0100 54 54 #define DBG_RX 0x0200 55 55 #define DBG_TX 0x0400 56 + static DEFINE_MUTEX(nbd_mutex); 56 57 static unsigned int debugflags; 57 58 #endif /* NDEBUG */ 58 59 ··· 718 717 dprintk(DBG_IOCTL, "%s: nbd_ioctl cmd=%s(0x%x) arg=%lu\n", 719 718 lo->disk->disk_name, ioctl_cmd_to_ascii(cmd), cmd, arg); 720 719 721 - lock_kernel(); 720 + mutex_lock(&nbd_mutex); 722 721 mutex_lock(&lo->tx_lock); 723 722 error = __nbd_ioctl(bdev, lo, cmd, arg); 724 723 mutex_unlock(&lo->tx_lock); 725 - unlock_kernel(); 724 + mutex_unlock(&nbd_mutex); 726 725 727 726 return error; 728 727 }
+8 -7
drivers/block/paride/pcd.c
··· 138 138 #include <linux/cdrom.h> 139 139 #include <linux/spinlock.h> 140 140 #include <linux/blkdev.h> 141 - #include <linux/smp_lock.h> 141 + #include <linux/mutex.h> 142 142 #include <asm/uaccess.h> 143 143 144 + static DEFINE_MUTEX(pcd_mutex); 144 145 static DEFINE_SPINLOCK(pcd_lock); 145 146 146 147 module_param(verbose, bool, 0644); ··· 228 227 struct pcd_unit *cd = bdev->bd_disk->private_data; 229 228 int ret; 230 229 231 - lock_kernel(); 230 + mutex_lock(&pcd_mutex); 232 231 ret = cdrom_open(&cd->info, bdev, mode); 233 - unlock_kernel(); 232 + mutex_unlock(&pcd_mutex); 234 233 235 234 return ret; 236 235 } ··· 238 237 static int pcd_block_release(struct gendisk *disk, fmode_t mode) 239 238 { 240 239 struct pcd_unit *cd = disk->private_data; 241 - lock_kernel(); 240 + mutex_lock(&pcd_mutex); 242 241 cdrom_release(&cd->info, mode); 243 - unlock_kernel(); 242 + mutex_unlock(&pcd_mutex); 244 243 return 0; 245 244 } 246 245 ··· 250 249 struct pcd_unit *cd = bdev->bd_disk->private_data; 251 250 int ret; 252 251 253 - lock_kernel(); 252 + mutex_lock(&pcd_mutex); 254 253 ret = cdrom_ioctl(&cd->info, bdev, mode, cmd, arg); 255 - unlock_kernel(); 254 + mutex_unlock(&pcd_mutex); 256 255 257 256 return ret; 258 257 }
+8 -7
drivers/block/paride/pd.c
··· 153 153 #include <linux/blkdev.h> 154 154 #include <linux/blkpg.h> 155 155 #include <linux/kernel.h> 156 - #include <linux/smp_lock.h> 156 + #include <linux/mutex.h> 157 157 #include <asm/uaccess.h> 158 158 #include <linux/workqueue.h> 159 159 160 + static DEFINE_MUTEX(pd_mutex); 160 161 static DEFINE_SPINLOCK(pd_lock); 161 162 162 163 module_param(verbose, bool, 0); ··· 737 736 { 738 737 struct pd_unit *disk = bdev->bd_disk->private_data; 739 738 740 - lock_kernel(); 739 + mutex_lock(&pd_mutex); 741 740 disk->access++; 742 741 743 742 if (disk->removable) { 744 743 pd_special_command(disk, pd_media_check); 745 744 pd_special_command(disk, pd_door_lock); 746 745 } 747 - unlock_kernel(); 746 + mutex_unlock(&pd_mutex); 748 747 return 0; 749 748 } 750 749 ··· 772 771 773 772 switch (cmd) { 774 773 case CDROMEJECT: 775 - lock_kernel(); 774 + mutex_lock(&pd_mutex); 776 775 if (disk->access == 1) 777 776 pd_special_command(disk, pd_eject); 778 - unlock_kernel(); 777 + mutex_unlock(&pd_mutex); 779 778 return 0; 780 779 default: 781 780 return -EINVAL; ··· 786 785 { 787 786 struct pd_unit *disk = p->private_data; 788 787 789 - lock_kernel(); 788 + mutex_lock(&pd_mutex); 790 789 if (!--disk->access && disk->removable) 791 790 pd_special_command(disk, pd_door_unlock); 792 - unlock_kernel(); 791 + mutex_unlock(&pd_mutex); 793 792 794 793 return 0; 795 794 }
+9 -8
drivers/block/paride/pf.c
··· 152 152 #include <linux/spinlock.h> 153 153 #include <linux/blkdev.h> 154 154 #include <linux/blkpg.h> 155 - #include <linux/smp_lock.h> 155 + #include <linux/mutex.h> 156 156 #include <asm/uaccess.h> 157 157 158 + static DEFINE_MUTEX(pf_mutex); 158 159 static DEFINE_SPINLOCK(pf_spin_lock); 159 160 160 161 module_param(verbose, bool, 0644); ··· 303 302 struct pf_unit *pf = bdev->bd_disk->private_data; 304 303 int ret; 305 304 306 - lock_kernel(); 305 + mutex_lock(&pf_mutex); 307 306 pf_identify(pf); 308 307 309 308 ret = -ENODEV; ··· 319 318 if (pf->removable) 320 319 pf_lock(pf, 1); 321 320 out: 322 - unlock_kernel(); 321 + mutex_unlock(&pf_mutex); 323 322 return ret; 324 323 } 325 324 ··· 350 349 351 350 if (pf->access != 1) 352 351 return -EBUSY; 353 - lock_kernel(); 352 + mutex_lock(&pf_mutex); 354 353 pf_eject(pf); 355 - unlock_kernel(); 354 + mutex_unlock(&pf_mutex); 356 355 357 356 return 0; 358 357 } ··· 361 360 { 362 361 struct pf_unit *pf = disk->private_data; 363 362 364 - lock_kernel(); 363 + mutex_lock(&pf_mutex); 365 364 if (pf->access <= 0) { 366 - unlock_kernel(); 365 + mutex_unlock(&pf_mutex); 367 366 return -EINVAL; 368 367 } 369 368 ··· 372 371 if (!pf->access && pf->removable) 373 372 pf_lock(pf, 0); 374 373 375 - unlock_kernel(); 374 + mutex_unlock(&pf_mutex); 376 375 return 0; 377 376 378 377 }
+4 -3
drivers/block/paride/pg.c
··· 162 162 #include <linux/pg.h> 163 163 #include <linux/device.h> 164 164 #include <linux/sched.h> /* current, TASK_* */ 165 - #include <linux/smp_lock.h> 165 + #include <linux/mutex.h> 166 166 #include <linux/jiffies.h> 167 167 168 168 #include <asm/uaccess.h> ··· 193 193 194 194 #define ATAPI_IDENTIFY 0x12 195 195 196 + static DEFINE_MUTEX(pg_mutex); 196 197 static int pg_open(struct inode *inode, struct file *file); 197 198 static int pg_release(struct inode *inode, struct file *file); 198 199 static ssize_t pg_read(struct file *filp, char __user *buf, ··· 519 518 struct pg *dev = &devices[unit]; 520 519 int ret = 0; 521 520 522 - lock_kernel(); 521 + mutex_lock(&pg_mutex); 523 522 if ((unit >= PG_UNITS) || (!dev->present)) { 524 523 ret = -ENODEV; 525 524 goto out; ··· 548 547 file->private_data = dev; 549 548 550 549 out: 551 - unlock_kernel(); 550 + mutex_unlock(&pg_mutex); 552 551 return ret; 553 552 } 554 553
+10 -9
drivers/block/paride/pt.c
··· 146 146 #include <linux/mtio.h> 147 147 #include <linux/device.h> 148 148 #include <linux/sched.h> /* current, TASK_*, schedule_timeout() */ 149 - #include <linux/smp_lock.h> 149 + #include <linux/mutex.h> 150 150 151 151 #include <asm/uaccess.h> 152 152 ··· 189 189 #define ATAPI_MODE_SENSE 0x1a 190 190 #define ATAPI_LOG_SENSE 0x4d 191 191 192 + static DEFINE_MUTEX(pt_mutex); 192 193 static int pt_open(struct inode *inode, struct file *file); 193 194 static long pt_ioctl(struct file *file, unsigned int cmd, unsigned long arg); 194 195 static int pt_release(struct inode *inode, struct file *file); ··· 651 650 struct pt_unit *tape = pt + unit; 652 651 int err; 653 652 654 - lock_kernel(); 653 + mutex_lock(&pt_mutex); 655 654 if (unit >= PT_UNITS || (!tape->present)) { 656 - unlock_kernel(); 655 + mutex_unlock(&pt_mutex); 657 656 return -ENODEV; 658 657 } 659 658 ··· 682 681 } 683 682 684 683 file->private_data = tape; 685 - unlock_kernel(); 684 + mutex_unlock(&pt_mutex); 686 685 return 0; 687 686 688 687 out: 689 688 atomic_inc(&tape->available); 690 - unlock_kernel(); 689 + mutex_unlock(&pt_mutex); 691 690 return err; 692 691 } 693 692 ··· 705 704 switch (mtop.mt_op) { 706 705 707 706 case MTREW: 708 - lock_kernel(); 707 + mutex_lock(&pt_mutex); 709 708 pt_rewind(tape); 710 - unlock_kernel(); 709 + mutex_unlock(&pt_mutex); 711 710 return 0; 712 711 713 712 case MTWEOF: 714 - lock_kernel(); 713 + mutex_lock(&pt_mutex); 715 714 pt_write_fm(tape); 716 - unlock_kernel(); 715 + mutex_unlock(&pt_mutex); 717 716 return 0; 718 717 719 718 default:
+8 -8
drivers/block/pktcdvd.c
··· 57 57 #include <linux/seq_file.h> 58 58 #include <linux/miscdevice.h> 59 59 #include <linux/freezer.h> 60 - #include <linux/smp_lock.h> 61 60 #include <linux/mutex.h> 62 61 #include <linux/slab.h> 63 62 #include <scsi/scsi_cmnd.h> ··· 85 86 86 87 #define ZONE(sector, pd) (((sector) + (pd)->offset) & ~((pd)->settings.size - 1)) 87 88 89 + static DEFINE_MUTEX(pktcdvd_mutex); 88 90 static struct pktcdvd_device *pkt_devs[MAX_WRITERS]; 89 91 static struct proc_dir_entry *pkt_proc; 90 92 static int pktdev_major; ··· 2383 2383 2384 2384 VPRINTK(DRIVER_NAME": entering open\n"); 2385 2385 2386 - lock_kernel(); 2386 + mutex_lock(&pktcdvd_mutex); 2387 2387 mutex_lock(&ctl_mutex); 2388 2388 pd = pkt_find_dev_from_minor(MINOR(bdev->bd_dev)); 2389 2389 if (!pd) { ··· 2411 2411 } 2412 2412 2413 2413 mutex_unlock(&ctl_mutex); 2414 - unlock_kernel(); 2414 + mutex_unlock(&pktcdvd_mutex); 2415 2415 return 0; 2416 2416 2417 2417 out_dec: ··· 2419 2419 out: 2420 2420 VPRINTK(DRIVER_NAME": failed open (%d)\n", ret); 2421 2421 mutex_unlock(&ctl_mutex); 2422 - unlock_kernel(); 2422 + mutex_unlock(&pktcdvd_mutex); 2423 2423 return ret; 2424 2424 } 2425 2425 ··· 2428 2428 struct pktcdvd_device *pd = disk->private_data; 2429 2429 int ret = 0; 2430 2430 2431 - lock_kernel(); 2431 + mutex_lock(&pktcdvd_mutex); 2432 2432 mutex_lock(&ctl_mutex); 2433 2433 pd->refcnt--; 2434 2434 BUG_ON(pd->refcnt < 0); ··· 2437 2437 pkt_release_dev(pd, flush); 2438 2438 } 2439 2439 mutex_unlock(&ctl_mutex); 2440 - unlock_kernel(); 2440 + mutex_unlock(&pktcdvd_mutex); 2441 2441 return ret; 2442 2442 } 2443 2443 ··· 2773 2773 VPRINTK("pkt_ioctl: cmd %x, dev %d:%d\n", cmd, 2774 2774 MAJOR(bdev->bd_dev), MINOR(bdev->bd_dev)); 2775 2775 2776 - lock_kernel(); 2776 + mutex_lock(&pktcdvd_mutex); 2777 2777 switch (cmd) { 2778 2778 case CDROMEJECT: 2779 2779 /* ··· 2798 2798 VPRINTK(DRIVER_NAME": Unknown ioctl for %s (%x)\n", pd->name, cmd); 2799 2799 ret = -ENOTTY; 2800 2800 } 2801 - unlock_kernel(); 2801 + mutex_unlock(&pktcdvd_mutex); 2802 2802 2803 2803 return ret; 2804 2804 }
+8 -7
drivers/block/swim.c
··· 20 20 #include <linux/fd.h> 21 21 #include <linux/slab.h> 22 22 #include <linux/blkdev.h> 23 - #include <linux/smp_lock.h> 23 + #include <linux/mutex.h> 24 24 #include <linux/hdreg.h> 25 25 #include <linux/kernel.h> 26 26 #include <linux/delay.h> ··· 222 222 extern int swim_read_sector_data(struct swim __iomem *base, 223 223 unsigned char *data); 224 224 225 + static DEFINE_MUTEX(swim_mutex); 225 226 static inline void set_swim_mode(struct swim __iomem *base, int enable) 226 227 { 227 228 struct iwm __iomem *iwm_base; ··· 667 666 { 668 667 int ret; 669 668 670 - lock_kernel(); 669 + mutex_lock(&swim_mutex); 671 670 ret = floppy_open(bdev, mode); 672 - unlock_kernel(); 671 + mutex_unlock(&swim_mutex); 673 672 674 673 return ret; 675 674 } ··· 679 678 struct floppy_state *fs = disk->private_data; 680 679 struct swim __iomem *base = fs->swd->base; 681 680 682 - lock_kernel(); 681 + mutex_lock(&swim_mutex); 683 682 if (fs->ref_count < 0) 684 683 fs->ref_count = 0; 685 684 else if (fs->ref_count > 0) ··· 687 686 688 687 if (fs->ref_count == 0) 689 688 swim_motor(base, OFF); 690 - unlock_kernel(); 689 + mutex_unlock(&swim_mutex); 691 690 692 691 return 0; 693 692 } ··· 705 704 case FDEJECT: 706 705 if (fs->ref_count != 1) 707 706 return -EBUSY; 708 - lock_kernel(); 707 + mutex_lock(&swim_mutex); 709 708 err = floppy_eject(fs); 710 - unlock_kernel(); 709 + mutex_unlock(&swim_mutex); 711 710 return err; 712 711 713 712 case FDGETPRM:
+8 -7
drivers/block/swim3.c
··· 25 25 #include <linux/ioctl.h> 26 26 #include <linux/blkdev.h> 27 27 #include <linux/interrupt.h> 28 - #include <linux/smp_lock.h> 28 + #include <linux/mutex.h> 29 29 #include <linux/module.h> 30 30 #include <linux/spinlock.h> 31 31 #include <asm/io.h> ··· 36 36 #include <asm/machdep.h> 37 37 #include <asm/pmac_feature.h> 38 38 39 + static DEFINE_MUTEX(swim3_mutex); 39 40 static struct request_queue *swim3_queue; 40 41 static struct gendisk *disks[2]; 41 42 static struct request *fd_req; ··· 874 873 { 875 874 int ret; 876 875 877 - lock_kernel(); 876 + mutex_lock(&swim3_mutex); 878 877 ret = floppy_locked_ioctl(bdev, mode, cmd, param); 879 - unlock_kernel(); 878 + mutex_unlock(&swim3_mutex); 880 879 881 880 return ret; 882 881 } ··· 954 953 { 955 954 int ret; 956 955 957 - lock_kernel(); 956 + mutex_lock(&swim3_mutex); 958 957 ret = floppy_open(bdev, mode); 959 - unlock_kernel(); 958 + mutex_unlock(&swim3_mutex); 960 959 961 960 return ret; 962 961 } ··· 965 964 { 966 965 struct floppy_state *fs = disk->private_data; 967 966 struct swim3 __iomem *sw = fs->swim3; 968 - lock_kernel(); 967 + mutex_lock(&swim3_mutex); 969 968 if (fs->ref_count > 0 && --fs->ref_count == 0) { 970 969 swim3_action(fs, MOTOR_OFF); 971 970 out_8(&sw->control_bic, 0xff); 972 971 swim3_select(fs, RELAX); 973 972 } 974 - unlock_kernel(); 973 + mutex_unlock(&swim3_mutex); 975 974 return 0; 976 975 } 977 976
+8 -7
drivers/block/ub.c
··· 28 28 #include <linux/timer.h> 29 29 #include <linux/scatterlist.h> 30 30 #include <linux/slab.h> 31 - #include <linux/smp_lock.h> 31 + #include <linux/mutex.h> 32 32 #include <scsi/scsi.h> 33 33 34 34 #define DRV_NAME "ub" ··· 248 248 spinlock_t lock; 249 249 }; 250 250 251 + static DEFINE_MUTEX(ub_mutex); 251 252 static inline void ub_init_completion(struct ub_completion *x) 252 253 { 253 254 x->done = 0; ··· 1716 1715 { 1717 1716 int ret; 1718 1717 1719 - lock_kernel(); 1718 + mutex_lock(&ub_mutex); 1720 1719 ret = ub_bd_open(bdev, mode); 1721 - unlock_kernel(); 1720 + mutex_unlock(&ub_mutex); 1722 1721 1723 1722 return ret; 1724 1723 } ··· 1731 1730 struct ub_lun *lun = disk->private_data; 1732 1731 struct ub_dev *sc = lun->udev; 1733 1732 1734 - lock_kernel(); 1733 + mutex_lock(&ub_mutex); 1735 1734 ub_put(sc); 1736 - unlock_kernel(); 1735 + mutex_unlock(&ub_mutex); 1737 1736 1738 1737 return 0; 1739 1738 } ··· 1748 1747 void __user *usermem = (void __user *) arg; 1749 1748 int ret; 1750 1749 1751 - lock_kernel(); 1750 + mutex_lock(&ub_mutex); 1752 1751 ret = scsi_cmd_ioctl(disk->queue, disk, mode, cmd, usermem); 1753 - unlock_kernel(); 1752 + mutex_unlock(&ub_mutex); 1754 1753 1755 1754 return ret; 1756 1755 }
+6 -5
drivers/block/viodasd.c
··· 41 41 #include <linux/errno.h> 42 42 #include <linux/init.h> 43 43 #include <linux/string.h> 44 - #include <linux/smp_lock.h> 44 + #include <linux/mutex.h> 45 45 #include <linux/dma-mapping.h> 46 46 #include <linux/completion.h> 47 47 #include <linux/device.h> ··· 73 73 MAX_DISK_NAME = FIELD_SIZEOF(struct gendisk, disk_name) 74 74 }; 75 75 76 + static DEFINE_MUTEX(viodasd_mutex); 76 77 static DEFINE_SPINLOCK(viodasd_spinlock); 77 78 78 79 #define VIOMAXREQ 16 ··· 181 180 { 182 181 int ret; 183 182 184 - lock_kernel(); 183 + mutex_lock(&viodasd_mutex); 185 184 ret = viodasd_open(bdev, mode); 186 - unlock_kernel(); 185 + mutex_unlock(&viodasd_mutex); 187 186 188 187 return ret; 189 188 } ··· 197 196 struct viodasd_device *d = disk->private_data; 198 197 HvLpEvent_Rc hvrc; 199 198 200 - lock_kernel(); 199 + mutex_lock(&viodasd_mutex); 201 200 /* Send the event to OS/400. We DON'T expect a response */ 202 201 hvrc = HvCallEvent_signalLpEventFast(viopath_hostLp, 203 202 HvLpEvent_Type_VirtualIo, ··· 211 210 if (hvrc != 0) 212 211 pr_warning("HV close call failed %d\n", (int)hvrc); 213 212 214 - unlock_kernel(); 213 + mutex_unlock(&viodasd_mutex); 215 214 216 215 return 0; 217 216 }
+4 -3
drivers/block/xd.c
··· 46 46 #include <linux/init.h> 47 47 #include <linux/wait.h> 48 48 #include <linux/blkdev.h> 49 - #include <linux/smp_lock.h> 49 + #include <linux/mutex.h> 50 50 #include <linux/blkpg.h> 51 51 #include <linux/delay.h> 52 52 #include <linux/io.h> ··· 58 58 59 59 #include "xd.h" 60 60 61 + static DEFINE_MUTEX(xd_mutex); 61 62 static void __init do_xd_setup (int *integers); 62 63 #ifdef MODULE 63 64 static int xd[5] = { -1,-1,-1,-1, }; ··· 382 381 { 383 382 int ret; 384 383 385 - lock_kernel(); 384 + mutex_lock(&xd_mutex); 386 385 ret = xd_locked_ioctl(bdev, mode, cmd, param); 387 - unlock_kernel(); 386 + mutex_unlock(&xd_mutex); 388 387 389 388 return ret; 390 389 }
+6 -5
drivers/block/xen-blkfront.c
··· 41 41 #include <linux/cdrom.h> 42 42 #include <linux/module.h> 43 43 #include <linux/slab.h> 44 - #include <linux/smp_lock.h> 44 + #include <linux/mutex.h> 45 45 #include <linux/scatterlist.h> 46 46 47 47 #include <xen/xen.h> ··· 69 69 unsigned long frame[BLKIF_MAX_SEGMENTS_PER_REQUEST]; 70 70 }; 71 71 72 + static DEFINE_MUTEX(blkfront_mutex); 72 73 static const struct block_device_operations xlvbd_block_fops; 73 74 74 75 #define BLK_RING_SIZE __RING_SIZE((struct blkif_sring *)0, PAGE_SIZE) ··· 1202 1201 struct blkfront_info *info; 1203 1202 int err = 0; 1204 1203 1205 - lock_kernel(); 1204 + mutex_lock(&blkfront_mutex); 1206 1205 1207 1206 info = disk->private_data; 1208 1207 if (!info) { ··· 1220 1219 mutex_unlock(&info->mutex); 1221 1220 1222 1221 out: 1223 - unlock_kernel(); 1222 + mutex_unlock(&blkfront_mutex); 1224 1223 return err; 1225 1224 } 1226 1225 ··· 1230 1229 struct block_device *bdev; 1231 1230 struct xenbus_device *xbdev; 1232 1231 1233 - lock_kernel(); 1232 + mutex_lock(&blkfront_mutex); 1234 1233 1235 1234 bdev = bdget_disk(disk, 0); 1236 1235 bdput(bdev); ··· 1264 1263 } 1265 1264 1266 1265 out: 1267 - unlock_kernel(); 1266 + mutex_unlock(&blkfront_mutex); 1268 1267 return 0; 1269 1268 } 1270 1269
+6 -5
drivers/block/xsysace.c
··· 89 89 #include <linux/delay.h> 90 90 #include <linux/slab.h> 91 91 #include <linux/blkdev.h> 92 - #include <linux/smp_lock.h> 92 + #include <linux/mutex.h> 93 93 #include <linux/ata.h> 94 94 #include <linux/hdreg.h> 95 95 #include <linux/platform_device.h> ··· 214 214 u16 cf_id[ATA_ID_WORDS]; 215 215 }; 216 216 217 + static DEFINE_MUTEX(xsysace_mutex); 217 218 static int ace_major; 218 219 219 220 /* --------------------------------------------------------------------- ··· 904 903 905 904 dev_dbg(ace->dev, "ace_open() users=%i\n", ace->users + 1); 906 905 907 - lock_kernel(); 906 + mutex_lock(&xsysace_mutex); 908 907 spin_lock_irqsave(&ace->lock, flags); 909 908 ace->users++; 910 909 spin_unlock_irqrestore(&ace->lock, flags); 911 910 912 911 check_disk_change(bdev); 913 - unlock_kernel(); 912 + mutex_unlock(&xsysace_mutex); 914 913 915 914 return 0; 916 915 } ··· 923 922 924 923 dev_dbg(ace->dev, "ace_release() users=%i\n", ace->users - 1); 925 924 926 - lock_kernel(); 925 + mutex_lock(&xsysace_mutex); 927 926 spin_lock_irqsave(&ace->lock, flags); 928 927 ace->users--; 929 928 if (ace->users == 0) { ··· 931 930 ace_out(ace, ACE_CTRL, val & ~ACE_CTRL_LOCKREQ); 932 931 } 933 932 spin_unlock_irqrestore(&ace->lock, flags); 934 - unlock_kernel(); 933 + mutex_unlock(&xsysace_mutex); 935 934 return 0; 936 935 } 937 936
+8 -7
drivers/block/z2ram.c
··· 33 33 #include <linux/module.h> 34 34 #include <linux/blkdev.h> 35 35 #include <linux/bitops.h> 36 - #include <linux/smp_lock.h> 36 + #include <linux/mutex.h> 37 37 #include <linux/slab.h> 38 38 39 39 #include <asm/setup.h> ··· 57 57 58 58 #define Z2RAM_CHUNK1024 ( Z2RAM_CHUNKSIZE >> 10 ) 59 59 60 + static DEFINE_MUTEX(z2ram_mutex); 60 61 static u_long *z2ram_map = NULL; 61 62 static u_long z2ram_size = 0; 62 63 static int z2_count = 0; ··· 155 154 156 155 device = MINOR(bdev->bd_dev); 157 156 158 - lock_kernel(); 157 + mutex_lock(&z2ram_mutex); 159 158 if ( current_device != -1 && current_device != device ) 160 159 { 161 160 rc = -EBUSY; ··· 297 296 set_capacity(z2ram_gendisk, z2ram_size >> 9); 298 297 } 299 298 300 - unlock_kernel(); 299 + mutex_unlock(&z2ram_mutex); 301 300 return 0; 302 301 303 302 err_out_kfree: 304 303 kfree(z2ram_map); 305 304 err_out: 306 - unlock_kernel(); 305 + mutex_unlock(&z2ram_mutex); 307 306 return rc; 308 307 } 309 308 310 309 static int 311 310 z2_release(struct gendisk *disk, fmode_t mode) 312 311 { 313 - lock_kernel(); 312 + mutex_lock(&z2ram_mutex); 314 313 if ( current_device == -1 ) { 315 - unlock_kernel(); 314 + mutex_unlock(&z2ram_mutex); 316 315 return 0; 317 316 } 318 - unlock_kernel(); 317 + mutex_unlock(&z2ram_mutex); 319 318 /* 320 319 * FIXME: unmap memory 321 320 */
+8 -7
drivers/cdrom/gdrom.c
··· 34 34 #include <linux/blkdev.h> 35 35 #include <linux/interrupt.h> 36 36 #include <linux/device.h> 37 - #include <linux/smp_lock.h> 37 + #include <linux/mutex.h> 38 38 #include <linux/wait.h> 39 39 #include <linux/workqueue.h> 40 40 #include <linux/platform_device.h> ··· 81 81 82 82 #define GDROM_DEFAULT_TIMEOUT (HZ * 7) 83 83 84 + static DEFINE_MUTEX(gdrom_mutex); 84 85 static const struct { 85 86 int sense_key; 86 87 const char * const text; ··· 495 494 static int gdrom_bdops_open(struct block_device *bdev, fmode_t mode) 496 495 { 497 496 int ret; 498 - lock_kernel(); 497 + mutex_lock(&gdrom_mutex); 499 498 ret = cdrom_open(gd.cd_info, bdev, mode); 500 - unlock_kernel(); 499 + mutex_unlock(&gdrom_mutex); 501 500 return ret; 502 501 } 503 502 504 503 static int gdrom_bdops_release(struct gendisk *disk, fmode_t mode) 505 504 { 506 - lock_kernel(); 505 + mutex_lock(&gdrom_mutex); 507 506 cdrom_release(gd.cd_info, mode); 508 - unlock_kernel(); 507 + mutex_unlock(&gdrom_mutex); 509 508 return 0; 510 509 } 511 510 ··· 519 518 { 520 519 int ret; 521 520 522 - lock_kernel(); 521 + mutex_lock(&gdrom_mutex); 523 522 ret = cdrom_ioctl(gd.cd_info, bdev, mode, cmd, arg); 524 - unlock_kernel(); 523 + mutex_unlock(&gdrom_mutex); 525 524 526 525 return ret; 527 526 }
+8 -7
drivers/cdrom/viocd.c
··· 42 42 #include <linux/module.h> 43 43 #include <linux/completion.h> 44 44 #include <linux/proc_fs.h> 45 - #include <linux/smp_lock.h> 45 + #include <linux/mutex.h> 46 46 #include <linux/seq_file.h> 47 47 #include <linux/scatterlist.h> 48 48 ··· 61 61 */ 62 62 #define VIOCD_MAX_CD HVMAXARCHITECTEDVIRTUALCDROMS 63 63 64 + static DEFINE_MUTEX(viocd_mutex); 64 65 static const struct vio_error_entry viocd_err_table[] = { 65 66 {0x0201, EINVAL, "Invalid Range"}, 66 67 {0x0202, EINVAL, "Invalid Token"}, ··· 157 156 struct disk_info *di = bdev->bd_disk->private_data; 158 157 int ret; 159 158 160 - lock_kernel(); 159 + mutex_lock(&viocd_mutex); 161 160 ret = cdrom_open(&di->viocd_info, bdev, mode); 162 - unlock_kernel(); 161 + mutex_unlock(&viocd_mutex); 163 162 164 163 return ret; 165 164 } ··· 167 166 static int viocd_blk_release(struct gendisk *disk, fmode_t mode) 168 167 { 169 168 struct disk_info *di = disk->private_data; 170 - lock_kernel(); 169 + mutex_lock(&viocd_mutex); 171 170 cdrom_release(&di->viocd_info, mode); 172 - unlock_kernel(); 171 + mutex_unlock(&viocd_mutex); 173 172 return 0; 174 173 } 175 174 ··· 179 178 struct disk_info *di = bdev->bd_disk->private_data; 180 179 int ret; 181 180 182 - lock_kernel(); 181 + mutex_lock(&viocd_mutex); 183 182 ret = cdrom_ioctl(&di->viocd_info, bdev, mode, cmd, arg); 184 - unlock_kernel(); 183 + mutex_unlock(&viocd_mutex); 185 184 186 185 return ret; 187 186 }
+6 -5
drivers/char/apm-emulation.c
··· 13 13 #include <linux/module.h> 14 14 #include <linux/poll.h> 15 15 #include <linux/slab.h> 16 - #include <linux/smp_lock.h> 16 + #include <linux/mutex.h> 17 17 #include <linux/proc_fs.h> 18 18 #include <linux/seq_file.h> 19 19 #include <linux/miscdevice.h> ··· 126 126 /* 127 127 * Local variables 128 128 */ 129 + static DEFINE_MUTEX(apm_mutex); 129 130 static atomic_t suspend_acks_pending = ATOMIC_INIT(0); 130 131 static atomic_t userspace_notification_inhibit = ATOMIC_INIT(0); 131 132 static int apm_disabled; ··· 275 274 if (!as->suser || !as->writer) 276 275 return -EPERM; 277 276 278 - lock_kernel(); 277 + mutex_lock(&apm_mutex); 279 278 switch (cmd) { 280 279 case APM_IOC_SUSPEND: 281 280 mutex_lock(&state_lock); ··· 336 335 mutex_unlock(&state_lock); 337 336 break; 338 337 } 339 - unlock_kernel(); 338 + mutex_unlock(&apm_mutex); 340 339 341 340 return err; 342 341 } ··· 371 370 { 372 371 struct apm_user *as; 373 372 374 - lock_kernel(); 373 + mutex_lock(&apm_mutex); 375 374 as = kzalloc(sizeof(*as), GFP_KERNEL); 376 375 if (as) { 377 376 /* ··· 391 390 392 391 filp->private_data = as; 393 392 } 394 - unlock_kernel(); 393 + mutex_unlock(&apm_mutex); 395 394 396 395 return as ? 0 : -ENOMEM; 397 396 }
+5 -4
drivers/char/applicom.c
··· 26 26 #include <linux/sched.h> 27 27 #include <linux/slab.h> 28 28 #include <linux/errno.h> 29 - #include <linux/smp_lock.h> 29 + #include <linux/mutex.h> 30 30 #include <linux/miscdevice.h> 31 31 #include <linux/pci.h> 32 32 #include <linux/wait.h> ··· 60 60 #define PCI_DEVICE_ID_APPLICOM_PCI2000PFB 0x0003 61 61 #endif 62 62 63 + static DEFINE_MUTEX(ac_mutex); 63 64 static char *applicom_pci_devnames[] = { 64 65 "PCI board", 65 66 "PCI2000IBS / PCI2000CAN", ··· 708 707 if (IS_ERR(adgl)) 709 708 return PTR_ERR(adgl); 710 709 711 - lock_kernel(); 710 + mutex_lock(&ac_mutex); 712 711 IndexCard = adgl->num_card-1; 713 712 714 713 if(cmd != 6 && ((IndexCard >= MAX_BOARD) || !apbs[IndexCard].RamIO)) { ··· 718 717 warncount--; 719 718 } 720 719 kfree(adgl); 721 - unlock_kernel(); 720 + mutex_unlock(&ac_mutex); 722 721 return -EINVAL; 723 722 } 724 723 ··· 836 835 } 837 836 Dummy = readb(apbs[IndexCard].RamIO + VERS); 838 837 kfree(adgl); 839 - unlock_kernel(); 838 + mutex_unlock(&ac_mutex); 840 839 return 0; 841 840 } 842 841
+8 -7
drivers/char/ds1302.c
··· 20 20 #include <linux/miscdevice.h> 21 21 #include <linux/delay.h> 22 22 #include <linux/bcd.h> 23 - #include <linux/smp_lock.h> 23 + #include <linux/mutex.h> 24 24 #include <linux/uaccess.h> 25 25 #include <linux/io.h> 26 26 ··· 32 32 33 33 #define RTC_MAJOR_NR 121 /* local major, change later */ 34 34 35 + static DEFINE_MUTEX(rtc_mutex); 35 36 static const char ds1302_name[] = "ds1302"; 36 37 37 38 /* Send 8 bits. */ ··· 165 164 struct rtc_time rtc_tm; 166 165 167 166 memset(&rtc_tm, 0, sizeof (struct rtc_time)); 168 - lock_kernel(); 167 + mutex_lock(&rtc_mutex); 169 168 get_rtc_time(&rtc_tm); 170 - unlock_kernel(); 169 + mutex_unlock(&rtc_mutex); 171 170 if (copy_to_user((struct rtc_time*)arg, &rtc_tm, sizeof(struct rtc_time))) 172 171 return -EFAULT; 173 172 return 0; ··· 219 218 mon = bin2bcd(mon); 220 219 yrs = bin2bcd(yrs); 221 220 222 - lock_kernel(); 221 + mutex_lock(&rtc_mutex); 223 222 local_irq_save(flags); 224 223 CMOS_WRITE(yrs, RTC_YEAR); 225 224 CMOS_WRITE(mon, RTC_MONTH); ··· 228 227 CMOS_WRITE(min, RTC_MINUTES); 229 228 CMOS_WRITE(sec, RTC_SECONDS); 230 229 local_irq_restore(flags); 231 - unlock_kernel(); 230 + mutex_unlock(&rtc_mutex); 232 231 233 232 /* Notice that at this point, the RTC is updated but 234 233 * the kernel is still running with the old time. ··· 248 247 if(copy_from_user(&tcs_val, (int*)arg, sizeof(int))) 249 248 return -EFAULT; 250 249 251 - lock_kernel(); 250 + mutex_lock(&rtc_mutex); 252 251 tcs_val = RTC_TCR_PATTERN | (tcs_val & 0x0F); 253 252 ds1302_writereg(RTC_TRICKLECHARGER, tcs_val); 254 - unlock_kernel(); 253 + mutex_unlock(&rtc_mutex); 255 254 return 0; 256 255 } 257 256 default:
+4 -4
drivers/char/ds1620.c
··· 8 8 #include <linux/proc_fs.h> 9 9 #include <linux/capability.h> 10 10 #include <linux/init.h> 11 - #include <linux/smp_lock.h> 11 + #include <linux/mutex.h> 12 12 13 13 #include <mach/hardware.h> 14 14 #include <asm/mach-types.h> ··· 34 34 #define CFG_CPU 2 35 35 #define CFG_1SHOT 1 36 36 37 + static DEFINE_MUTEX(ds1620_mutex); 37 38 static const char *fan_state[] = { "off", "on", "on (hardwired)" }; 38 39 39 40 /* ··· 211 210 212 211 static int ds1620_open(struct inode *inode, struct file *file) 213 212 { 214 - cycle_kernel_lock(); 215 213 return nonseekable_open(inode, file); 216 214 } 217 215 ··· 321 321 { 322 322 int ret; 323 323 324 - lock_kernel(); 324 + mutex_lock(&ds1620_mutex); 325 325 ret = ds1620_ioctl(file, cmd, arg); 326 - unlock_kernel(); 326 + mutex_unlock(&ds1620_mutex); 327 327 328 328 return ret; 329 329 }
+14 -13
drivers/char/dsp56k.c
··· 32 32 #include <linux/mm.h> 33 33 #include <linux/init.h> 34 34 #include <linux/device.h> 35 - #include <linux/smp_lock.h> 35 + #include <linux/mutex.h> 36 36 #include <linux/firmware.h> 37 37 #include <linux/platform_device.h> 38 38 #include <linux/uaccess.h> /* For put_user and get_user */ ··· 94 94 } \ 95 95 } 96 96 97 + static DEFINE_MUTEX(dsp56k_mutex); 97 98 static struct dsp56k_device { 98 99 unsigned long in_use; 99 100 long maxio, timeout; ··· 331 330 if (len > DSP56K_MAX_BINARY_LENGTH) { 332 331 return -EINVAL; 333 332 } 334 - lock_kernel(); 333 + mutex_lock(&dsp56k_mutex); 335 334 r = dsp56k_upload(bin, len); 336 - unlock_kernel(); 335 + mutex_unlock(&dsp56k_mutex); 337 336 if (r < 0) { 338 337 return r; 339 338 } ··· 343 342 case DSP56K_SET_TX_WSIZE: 344 343 if (arg > 4 || arg < 1) 345 344 return -EINVAL; 346 - lock_kernel(); 345 + mutex_lock(&dsp56k_mutex); 347 346 dsp56k.tx_wsize = (int) arg; 348 - unlock_kernel(); 347 + mutex_unlock(&dsp56k_mutex); 349 348 break; 350 349 case DSP56K_SET_RX_WSIZE: 351 350 if (arg > 4 || arg < 1) 352 351 return -EINVAL; 353 - lock_kernel(); 352 + mutex_lock(&dsp56k_mutex); 354 353 dsp56k.rx_wsize = (int) arg; 355 - unlock_kernel(); 354 + mutex_unlock(&dsp56k_mutex); 356 355 break; 357 356 case DSP56K_HOST_FLAGS: 358 357 { ··· 364 363 if(get_user(out, &hf->out) < 0) 365 364 return -EFAULT; 366 365 367 - lock_kernel(); 366 + mutex_lock(&dsp56k_mutex); 368 367 if ((dir & 0x1) && (out & 0x1)) 369 368 dsp56k_host_interface.icr |= DSP56K_ICR_HF0; 370 369 else if (dir & 0x1) ··· 379 378 if (dsp56k_host_interface.icr & DSP56K_ICR_HF1) status |= 0x2; 380 379 if (dsp56k_host_interface.isr & DSP56K_ISR_HF2) status |= 0x4; 381 380 if (dsp56k_host_interface.isr & DSP56K_ISR_HF3) status |= 0x8; 382 - unlock_kernel(); 381 + mutex_unlock(&dsp56k_mutex); 383 382 return put_user(status, &hf->status); 384 383 } 385 384 case DSP56K_HOST_CMD: 386 385 if (arg > 31 || arg < 0) 387 386 return -EINVAL; 388 - lock_kernel(); 387 + mutex_lock(&dsp56k_mutex); 389 388 dsp56k_host_interface.cvr = (u_char)((arg & DSP56K_CVR_HV_MASK) | 390 389 DSP56K_CVR_HC); 391 - unlock_kernel(); 390 + mutex_unlock(&dsp56k_mutex); 392 391 break; 393 392 default: 394 393 return -EINVAL; ··· 428 427 int dev = iminor(inode) & 0x0f; 429 428 int ret = 0; 430 429 431 - lock_kernel(); 430 + mutex_lock(&dsp56k_mutex); 432 431 switch(dev) 433 432 { 434 433 case DSP56K_DEV_56001: ··· 455 454 ret = -ENODEV; 456 455 } 457 456 out: 458 - unlock_kernel(); 457 + mutex_unlock(&dsp56k_mutex); 459 458 return ret; 460 459 } 461 460
+4 -4
drivers/char/dtlk.c
··· 57 57 #include <linux/ioport.h> /* for request_region */ 58 58 #include <linux/delay.h> /* for loops_per_jiffy */ 59 59 #include <linux/sched.h> 60 - #include <linux/smp_lock.h> /* cycle_kernel_lock() */ 60 + #include <linux/mutex.h> 61 61 #include <asm/io.h> /* for inb_p, outb_p, inb, outb, etc. */ 62 62 #include <asm/uaccess.h> /* for get_user, etc. */ 63 63 #include <linux/wait.h> /* for wait_queue */ ··· 73 73 #define TRACE_RET ((void) 0) 74 74 #endif /* TRACING */ 75 75 76 + static DEFINE_MUTEX(dtlk_mutex); 76 77 static void dtlk_timer_tick(unsigned long data); 77 78 78 79 static int dtlk_major; ··· 276 275 switch (cmd) { 277 276 278 277 case DTLK_INTERROGATE: 279 - lock_kernel(); 278 + mutex_lock(&dtlk_mutex); 280 279 sp = dtlk_interrogate(); 281 - unlock_kernel(); 280 + mutex_unlock(&dtlk_mutex); 282 281 if (copy_to_user(argp, sp, sizeof(struct dtlk_settings))) 283 282 return -EINVAL; 284 283 return 0; ··· 297 296 { 298 297 TRACE_TEXT("(dtlk_open"); 299 298 300 - cycle_kernel_lock(); 301 299 nonseekable_open(inode, file); 302 300 switch (iminor(inode)) { 303 301 case DTLK_MINOR:
+4 -3
drivers/char/generic_nvram.c
··· 19 19 #include <linux/miscdevice.h> 20 20 #include <linux/fcntl.h> 21 21 #include <linux/init.h> 22 - #include <linux/smp_lock.h> 22 + #include <linux/mutex.h> 23 23 #include <asm/uaccess.h> 24 24 #include <asm/nvram.h> 25 25 #ifdef CONFIG_PPC_PMAC ··· 28 28 29 29 #define NVRAM_SIZE 8192 30 30 31 + static DEFINE_MUTEX(nvram_mutex); 31 32 static ssize_t nvram_len; 32 33 33 34 static loff_t nvram_llseek(struct file *file, loff_t offset, int origin) ··· 121 120 { 122 121 int ret; 123 122 124 - lock_kernel(); 123 + mutex_lock(&nvram_mutex); 125 124 ret = nvram_ioctl(file, cmd, arg); 126 - unlock_kernel(); 125 + mutex_unlock(&nvram_mutex); 127 126 128 127 return ret; 129 128 }
+7 -6
drivers/char/genrtc.c
··· 52 52 #include <linux/init.h> 53 53 #include <linux/poll.h> 54 54 #include <linux/proc_fs.h> 55 - #include <linux/smp_lock.h> 55 + #include <linux/mutex.h> 56 56 #include <linux/workqueue.h> 57 57 58 58 #include <asm/uaccess.h> ··· 66 66 * ioctls. 67 67 */ 68 68 69 + static DEFINE_MUTEX(gen_rtc_mutex); 69 70 static DECLARE_WAIT_QUEUE_HEAD(gen_rtc_wait); 70 71 71 72 /* ··· 338 337 { 339 338 int ret; 340 339 341 - lock_kernel(); 340 + mutex_lock(&gen_rtc_mutex); 342 341 ret = gen_rtc_ioctl(file, cmd, arg); 343 - unlock_kernel(); 342 + mutex_unlock(&gen_rtc_mutex); 344 343 345 344 return ret; 346 345 } ··· 353 352 354 353 static int gen_rtc_open(struct inode *inode, struct file *file) 355 354 { 356 - lock_kernel(); 355 + mutex_lock(&gen_rtc_mutex); 357 356 if (gen_rtc_status & RTC_IS_OPEN) { 358 - unlock_kernel(); 357 + mutex_unlock(&gen_rtc_mutex); 359 358 return -EBUSY; 360 359 } 361 360 362 361 gen_rtc_status |= RTC_IS_OPEN; 363 362 gen_rtc_irq_data = 0; 364 363 irq_active = 0; 365 - unlock_kernel(); 364 + mutex_unlock(&gen_rtc_mutex); 366 365 367 366 return 0; 368 367 }
+4 -3
drivers/char/i8k.c
··· 23 23 #include <linux/seq_file.h> 24 24 #include <linux/dmi.h> 25 25 #include <linux/capability.h> 26 - #include <linux/smp_lock.h> 26 + #include <linux/mutex.h> 27 27 #include <asm/uaccess.h> 28 28 #include <asm/io.h> 29 29 ··· 56 56 57 57 #define I8K_TEMPERATURE_BUG 1 58 58 59 + static DEFINE_MUTEX(i8k_mutex); 59 60 static char bios_version[4]; 60 61 61 62 MODULE_AUTHOR("Massimo Dal Zotto (dz@debian.org)"); ··· 400 399 { 401 400 long ret; 402 401 403 - lock_kernel(); 402 + mutex_lock(&i8k_mutex); 404 403 ret = i8k_ioctl_unlocked(fp, cmd, arg); 405 - unlock_kernel(); 404 + mutex_unlock(&i8k_mutex); 406 405 407 406 return ret; 408 407 }
+4 -4
drivers/char/ip2/ip2main.c
··· 98 98 #include <linux/major.h> 99 99 #include <linux/wait.h> 100 100 #include <linux/device.h> 101 - #include <linux/smp_lock.h> 101 + #include <linux/mutex.h> 102 102 #include <linux/firmware.h> 103 103 #include <linux/platform_device.h> 104 104 ··· 138 138 #include <linux/proc_fs.h> 139 139 #include <linux/seq_file.h> 140 140 141 + static DEFINE_MUTEX(ip2_mutex); 141 142 static const struct file_operations ip2mem_proc_fops; 142 143 static const struct file_operations ip2_proc_fops; 143 144 ··· 2898 2897 printk (KERN_DEBUG "IP2IPL: ioctl cmd %d, arg %ld\n", cmd, arg ); 2899 2898 #endif 2900 2899 2901 - lock_kernel(); 2900 + mutex_lock(&ip2_mutex); 2902 2901 2903 2902 switch ( iplminor ) { 2904 2903 case 0: // IPL device ··· 2962 2961 rc = -ENODEV; 2963 2962 break; 2964 2963 } 2965 - unlock_kernel(); 2964 + mutex_unlock(&ip2_mutex); 2966 2965 return rc; 2967 2966 } 2968 2967 ··· 2983 2982 #ifdef IP2DEBUG_IPL 2984 2983 printk (KERN_DEBUG "IP2IPL: open\n" ); 2985 2984 #endif 2986 - cycle_kernel_lock(); 2987 2985 return 0; 2988 2986 } 2989 2987
+7 -7
drivers/char/ipmi/ipmi_devintf.c
··· 44 44 #include <linux/init.h> 45 45 #include <linux/device.h> 46 46 #include <linux/compat.h> 47 - #include <linux/smp_lock.h> 48 47 49 48 struct ipmi_file_private 50 49 { ··· 58 59 unsigned int default_retry_time_ms; 59 60 }; 60 61 62 + static DEFINE_MUTEX(ipmi_mutex); 61 63 static void file_receive_handler(struct ipmi_recv_msg *msg, 62 64 void *handler_data) 63 65 { ··· 102 102 struct ipmi_file_private *priv = file->private_data; 103 103 int result; 104 104 105 - lock_kernel(); /* could race against open() otherwise */ 105 + mutex_lock(&ipmi_mutex); /* could race against open() otherwise */ 106 106 result = fasync_helper(fd, file, on, &priv->fasync_queue); 107 - unlock_kernel(); 107 + mutex_unlock(&ipmi_mutex); 108 108 109 109 return (result); 110 110 } ··· 125 125 if (!priv) 126 126 return -ENOMEM; 127 127 128 - lock_kernel(); 128 + mutex_lock(&ipmi_mutex); 129 129 priv->file = file; 130 130 131 131 rv = ipmi_create_user(if_num, ··· 150 150 priv->default_retry_time_ms = 0; 151 151 152 152 out: 153 - unlock_kernel(); 153 + mutex_unlock(&ipmi_mutex); 154 154 return rv; 155 155 } 156 156 ··· 639 639 { 640 640 int ret; 641 641 642 - lock_kernel(); 642 + mutex_lock(&ipmi_mutex); 643 643 ret = ipmi_ioctl(file, cmd, data); 644 - unlock_kernel(); 644 + mutex_unlock(&ipmi_mutex); 645 645 646 646 return ret; 647 647 }
+4 -4
drivers/char/ipmi/ipmi_watchdog.c
··· 35 35 #include <linux/moduleparam.h> 36 36 #include <linux/ipmi.h> 37 37 #include <linux/ipmi_smi.h> 38 - #include <linux/smp_lock.h> 38 + #include <linux/mutex.h> 39 39 #include <linux/watchdog.h> 40 40 #include <linux/miscdevice.h> 41 41 #include <linux/init.h> ··· 149 149 #define WDIOC_GET_PRETIMEOUT _IOW(WATCHDOG_IOCTL_BASE, 22, int) 150 150 #endif 151 151 152 + static DEFINE_MUTEX(ipmi_watchdog_mutex); 152 153 static int nowayout = WATCHDOG_NOWAYOUT; 153 154 154 155 static ipmi_user_t watchdog_user; ··· 749 748 { 750 749 int ret; 751 750 752 - lock_kernel(); 751 + mutex_lock(&ipmi_watchdog_mutex); 753 752 ret = ipmi_ioctl(file, cmd, arg); 754 - unlock_kernel(); 753 + mutex_unlock(&ipmi_watchdog_mutex); 755 754 756 755 return ret; 757 756 } ··· 845 844 if (test_and_set_bit(0, &ipmi_wdog_open)) 846 845 return -EBUSY; 847 846 848 - cycle_kernel_lock(); 849 847 850 848 /* 851 849 * Don't start the timer now, let it start on the
+8 -7
drivers/char/lp.c
··· 126 126 #include <linux/device.h> 127 127 #include <linux/wait.h> 128 128 #include <linux/jiffies.h> 129 - #include <linux/smp_lock.h> 129 + #include <linux/mutex.h> 130 130 #include <linux/compat.h> 131 131 132 132 #include <linux/parport.h> ··· 140 140 /* if you have more than 8 printers, remember to increase LP_NO */ 141 141 #define LP_NO 8 142 142 143 + static DEFINE_MUTEX(lp_mutex); 143 144 static struct lp_struct lp_table[LP_NO]; 144 145 145 146 static unsigned int lp_count = 0; ··· 494 493 unsigned int minor = iminor(inode); 495 494 int ret = 0; 496 495 497 - lock_kernel(); 496 + mutex_lock(&lp_mutex); 498 497 if (minor >= LP_NO) { 499 498 ret = -ENXIO; 500 499 goto out; ··· 555 554 lp_release_parport (&lp_table[minor]); 556 555 lp_table[minor].current_mode = IEEE1284_MODE_COMPAT; 557 556 out: 558 - unlock_kernel(); 557 + mutex_unlock(&lp_mutex); 559 558 return ret; 560 559 } 561 560 ··· 681 680 int ret; 682 681 683 682 minor = iminor(file->f_path.dentry->d_inode); 684 - lock_kernel(); 683 + mutex_lock(&lp_mutex); 685 684 switch (cmd) { 686 685 case LPSETTIMEOUT: 687 686 if (copy_from_user(&par_timeout, (void __user *)arg, ··· 695 694 ret = lp_do_ioctl(minor, cmd, arg, (void __user *)arg); 696 695 break; 697 696 } 698 - unlock_kernel(); 697 + mutex_unlock(&lp_mutex); 699 698 700 699 return ret; 701 700 } ··· 710 709 int ret; 711 710 712 711 minor = iminor(file->f_path.dentry->d_inode); 713 - lock_kernel(); 712 + mutex_lock(&lp_mutex); 714 713 switch (cmd) { 715 714 case LPSETTIMEOUT: 716 715 tc = compat_ptr(arg); ··· 731 730 ret = lp_do_ioctl(minor, cmd, arg, compat_ptr(arg)); 732 731 break; 733 732 } 734 - unlock_kernel(); 733 + mutex_unlock(&lp_mutex); 735 734 736 735 return ret; 737 736 }
+4 -4
drivers/char/mbcs.c
··· 25 25 #include <linux/mm.h> 26 26 #include <linux/uio.h> 27 27 #include <linux/mutex.h> 28 - #include <linux/smp_lock.h> 29 28 #include <linux/slab.h> 30 29 #include <asm/io.h> 31 30 #include <asm/uaccess.h> ··· 41 42 #else 42 43 #define DBG(fmt...) 43 44 #endif 45 + static DEFINE_MUTEX(mbcs_mutex); 44 46 static int mbcs_major; 45 47 46 48 static LIST_HEAD(soft_list); ··· 385 385 struct mbcs_soft *soft; 386 386 int minor; 387 387 388 - lock_kernel(); 388 + mutex_lock(&mbcs_mutex); 389 389 minor = iminor(ip); 390 390 391 391 /* Nothing protects access to this list... */ 392 392 list_for_each_entry(soft, &soft_list, list) { 393 393 if (soft->nasid == minor) { 394 394 fp->private_data = soft->cxdev; 395 - unlock_kernel(); 395 + mutex_unlock(&mbcs_mutex); 396 396 return 0; 397 397 } 398 398 } 399 399 400 - unlock_kernel(); 400 + mutex_unlock(&mbcs_mutex); 401 401 return -ENODEV; 402 402 } 403 403
+4 -3
drivers/char/mmtimer.c
··· 32 32 #include <linux/interrupt.h> 33 33 #include <linux/time.h> 34 34 #include <linux/math64.h> 35 - #include <linux/smp_lock.h> 35 + #include <linux/mutex.h> 36 36 #include <linux/slab.h> 37 37 38 38 #include <asm/uaccess.h> ··· 59 59 60 60 #define rtc_time() (*RTC_COUNTER_ADDR) 61 61 62 + static DEFINE_MUTEX(mmtimer_mutex); 62 63 static long mmtimer_ioctl(struct file *file, unsigned int cmd, 63 64 unsigned long arg); 64 65 static int mmtimer_mmap(struct file *file, struct vm_area_struct *vma); ··· 372 371 { 373 372 int ret = 0; 374 373 375 - lock_kernel(); 374 + mutex_lock(&mmtimer_mutex); 376 375 377 376 switch (cmd) { 378 377 case MMTIMER_GETOFFSET: /* offset of the counter */ ··· 415 414 ret = -ENOTTY; 416 415 break; 417 416 } 418 - unlock_kernel(); 417 + mutex_unlock(&mmtimer_mutex); 419 418 return ret; 420 419 } 421 420
+22 -22
drivers/char/mwave/mwavedd.c
··· 56 56 #include <linux/serial.h> 57 57 #include <linux/sched.h> 58 58 #include <linux/spinlock.h> 59 - #include <linux/smp_lock.h> 59 + #include <linux/mutex.h> 60 60 #include <linux/delay.h> 61 61 #include <linux/serial_8250.h> 62 62 #include "smapi.h" ··· 73 73 * checks are made against other devices (ie. superio) for conflicts. 74 74 * We'll depend on users using the tpctl utility to do that for now 75 75 */ 76 + static DEFINE_MUTEX(mwave_mutex); 76 77 int mwave_debug = 0; 77 78 int mwave_3780i_irq = 0; 78 79 int mwave_3780i_io = 0; ··· 102 101 PRINTK_2(TRACE_MWAVE, 103 102 "mwavedd::mwave_open, exit return retval %x\n", retval); 104 103 105 - cycle_kernel_lock(); 106 104 return retval; 107 105 } 108 106 ··· 136 136 PRINTK_1(TRACE_MWAVE, 137 137 "mwavedd::mwave_ioctl, IOCTL_MW_RESET" 138 138 " calling tp3780I_ResetDSP\n"); 139 - lock_kernel(); 139 + mutex_lock(&mwave_mutex); 140 140 retval = tp3780I_ResetDSP(&pDrvData->rBDData); 141 - unlock_kernel(); 141 + mutex_unlock(&mwave_mutex); 142 142 PRINTK_2(TRACE_MWAVE, 143 143 "mwavedd::mwave_ioctl, IOCTL_MW_RESET" 144 144 " retval %x from tp3780I_ResetDSP\n", ··· 149 149 PRINTK_1(TRACE_MWAVE, 150 150 "mwavedd::mwave_ioctl, IOCTL_MW_RUN" 151 151 " calling tp3780I_StartDSP\n"); 152 - lock_kernel(); 152 + mutex_lock(&mwave_mutex); 153 153 retval = tp3780I_StartDSP(&pDrvData->rBDData); 154 - unlock_kernel(); 154 + mutex_unlock(&mwave_mutex); 155 155 PRINTK_2(TRACE_MWAVE, 156 156 "mwavedd::mwave_ioctl, IOCTL_MW_RUN" 157 157 " retval %x from tp3780I_StartDSP\n", ··· 165 165 "mwavedd::mwave_ioctl," 166 166 " IOCTL_MW_DSP_ABILITIES calling" 167 167 " tp3780I_QueryAbilities\n"); 168 - lock_kernel(); 168 + mutex_lock(&mwave_mutex); 169 169 retval = tp3780I_QueryAbilities(&pDrvData->rBDData, 170 170 &rAbilities); 171 - unlock_kernel(); 171 + mutex_unlock(&mwave_mutex); 172 172 PRINTK_2(TRACE_MWAVE, 173 173 "mwavedd::mwave_ioctl, IOCTL_MW_DSP_ABILITIES" 174 174 " retval %x from tp3780I_QueryAbilities\n", ··· 199 199 "mwavedd::mwave_ioctl IOCTL_MW_READ_DATA," 200 200 " size %lx, ioarg %lx pusBuffer %p\n", 201 201 rReadData.ulDataLength, ioarg, pusBuffer); 202 - lock_kernel(); 202 + mutex_lock(&mwave_mutex); 203 203 retval = tp3780I_ReadWriteDspDStore(&pDrvData->rBDData, 204 204 iocmd, 205 205 pusBuffer, 206 206 rReadData.ulDataLength, 207 207 rReadData.usDspAddress); 208 - unlock_kernel(); 208 + mutex_unlock(&mwave_mutex); 209 209 } 210 210 break; 211 211 ··· 223 223 " size %lx, ioarg %lx pusBuffer %p\n", 224 224 rReadData.ulDataLength / 2, ioarg, 225 225 pusBuffer); 226 - lock_kernel(); 226 + mutex_lock(&mwave_mutex); 227 227 retval = tp3780I_ReadWriteDspDStore(&pDrvData->rBDData, 228 228 iocmd, pusBuffer, 229 229 rReadData.ulDataLength / 2, 230 230 rReadData.usDspAddress); 231 - unlock_kernel(); 231 + mutex_unlock(&mwave_mutex); 232 232 } 233 233 break; 234 234 ··· 246 246 " size %lx, ioarg %lx pusBuffer %p\n", 247 247 rWriteData.ulDataLength, ioarg, 248 248 pusBuffer); 249 - lock_kernel(); 249 + mutex_lock(&mwave_mutex); 250 250 retval = tp3780I_ReadWriteDspDStore(&pDrvData->rBDData, 251 251 iocmd, pusBuffer, 252 252 rWriteData.ulDataLength, 253 253 rWriteData.usDspAddress); 254 - unlock_kernel(); 254 + mutex_unlock(&mwave_mutex); 255 255 } 256 256 break; 257 257 ··· 269 269 " size %lx, ioarg %lx pusBuffer %p\n", 270 270 rWriteData.ulDataLength, ioarg, 271 271 pusBuffer); 272 - lock_kernel(); 272 + mutex_lock(&mwave_mutex); 273 273 retval = tp3780I_ReadWriteDspIStore(&pDrvData->rBDData, 274 274 iocmd, pusBuffer, 275 275 rWriteData.ulDataLength, 276 276 rWriteData.usDspAddress); 277 - unlock_kernel(); 277 + mutex_unlock(&mwave_mutex); 278 278 } 279 279 break; 280 280 ··· 295 295 ipcnum, 296 296 pDrvData->IPCs[ipcnum].usIntCount); 297 297 298 - lock_kernel(); 298 + mutex_lock(&mwave_mutex); 299 299 pDrvData->IPCs[ipcnum].bIsHere = FALSE; 300 300 pDrvData->IPCs[ipcnum].bIsEnabled = TRUE; 301 - unlock_kernel(); 301 + mutex_unlock(&mwave_mutex); 302 302 303 303 PRINTK_2(TRACE_MWAVE, 304 304 "mwavedd::mwave_ioctl IOCTL_MW_REGISTER_IPC" ··· 323 323 ipcnum, 324 324 pDrvData->IPCs[ipcnum].usIntCount); 325 325 326 - lock_kernel(); 326 + mutex_lock(&mwave_mutex); 327 327 if (pDrvData->IPCs[ipcnum].bIsEnabled == TRUE) { 328 328 DECLARE_WAITQUEUE(wait, current); 329 329 ··· 364 364 " processing\n", 365 365 ipcnum); 366 366 } 367 - unlock_kernel(); 367 + mutex_unlock(&mwave_mutex); 368 368 } 369 369 break; 370 370 ··· 383 383 ipcnum); 384 384 return -EINVAL; 385 385 } 386 - lock_kernel(); 386 + mutex_lock(&mwave_mutex); 387 387 if (pDrvData->IPCs[ipcnum].bIsEnabled == TRUE) { 388 388 pDrvData->IPCs[ipcnum].bIsEnabled = FALSE; 389 389 if (pDrvData->IPCs[ipcnum].bIsHere == TRUE) { 390 390 wake_up_interruptible(&pDrvData->IPCs[ipcnum].ipc_wait_queue); 391 391 } 392 392 } 393 - unlock_kernel(); 393 + mutex_unlock(&mwave_mutex); 394 394 } 395 395 break; 396 396
+6 -5
drivers/char/nvram.c
··· 109 109 #include <linux/spinlock.h> 110 110 #include <linux/io.h> 111 111 #include <linux/uaccess.h> 112 - #include <linux/smp_lock.h> 112 + #include <linux/mutex.h> 113 113 114 114 #include <asm/system.h> 115 115 116 + static DEFINE_MUTEX(nvram_mutex); 116 117 static DEFINE_SPINLOCK(nvram_state_lock); 117 118 static int nvram_open_cnt; /* #times opened */ 118 119 static int nvram_open_mode; /* special open modes */ ··· 309 308 if (!capable(CAP_SYS_ADMIN)) 310 309 return -EACCES; 311 310 312 - lock_kernel(); 311 + mutex_lock(&nvram_mutex); 313 312 spin_lock_irq(&rtc_lock); 314 313 315 314 for (i = 0; i < NVRAM_BYTES; ++i) ··· 317 316 __nvram_set_checksum(); 318 317 319 318 spin_unlock_irq(&rtc_lock); 320 - unlock_kernel(); 319 + mutex_unlock(&nvram_mutex); 321 320 return 0; 322 321 323 322 case NVRAM_SETCKS: ··· 326 325 if (!capable(CAP_SYS_ADMIN)) 327 326 return -EACCES; 328 327 329 - lock_kernel(); 328 + mutex_lock(&nvram_mutex); 330 329 spin_lock_irq(&rtc_lock); 331 330 __nvram_set_checksum(); 332 331 spin_unlock_irq(&rtc_lock); 333 - unlock_kernel(); 332 + mutex_unlock(&nvram_mutex); 334 333 return 0; 335 334 336 335 default:
+6 -6
drivers/char/nwflash.c
··· 25 25 #include <linux/spinlock.h> 26 26 #include <linux/rwsem.h> 27 27 #include <linux/init.h> 28 - #include <linux/smp_lock.h> 29 28 #include <linux/mutex.h> 30 29 #include <linux/jiffies.h> 31 30 ··· 40 41 41 42 #define NWFLASH_VERSION "6.4" 42 43 44 + static DEFINE_MUTEX(flash_mutex); 43 45 static void kick_open(void); 44 46 static int get_flash_id(void); 45 47 static int erase_block(int nBlock); ··· 96 96 97 97 static long flash_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) 98 98 { 99 - lock_kernel(); 99 + mutex_lock(&flash_mutex); 100 100 switch (cmd) { 101 101 case CMD_WRITE_DISABLE: 102 102 gbWriteBase64Enable = 0; ··· 114 114 default: 115 115 gbWriteBase64Enable = 0; 116 116 gbWriteEnable = 0; 117 - unlock_kernel(); 117 + mutex_unlock(&flash_mutex); 118 118 return -EINVAL; 119 119 } 120 - unlock_kernel(); 120 + mutex_unlock(&flash_mutex); 121 121 return 0; 122 122 } 123 123 ··· 282 282 { 283 283 loff_t ret; 284 284 285 - lock_kernel(); 285 + mutex_lock(&flash_mutex); 286 286 if (flashdebug) 287 287 printk(KERN_DEBUG "flash_llseek: offset=0x%X, orig=0x%X.\n", 288 288 (unsigned int) offset, orig); ··· 317 317 default: 318 318 ret = -EINVAL; 319 319 } 320 - unlock_kernel(); 320 + mutex_unlock(&flash_mutex); 321 321 return ret; 322 322 } 323 323
+7 -5
drivers/char/pcmcia/cm4000_cs.c
··· 30 30 #include <linux/fs.h> 31 31 #include <linux/delay.h> 32 32 #include <linux/bitrev.h> 33 - #include <linux/smp_lock.h> 33 + #include <linux/mutex.h> 34 34 #include <linux/uaccess.h> 35 35 #include <linux/io.h> 36 36 ··· 53 53 dev_dbg(reader_to_dev(rdr), "%s:" x, \ 54 54 __func__ , ## args); \ 55 55 } while (0) 56 + 57 + static DEFINE_MUTEX(cmm_mutex); 56 58 57 59 #define T_1SEC (HZ) 58 60 #define T_10MSEC msecs_to_jiffies(10) ··· 1417 1415 iminor(inode), ioctl_names[_IOC_NR(cmd)]); 1418 1416 #endif 1419 1417 1420 - lock_kernel(); 1418 + mutex_lock(&cmm_mutex); 1421 1419 rc = -ENODEV; 1422 1420 link = dev_table[iminor(inode)]; 1423 1421 if (!pcmcia_dev_present(link)) { ··· 1625 1623 rc = -ENOTTY; 1626 1624 } 1627 1625 out: 1628 - unlock_kernel(); 1626 + mutex_unlock(&cmm_mutex); 1629 1627 return rc; 1630 1628 } 1631 1629 ··· 1639 1637 if (minor >= CM4000_MAX_DEV) 1640 1638 return -ENODEV; 1641 1639 1642 - lock_kernel(); 1640 + mutex_lock(&cmm_mutex); 1643 1641 link = dev_table[minor]; 1644 1642 if (link == NULL || !pcmcia_dev_present(link)) { 1645 1643 ret = -ENODEV; ··· 1684 1682 DEBUGP(2, dev, "<- cmm_open\n"); 1685 1683 ret = nonseekable_open(inode, filp); 1686 1684 out: 1687 - unlock_kernel(); 1685 + mutex_unlock(&cmm_mutex); 1688 1686 return ret; 1689 1687 } 1690 1688
+5 -3
drivers/char/pcmcia/cm4040_cs.c
··· 24 24 #include <linux/fs.h> 25 25 #include <linux/delay.h> 26 26 #include <linux/poll.h> 27 - #include <linux/smp_lock.h> 27 + #include <linux/mutex.h> 28 28 #include <linux/wait.h> 29 29 #include <asm/uaccess.h> 30 30 #include <asm/io.h> ··· 47 47 dev_dbg(reader_to_dev(rdr), "%s:" x, \ 48 48 __func__ , ## args); \ 49 49 } while (0) 50 + 51 + static DEFINE_MUTEX(cm4040_mutex); 50 52 51 53 #define CCID_DRIVER_BULK_DEFAULT_TIMEOUT (150*HZ) 52 54 #define CCID_DRIVER_ASYNC_POWERUP_TIMEOUT (35*HZ) ··· 442 440 if (minor >= CM_MAX_DEV) 443 441 return -ENODEV; 444 442 445 - lock_kernel(); 443 + mutex_lock(&cm4040_mutex); 446 444 link = dev_table[minor]; 447 445 if (link == NULL || !pcmcia_dev_present(link)) { 448 446 ret = -ENODEV; ··· 471 469 DEBUGP(2, dev, "<- cm4040_open (successfully)\n"); 472 470 ret = nonseekable_open(inode, filp); 473 471 out: 474 - unlock_kernel(); 472 + mutex_unlock(&cm4040_mutex); 475 473 return ret; 476 474 } 477 475
+4 -4
drivers/char/ppdev.c
··· 67 67 #include <linux/slab.h> 68 68 #include <linux/major.h> 69 69 #include <linux/ppdev.h> 70 - #include <linux/smp_lock.h> 70 + #include <linux/mutex.h> 71 71 #include <linux/uaccess.h> 72 72 73 73 #define PP_VERSION "ppdev: user-space parallel port driver" ··· 97 97 /* ROUND_UP macro from fs/select.c */ 98 98 #define ROUND_UP(x,y) (((x)+(y)-1)/(y)) 99 99 100 + static DEFINE_MUTEX(pp_do_mutex); 100 101 static inline void pp_enable_irq (struct pp_struct *pp) 101 102 { 102 103 struct parport *port = pp->pdev->port; ··· 631 630 static long pp_ioctl(struct file *file, unsigned int cmd, unsigned long arg) 632 631 { 633 632 long ret; 634 - lock_kernel(); 633 + mutex_lock(&pp_do_mutex); 635 634 ret = pp_do_ioctl(file, cmd, arg); 636 - unlock_kernel(); 635 + mutex_unlock(&pp_do_mutex); 637 636 return ret; 638 637 } 639 638 ··· 642 641 unsigned int minor = iminor(inode); 643 642 struct pp_struct *pp; 644 643 645 - cycle_kernel_lock(); 646 644 if (minor >= PARPORT_MAX) 647 645 return -ENXIO; 648 646
+4 -3
drivers/char/rio/rio_linux.c
··· 44 44 #include <linux/delay.h> 45 45 #include <linux/pci.h> 46 46 #include <linux/slab.h> 47 - #include <linux/smp_lock.h> 47 + #include <linux/mutex.h> 48 48 #include <linux/miscdevice.h> 49 49 #include <linux/init.h> 50 50 ··· 122 122 123 123 124 124 /* These constants are derived from SCO Source */ 125 + static DEFINE_MUTEX(rio_fw_mutex); 125 126 static struct Conf 126 127 RIOConf = { 127 128 /* locator */ "RIO Config here", ··· 567 566 func_enter(); 568 567 569 568 /* The "dev" argument isn't used. */ 570 - lock_kernel(); 569 + mutex_lock(&rio_fw_mutex); 571 570 rc = riocontrol(p, 0, cmd, arg, capable(CAP_SYS_ADMIN)); 572 - unlock_kernel(); 571 + mutex_unlock(&rio_fw_mutex); 573 572 574 573 func_exit(); 575 574 return rc;
+5 -4
drivers/char/snsc.c
··· 21 21 #include <linux/poll.h> 22 22 #include <linux/module.h> 23 23 #include <linux/slab.h> 24 - #include <linux/smp_lock.h> 24 + #include <linux/mutex.h> 25 25 #include <asm/sn/io.h> 26 26 #include <asm/sn/sn_sal.h> 27 27 #include <asm/sn/module.h> ··· 34 34 #define SCDRV_BUFSZ 2048 35 35 #define SCDRV_TIMEOUT 1000 36 36 37 + static DEFINE_MUTEX(scdrv_mutex); 37 38 static irqreturn_t 38 39 scdrv_interrupt(int irq, void *subch_data) 39 40 { ··· 106 105 file->private_data = sd; 107 106 108 107 /* hook this subchannel up to the system controller interrupt */ 109 - lock_kernel(); 108 + mutex_lock(&scdrv_mutex); 110 109 rv = request_irq(SGI_UART_VECTOR, scdrv_interrupt, 111 110 IRQF_SHARED | IRQF_DISABLED, 112 111 SYSCTL_BASENAME, sd); ··· 114 113 ia64_sn_irtr_close(sd->sd_nasid, sd->sd_subch); 115 114 kfree(sd); 116 115 printk("%s: irq request failed (%d)\n", __func__, rv); 117 - unlock_kernel(); 116 + mutex_unlock(&scdrv_mutex); 118 117 return -EBUSY; 119 118 } 120 - unlock_kernel(); 119 + mutex_unlock(&scdrv_mutex); 121 120 return 0; 122 121 } 123 122
+5 -4
drivers/char/toshiba.c
··· 68 68 #include <linux/stat.h> 69 69 #include <linux/proc_fs.h> 70 70 #include <linux/seq_file.h> 71 - #include <linux/smp_lock.h> 71 + #include <linux/mutex.h> 72 72 #include <linux/toshiba.h> 73 73 74 74 #define TOSH_MINOR_DEV 181 ··· 78 78 MODULE_DESCRIPTION("Toshiba laptop SMM driver"); 79 79 MODULE_SUPPORTED_DEVICE("toshiba"); 80 80 81 + static DEFINE_MUTEX(tosh_mutex); 81 82 static int tosh_fn; 82 83 module_param_named(fn, tosh_fn, int, 0); 83 84 MODULE_PARM_DESC(fn, "User specified Fn key detection port"); ··· 275 274 return -EINVAL; 276 275 277 276 /* do we need to emulate the fan ? */ 278 - lock_kernel(); 277 + mutex_lock(&tosh_mutex); 279 278 if (tosh_fan==1) { 280 279 if (((ax==0xf300) || (ax==0xf400)) && (bx==0x0004)) { 281 280 err = tosh_emulate_fan(&regs); 282 - unlock_kernel(); 281 + mutex_unlock(&tosh_mutex); 283 282 break; 284 283 } 285 284 } 286 285 err = tosh_smm(&regs); 287 - unlock_kernel(); 286 + mutex_unlock(&tosh_mutex); 288 287 break; 289 288 default: 290 289 return -EINVAL;
+6 -5
drivers/char/viotape.c
··· 46 46 #include <linux/completion.h> 47 47 #include <linux/proc_fs.h> 48 48 #include <linux/seq_file.h> 49 - #include <linux/smp_lock.h> 49 + #include <linux/mutex.h> 50 50 #include <linux/slab.h> 51 51 52 52 #include <asm/uaccess.h> ··· 64 64 #define VIOTAPE_KERN_WARN KERN_WARNING "viotape: " 65 65 #define VIOTAPE_KERN_INFO KERN_INFO "viotape: " 66 66 67 + static DEFINE_MUTEX(proc_viotape_mutex); 67 68 static int viotape_numdev; 68 69 69 70 /* ··· 685 684 { 686 685 long rc; 687 686 688 - lock_kernel(); 687 + mutex_lock(&proc_viotape_mutex); 689 688 rc = viotap_ioctl(file->f_path.dentry->d_inode, file, cmd, arg); 690 - unlock_kernel(); 689 + mutex_unlock(&proc_viotape_mutex); 691 690 return rc; 692 691 } 693 692 ··· 701 700 if (op == NULL) 702 701 return -ENOMEM; 703 702 704 - lock_kernel(); 703 + mutex_lock(&proc_viotape_mutex); 705 704 get_dev_info(file->f_path.dentry->d_inode, &devi); 706 705 707 706 /* Note: We currently only support one mode! */ ··· 732 731 733 732 free_op: 734 733 free_op_struct(op); 735 - unlock_kernel(); 734 + mutex_unlock(&proc_viotape_mutex); 736 735 return ret; 737 736 } 738 737
+3 -3
drivers/char/xilinx_hwicap/xilinx_hwicap.c
··· 81 81 #include <linux/poll.h> 82 82 #include <linux/proc_fs.h> 83 83 #include <linux/mutex.h> 84 - #include <linux/smp_lock.h> 85 84 #include <linux/sysctl.h> 86 85 #include <linux/fs.h> 87 86 #include <linux/cdev.h> ··· 111 112 #define HWICAP_DEVICES 1 112 113 113 114 /* An array, which is set to true when the device is registered. */ 115 + static DEFINE_MUTEX(hwicap_mutex); 114 116 static bool probed_devices[HWICAP_DEVICES]; 115 117 static struct mutex icap_sem; 116 118 ··· 502 502 struct hwicap_drvdata *drvdata; 503 503 int status; 504 504 505 - lock_kernel(); 505 + mutex_lock(&hwicap_mutex); 506 506 drvdata = container_of(inode->i_cdev, struct hwicap_drvdata, cdev); 507 507 508 508 status = mutex_lock_interruptible(&drvdata->sem); ··· 528 528 error: 529 529 mutex_unlock(&drvdata->sem); 530 530 out: 531 - unlock_kernel(); 531 + mutex_unlock(&hwicap_mutex); 532 532 return status; 533 533 } 534 534
+3 -3
drivers/hwmon/fschmd.c
··· 38 38 #include <linux/i2c.h> 39 39 #include <linux/hwmon.h> 40 40 #include <linux/hwmon-sysfs.h> 41 - #include <linux/smp_lock.h> 42 41 #include <linux/err.h> 43 42 #include <linux/mutex.h> 44 43 #include <linux/sysfs.h> ··· 49 50 #include <linux/kref.h> 50 51 51 52 /* Addresses to scan */ 53 + static DEFINE_MUTEX(watchdog_mutex); 52 54 static const unsigned short normal_i2c[] = { 0x73, I2C_CLIENT_END }; 53 55 54 56 /* Insmod parameters */ ··· 858 858 int i, ret = 0; 859 859 struct fschmd_data *data = filp->private_data; 860 860 861 - lock_kernel(); 861 + mutex_lock(&watchdog_mutex); 862 862 switch (cmd) { 863 863 case WDIOC_GETSUPPORT: 864 864 ident.firmware_version = data->revision; ··· 915 915 default: 916 916 ret = -ENOTTY; 917 917 } 918 - unlock_kernel(); 918 + mutex_unlock(&watchdog_mutex); 919 919 return ret; 920 920 } 921 921
+3 -3
drivers/hwmon/w83793.c
··· 35 35 #include <linux/slab.h> 36 36 #include <linux/i2c.h> 37 37 #include <linux/hwmon.h> 38 - #include <linux/smp_lock.h> 39 38 #include <linux/hwmon-vid.h> 40 39 #include <linux/hwmon-sysfs.h> 41 40 #include <linux/err.h> ··· 51 52 #define WATCHDOG_TIMEOUT 2 /* 2 minute default timeout */ 52 53 53 54 /* Addresses to scan */ 55 + static DEFINE_MUTEX(watchdog_mutex); 54 56 static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, 0x2f, 55 57 I2C_CLIENT_END }; 56 58 ··· 1333 1333 int val, ret = 0; 1334 1334 struct w83793_data *data = filp->private_data; 1335 1335 1336 - lock_kernel(); 1336 + mutex_lock(&watchdog_mutex); 1337 1337 switch (cmd) { 1338 1338 case WDIOC_GETSUPPORT: 1339 1339 if (!nowayout) ··· 1387 1387 default: 1388 1388 ret = -ENOTTY; 1389 1389 } 1390 - unlock_kernel(); 1390 + mutex_unlock(&watchdog_mutex); 1391 1391 return ret; 1392 1392 } 1393 1393
+7 -7
drivers/ide/ide-cd.c
··· 31 31 #include <linux/delay.h> 32 32 #include <linux/timer.h> 33 33 #include <linux/seq_file.h> 34 - #include <linux/smp_lock.h> 35 34 #include <linux/slab.h> 36 35 #include <linux/interrupt.h> 37 36 #include <linux/errno.h> ··· 51 52 52 53 #include "ide-cd.h" 53 54 55 + static DEFINE_MUTEX(ide_cd_mutex); 54 56 static DEFINE_MUTEX(idecd_ref_mutex); 55 57 56 58 static void ide_cd_release(struct device *); ··· 1602 1602 struct cdrom_info *info; 1603 1603 int rc = -ENXIO; 1604 1604 1605 - lock_kernel(); 1605 + mutex_lock(&ide_cd_mutex); 1606 1606 info = ide_cd_get(bdev->bd_disk); 1607 1607 if (!info) 1608 1608 goto out; ··· 1611 1611 if (rc < 0) 1612 1612 ide_cd_put(info); 1613 1613 out: 1614 - unlock_kernel(); 1614 + mutex_unlock(&ide_cd_mutex); 1615 1615 return rc; 1616 1616 } 1617 1617 ··· 1619 1619 { 1620 1620 struct cdrom_info *info = ide_drv_g(disk, cdrom_info); 1621 1621 1622 - lock_kernel(); 1622 + mutex_lock(&ide_cd_mutex); 1623 1623 cdrom_release(&info->devinfo, mode); 1624 1624 1625 1625 ide_cd_put(info); 1626 - unlock_kernel(); 1626 + mutex_unlock(&ide_cd_mutex); 1627 1627 1628 1628 return 0; 1629 1629 } ··· 1694 1694 { 1695 1695 int ret; 1696 1696 1697 - lock_kernel(); 1697 + mutex_lock(&ide_cd_mutex); 1698 1698 ret = idecd_locked_ioctl(bdev, mode, cmd, arg); 1699 - unlock_kernel(); 1699 + mutex_unlock(&ide_cd_mutex); 1700 1700 1701 1701 return ret; 1702 1702 }
+4 -3
drivers/ide/ide-disk_ioctl.c
··· 1 1 #include <linux/kernel.h> 2 2 #include <linux/ide.h> 3 3 #include <linux/hdreg.h> 4 - #include <linux/smp_lock.h> 4 + #include <linux/mutex.h> 5 5 6 6 #include "ide-disk.h" 7 7 8 + static DEFINE_MUTEX(ide_disk_ioctl_mutex); 8 9 static const struct ide_ioctl_devset ide_disk_ioctl_settings[] = { 9 10 { HDIO_GET_ADDRESS, HDIO_SET_ADDRESS, &ide_devset_address }, 10 11 { HDIO_GET_MULTCOUNT, HDIO_SET_MULTCOUNT, &ide_devset_multcount }, ··· 20 19 { 21 20 int err; 22 21 23 - lock_kernel(); 22 + mutex_lock(&ide_disk_ioctl_mutex); 24 23 err = ide_setting_ioctl(drive, bdev, cmd, arg, ide_disk_ioctl_settings); 25 24 if (err != -EOPNOTSUPP) 26 25 goto out; 27 26 28 27 err = generic_ide_ioctl(drive, bdev, cmd, arg); 29 28 out: 30 - unlock_kernel(); 29 + mutex_unlock(&ide_disk_ioctl_mutex); 31 30 return err; 32 31 }
+4 -3
drivers/ide/ide-floppy_ioctl.c
··· 5 5 #include <linux/kernel.h> 6 6 #include <linux/ide.h> 7 7 #include <linux/cdrom.h> 8 - #include <linux/smp_lock.h> 8 + #include <linux/mutex.h> 9 9 10 10 #include <asm/unaligned.h> 11 11 ··· 32 32 * On exit we set nformats to the number of records we've actually initialized. 33 33 */ 34 34 35 + static DEFINE_MUTEX(ide_floppy_ioctl_mutex); 35 36 static int ide_floppy_get_format_capacities(ide_drive_t *drive, 36 37 struct ide_atapi_pc *pc, 37 38 int __user *arg) ··· 277 276 void __user *argp = (void __user *)arg; 278 277 int err; 279 278 280 - lock_kernel(); 279 + mutex_lock(&ide_floppy_ioctl_mutex); 281 280 if (cmd == CDROMEJECT || cmd == CDROM_LOCKDOOR) { 282 281 err = ide_floppy_lockdoor(drive, &pc, arg, cmd); 283 282 goto out; ··· 299 298 err = generic_ide_ioctl(drive, bdev, cmd, arg); 300 299 301 300 out: 302 - unlock_kernel(); 301 + mutex_unlock(&ide_floppy_ioctl_mutex); 303 302 return err; 304 303 }
+5 -5
drivers/ide/ide-gd.c
··· 1 - #include <linux/smp_lock.h> 2 1 #include <linux/module.h> 3 2 #include <linux/types.h> 4 3 #include <linux/string.h> ··· 22 23 #define IDE_GD_VERSION "1.18" 23 24 24 25 /* module parameters */ 26 + static DEFINE_MUTEX(ide_gd_mutex); 25 27 static unsigned long debug_mask; 26 28 module_param(debug_mask, ulong, 0644); 27 29 ··· 242 242 { 243 243 int ret; 244 244 245 - lock_kernel(); 245 + mutex_lock(&ide_gd_mutex); 246 246 ret = ide_gd_open(bdev, mode); 247 - unlock_kernel(); 247 + mutex_unlock(&ide_gd_mutex); 248 248 249 249 return ret; 250 250 } ··· 257 257 258 258 ide_debug_log(IDE_DBG_FUNC, "enter"); 259 259 260 - lock_kernel(); 260 + mutex_lock(&ide_gd_mutex); 261 261 if (idkp->openers == 1) 262 262 drive->disk_ops->flush(drive); 263 263 ··· 269 269 idkp->openers--; 270 270 271 271 ide_disk_put(idkp); 272 - unlock_kernel(); 272 + mutex_unlock(&ide_gd_mutex); 273 273 274 274 return 0; 275 275 }
+9 -10
drivers/ide/ide-tape.c
··· 32 32 #include <linux/errno.h> 33 33 #include <linux/genhd.h> 34 34 #include <linux/seq_file.h> 35 - #include <linux/smp_lock.h> 36 35 #include <linux/slab.h> 37 36 #include <linux/pci.h> 38 37 #include <linux/ide.h> 39 - #include <linux/smp_lock.h> 40 38 #include <linux/completion.h> 41 39 #include <linux/bitops.h> 42 40 #include <linux/mutex.h> ··· 218 220 char write_prot; 219 221 } idetape_tape_t; 220 222 223 + static DEFINE_MUTEX(ide_tape_mutex); 221 224 static DEFINE_MUTEX(idetape_ref_mutex); 222 225 223 226 static DEFINE_MUTEX(idetape_chrdev_mutex); ··· 1425 1426 unsigned int cmd, unsigned long arg) 1426 1427 { 1427 1428 long ret; 1428 - lock_kernel(); 1429 + mutex_lock(&ide_tape_mutex); 1429 1430 ret = do_idetape_chrdev_ioctl(file, cmd, arg); 1430 - unlock_kernel(); 1431 + mutex_unlock(&ide_tape_mutex); 1431 1432 return ret; 1432 1433 } 1433 1434 ··· 1908 1909 { 1909 1910 struct ide_tape_obj *tape; 1910 1911 1911 - lock_kernel(); 1912 + mutex_lock(&ide_tape_mutex); 1912 1913 tape = ide_tape_get(bdev->bd_disk, false, 0); 1913 - unlock_kernel(); 1914 + mutex_unlock(&ide_tape_mutex); 1914 1915 1915 1916 if (!tape) 1916 1917 return -ENXIO; ··· 1922 1923 { 1923 1924 struct ide_tape_obj *tape = ide_drv_g(disk, ide_tape_obj); 1924 1925 1925 - lock_kernel(); 1926 + mutex_lock(&ide_tape_mutex); 1926 1927 ide_tape_put(tape); 1927 - unlock_kernel(); 1928 + mutex_unlock(&ide_tape_mutex); 1928 1929 1929 1930 return 0; 1930 1931 } ··· 1936 1937 ide_drive_t *drive = tape->drive; 1937 1938 int err; 1938 1939 1939 - lock_kernel(); 1940 + mutex_lock(&ide_tape_mutex); 1940 1941 err = generic_ide_ioctl(drive, bdev, cmd, arg); 1941 1942 if (err == -EINVAL) 1942 1943 err = idetape_blkdev_ioctl(drive, cmd, arg); 1943 - unlock_kernel(); 1944 + mutex_unlock(&ide_tape_mutex); 1944 1945 1945 1946 return err; 1946 1947 }
+4 -3
drivers/input/misc/hp_sdc_rtc.c
··· 43 43 #include <linux/proc_fs.h> 44 44 #include <linux/poll.h> 45 45 #include <linux/rtc.h> 46 - #include <linux/smp_lock.h> 46 + #include <linux/mutex.h> 47 47 #include <linux/semaphore.h> 48 48 49 49 MODULE_AUTHOR("Brian S. Julin <bri@calyx.com>"); ··· 52 52 53 53 #define RTC_VERSION "1.10d" 54 54 55 + static DEFINE_MUTEX(hp_sdc_rtc_mutex); 55 56 static unsigned long epoch = 2000; 56 57 57 58 static struct semaphore i8042tregs; ··· 666 665 { 667 666 int ret; 668 667 669 - lock_kernel(); 668 + mutex_lock(&hp_sdc_rtc_mutex); 670 669 ret = hp_sdc_rtc_ioctl(file, cmd, arg); 671 - unlock_kernel(); 670 + mutex_unlock(&hp_sdc_rtc_mutex); 672 671 673 672 return ret; 674 673 }
+5 -5
drivers/macintosh/adb.c
··· 24 24 #include <linux/fs.h> 25 25 #include <linux/mm.h> 26 26 #include <linux/sched.h> 27 - #include <linux/smp_lock.h> 28 27 #include <linux/adb.h> 29 28 #include <linux/cuda.h> 30 29 #include <linux/pmu.h> ··· 54 55 extern struct adb_driver via_pmu_driver; 55 56 extern struct adb_driver macio_adb_driver; 56 57 58 + static DEFINE_MUTEX(adb_mutex); 57 59 static struct adb_driver *adb_driver_list[] = { 58 60 #ifdef CONFIG_ADB_MACII 59 61 &via_macii_driver, ··· 647 647 struct adbdev_state *state; 648 648 int ret = 0; 649 649 650 - lock_kernel(); 650 + mutex_lock(&adb_mutex); 651 651 if (iminor(inode) > 0 || adb_controller == NULL) { 652 652 ret = -ENXIO; 653 653 goto out; ··· 665 665 state->inuse = 1; 666 666 667 667 out: 668 - unlock_kernel(); 668 + mutex_unlock(&adb_mutex); 669 669 return ret; 670 670 } 671 671 ··· 674 674 struct adbdev_state *state = file->private_data; 675 675 unsigned long flags; 676 676 677 - lock_kernel(); 677 + mutex_lock(&adb_mutex); 678 678 if (state) { 679 679 file->private_data = NULL; 680 680 spin_lock_irqsave(&state->lock, flags); ··· 687 687 spin_unlock_irqrestore(&state->lock, flags); 688 688 } 689 689 } 690 - unlock_kernel(); 690 + mutex_unlock(&adb_mutex); 691 691 return 0; 692 692 } 693 693
+3 -3
drivers/macintosh/smu.c
··· 19 19 * the userland interface 20 20 */ 21 21 22 - #include <linux/smp_lock.h> 23 22 #include <linux/types.h> 24 23 #include <linux/kernel.h> 25 24 #include <linux/device.h> ··· 96 97 * I don't think there will ever be more than one SMU, so 97 98 * for now, just hard code that 98 99 */ 100 + static DEFINE_MUTEX(smu_mutex); 99 101 static struct smu_device *smu; 100 102 static DEFINE_MUTEX(smu_part_access); 101 103 static int smu_irq_inited; ··· 1095 1095 pp->mode = smu_file_commands; 1096 1096 init_waitqueue_head(&pp->wait); 1097 1097 1098 - lock_kernel(); 1098 + mutex_lock(&smu_mutex); 1099 1099 spin_lock_irqsave(&smu_clist_lock, flags); 1100 1100 list_add(&pp->list, &smu_clist); 1101 1101 spin_unlock_irqrestore(&smu_clist_lock, flags); 1102 1102 file->private_data = pp; 1103 - unlock_kernel(); 1103 + mutex_unlock(&smu_mutex); 1104 1104 1105 1105 return 0; 1106 1106 }
+6 -5
drivers/macintosh/via-pmu.c
··· 18 18 * 19 19 */ 20 20 #include <stdarg.h> 21 - #include <linux/smp_lock.h> 21 + #include <linux/mutex.h> 22 22 #include <linux/types.h> 23 23 #include <linux/errno.h> 24 24 #include <linux/kernel.h> ··· 73 73 /* How many iterations between battery polls */ 74 74 #define BATTERY_POLLING_COUNT 2 75 75 76 + static DEFINE_MUTEX(pmu_info_proc_mutex); 76 77 static volatile unsigned char __iomem *via; 77 78 78 79 /* VIA registers - spaced 0x200 bytes apart */ ··· 2079 2078 pp->rb_get = pp->rb_put = 0; 2080 2079 spin_lock_init(&pp->lock); 2081 2080 init_waitqueue_head(&pp->wait); 2082 - lock_kernel(); 2081 + mutex_lock(&pmu_info_proc_mutex); 2083 2082 spin_lock_irqsave(&all_pvt_lock, flags); 2084 2083 #if defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_PMAC_BACKLIGHT) 2085 2084 pp->backlight_locker = 0; ··· 2087 2086 list_add(&pp->list, &all_pmu_pvt); 2088 2087 spin_unlock_irqrestore(&all_pvt_lock, flags); 2089 2088 file->private_data = pp; 2090 - unlock_kernel(); 2089 + mutex_unlock(&pmu_info_proc_mutex); 2091 2090 return 0; 2092 2091 } 2093 2092 ··· 2344 2343 { 2345 2344 int ret; 2346 2345 2347 - lock_kernel(); 2346 + mutex_lock(&pmu_info_proc_mutex); 2348 2347 ret = pmu_ioctl(filp, cmd, arg); 2349 - unlock_kernel(); 2348 + mutex_unlock(&pmu_info_proc_mutex); 2350 2349 2351 2350 return ret; 2352 2351 }
+5 -5
drivers/md/dm.c
··· 15 15 #include <linux/blkpg.h> 16 16 #include <linux/bio.h> 17 17 #include <linux/buffer_head.h> 18 - #include <linux/smp_lock.h> 19 18 #include <linux/mempool.h> 20 19 #include <linux/slab.h> 21 20 #include <linux/idr.h> ··· 32 33 #define DM_COOKIE_ENV_VAR_NAME "DM_COOKIE" 33 34 #define DM_COOKIE_LENGTH 24 34 35 36 + static DEFINE_MUTEX(dm_mutex); 35 37 static const char *_name = DM_NAME; 36 38 37 39 static unsigned int major = 0; ··· 344 344 { 345 345 struct mapped_device *md; 346 346 347 - lock_kernel(); 347 + mutex_lock(&dm_mutex); 348 348 spin_lock(&_minor_lock); 349 349 350 350 md = bdev->bd_disk->private_data; ··· 362 362 363 363 out: 364 364 spin_unlock(&_minor_lock); 365 - unlock_kernel(); 365 + mutex_unlock(&dm_mutex); 366 366 367 367 return md ? 0 : -ENXIO; 368 368 } ··· 371 371 { 372 372 struct mapped_device *md = disk->private_data; 373 373 374 - lock_kernel(); 374 + mutex_lock(&dm_mutex); 375 375 atomic_dec(&md->open_count); 376 376 dm_put(md); 377 - unlock_kernel(); 377 + mutex_unlock(&dm_mutex); 378 378 379 379 return 0; 380 380 }
+7 -6
drivers/md/md.c
··· 36 36 #include <linux/blkdev.h> 37 37 #include <linux/sysctl.h> 38 38 #include <linux/seq_file.h> 39 - #include <linux/smp_lock.h> 39 + #include <linux/mutex.h> 40 40 #include <linux/buffer_head.h> /* for invalidate_bdev */ 41 41 #include <linux/poll.h> 42 42 #include <linux/ctype.h> ··· 57 57 #define DEBUG 0 58 58 #define dprintk(x...) ((void)(DEBUG && printk(x))) 59 59 60 + static DEFINE_MUTEX(md_mutex); 60 61 61 62 #ifndef MODULE 62 63 static void autostart_arrays(int part); ··· 5952 5951 mddev_t *mddev = mddev_find(bdev->bd_dev); 5953 5952 int err; 5954 5953 5955 - lock_kernel(); 5954 + mutex_lock(&md_mutex); 5956 5955 if (mddev->gendisk != bdev->bd_disk) { 5957 5956 /* we are racing with mddev_put which is discarding this 5958 5957 * bd_disk. ··· 5961 5960 /* Wait until bdev->bd_disk is definitely gone */ 5962 5961 flush_scheduled_work(); 5963 5962 /* Then retry the open from the top */ 5964 - unlock_kernel(); 5963 + mutex_unlock(&md_mutex); 5965 5964 return -ERESTARTSYS; 5966 5965 } 5967 5966 BUG_ON(mddev != bdev->bd_disk->private_data); ··· 5975 5974 5976 5975 check_disk_size_change(mddev->gendisk, bdev); 5977 5976 out: 5978 - unlock_kernel(); 5977 + mutex_unlock(&md_mutex); 5979 5978 return err; 5980 5979 } 5981 5980 ··· 5984 5983 mddev_t *mddev = disk->private_data; 5985 5984 5986 5985 BUG_ON(!mddev); 5987 - lock_kernel(); 5986 + mutex_lock(&md_mutex); 5988 5987 atomic_dec(&mddev->openers); 5989 5988 mddev_put(mddev); 5990 - unlock_kernel(); 5989 + mutex_unlock(&md_mutex); 5991 5990 5992 5991 return 0; 5993 5992 }
+6 -5
drivers/memstick/core/mspro_block.c
··· 18 18 #include <linux/kthread.h> 19 19 #include <linux/delay.h> 20 20 #include <linux/slab.h> 21 - #include <linux/smp_lock.h> 21 + #include <linux/mutex.h> 22 22 #include <linux/memstick.h> 23 23 24 24 #define DRIVER_NAME "mspro_block" 25 25 26 + static DEFINE_MUTEX(mspro_block_mutex); 26 27 static int major; 27 28 module_param(major, int, 0644); 28 29 ··· 181 180 struct mspro_block_data *msb = disk->private_data; 182 181 int rc = -ENXIO; 183 182 184 - lock_kernel(); 183 + mutex_lock(&mspro_block_mutex); 185 184 mutex_lock(&mspro_block_disk_lock); 186 185 187 186 if (msb && msb->card) { ··· 193 192 } 194 193 195 194 mutex_unlock(&mspro_block_disk_lock); 196 - unlock_kernel(); 195 + mutex_unlock(&mspro_block_mutex); 197 196 198 197 return rc; 199 198 } ··· 226 225 static int mspro_block_bd_release(struct gendisk *disk, fmode_t mode) 227 226 { 228 227 int ret; 229 - lock_kernel(); 228 + mutex_lock(&mspro_block_mutex); 230 229 ret = mspro_block_disk_release(disk); 231 - unlock_kernel(); 230 + mutex_unlock(&mspro_block_mutex); 232 231 return ret; 233 232 } 234 233
+8 -7
drivers/message/fusion/mptctl.c
··· 54 54 #include <linux/pci.h> 55 55 #include <linux/delay.h> /* for mdelay */ 56 56 #include <linux/miscdevice.h> 57 - #include <linux/smp_lock.h> 57 + #include <linux/mutex.h> 58 58 #include <linux/compat.h> 59 59 60 60 #include <asm/io.h> ··· 83 83 84 84 /*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/ 85 85 86 + static DEFINE_MUTEX(mpctl_mutex); 86 87 static u8 mptctl_id = MPT_MAX_PROTOCOL_DRIVERS; 87 88 static u8 mptctl_taskmgmt_id = MPT_MAX_PROTOCOL_DRIVERS; 88 89 ··· 602 601 MPT_ADAPTER *ioc; 603 602 int ret; 604 603 605 - lock_kernel(); 604 + mutex_lock(&mpctl_mutex); 606 605 list_for_each_entry(ioc, &ioc_list, list) 607 606 ioc->aen_event_read_flag=0; 608 607 609 608 ret = fasync_helper(fd, filep, mode, &async_queue); 610 - unlock_kernel(); 609 + mutex_unlock(&mpctl_mutex); 611 610 return ret; 612 611 } 613 612 ··· 699 698 mptctl_ioctl(struct file *file, unsigned int cmd, unsigned long arg) 700 699 { 701 700 long ret; 702 - lock_kernel(); 701 + mutex_lock(&mpctl_mutex); 703 702 ret = __mptctl_ioctl(file, cmd, arg); 704 - unlock_kernel(); 703 + mutex_unlock(&mpctl_mutex); 705 704 return ret; 706 705 } 707 706 ··· 2927 2926 static long compat_mpctl_ioctl(struct file *f, unsigned int cmd, unsigned long arg) 2928 2927 { 2929 2928 long ret; 2930 - lock_kernel(); 2929 + mutex_lock(&mpctl_mutex); 2931 2930 switch (cmd) { 2932 2931 case MPTIOCINFO: 2933 2932 case MPTIOCINFO1: ··· 2952 2951 ret = -ENOIOCTLCMD; 2953 2952 break; 2954 2953 } 2955 - unlock_kernel(); 2954 + mutex_unlock(&mpctl_mutex); 2956 2955 return ret; 2957 2956 } 2958 2957
+8 -7
drivers/message/i2o/i2o_block.c
··· 53 53 #include <linux/module.h> 54 54 #include <linux/slab.h> 55 55 #include <linux/i2o.h> 56 - #include <linux/smp_lock.h> 56 + #include <linux/mutex.h> 57 57 58 58 #include <linux/mempool.h> 59 59 ··· 69 69 #define OSM_VERSION "1.325" 70 70 #define OSM_DESCRIPTION "I2O Block Device OSM" 71 71 72 + static DEFINE_MUTEX(i2o_block_mutex); 72 73 static struct i2o_driver i2o_block_driver; 73 74 74 75 /* global Block OSM request mempool */ ··· 579 578 if (!dev->i2o_dev) 580 579 return -ENODEV; 581 580 582 - lock_kernel(); 581 + mutex_lock(&i2o_block_mutex); 583 582 if (dev->power > 0x1f) 584 583 i2o_block_device_power(dev, 0x02); 585 584 ··· 588 587 i2o_block_device_lock(dev->i2o_dev, -1); 589 588 590 589 osm_debug("Ready.\n"); 591 - unlock_kernel(); 590 + mutex_unlock(&i2o_block_mutex); 592 591 593 592 return 0; 594 593 }; ··· 619 618 if (!dev->i2o_dev) 620 619 return 0; 621 620 622 - lock_kernel(); 621 + mutex_lock(&i2o_block_mutex); 623 622 i2o_block_device_flush(dev->i2o_dev); 624 623 625 624 i2o_block_device_unlock(dev->i2o_dev, -1); ··· 630 629 operation = 0x24; 631 630 632 631 i2o_block_device_power(dev, operation); 633 - unlock_kernel(); 632 + mutex_unlock(&i2o_block_mutex); 634 633 635 634 return 0; 636 635 } ··· 665 664 if (!capable(CAP_SYS_ADMIN)) 666 665 return -EPERM; 667 666 668 - lock_kernel(); 667 + mutex_lock(&i2o_block_mutex); 669 668 switch (cmd) { 670 669 case BLKI2OGRSTRAT: 671 670 ret = put_user(dev->rcache, (int __user *)arg); ··· 689 688 ret = 0; 690 689 break; 691 690 } 692 - unlock_kernel(); 691 + mutex_unlock(&i2o_block_mutex); 693 692 694 693 return ret; 695 694 };
+12 -11
drivers/message/i2o/i2o_config.c
··· 31 31 */ 32 32 33 33 #include <linux/miscdevice.h> 34 - #include <linux/smp_lock.h> 34 + #include <linux/mutex.h> 35 35 #include <linux/compat.h> 36 36 #include <linux/slab.h> 37 37 ··· 41 41 42 42 #define SG_TABLESIZE 30 43 43 44 + static DEFINE_MUTEX(i2o_cfg_mutex); 44 45 static long i2o_cfg_ioctl(struct file *, unsigned int, unsigned long); 45 46 46 47 static spinlock_t i2o_config_lock; ··· 742 741 unsigned long arg) 743 742 { 744 743 int ret; 745 - lock_kernel(); 744 + mutex_lock(&i2o_cfg_mutex); 746 745 switch (cmd) { 747 746 case I2OGETIOPS: 748 747 ret = i2o_cfg_ioctl(file, cmd, arg); ··· 754 753 ret = -ENOIOCTLCMD; 755 754 break; 756 755 } 757 - unlock_kernel(); 756 + mutex_unlock(&i2o_cfg_mutex); 758 757 return ret; 759 758 } 760 759 ··· 982 981 { 983 982 int ret; 984 983 985 - lock_kernel(); 984 + mutex_lock(&i2o_cfg_mutex); 986 985 switch (cmd) { 987 986 case I2OGETIOPS: 988 987 ret = i2o_cfg_getiops(arg); ··· 1038 1037 osm_debug("unknown ioctl called!\n"); 1039 1038 ret = -EINVAL; 1040 1039 } 1041 - unlock_kernel(); 1040 + mutex_unlock(&i2o_cfg_mutex); 1042 1041 return ret; 1043 1042 } 1044 1043 ··· 1052 1051 if (!tmp) 1053 1052 return -ENOMEM; 1054 1053 1055 - lock_kernel(); 1054 + mutex_lock(&i2o_cfg_mutex); 1056 1055 file->private_data = (void *)(i2o_cfg_info_id++); 1057 1056 tmp->fp = file; 1058 1057 tmp->fasync = NULL; ··· 1066 1065 spin_lock_irqsave(&i2o_config_lock, flags); 1067 1066 open_files = tmp; 1068 1067 spin_unlock_irqrestore(&i2o_config_lock, flags); 1069 - unlock_kernel(); 1068 + mutex_unlock(&i2o_cfg_mutex); 1070 1069 1071 1070 return 0; 1072 1071 } ··· 1077 1076 struct i2o_cfg_info *p; 1078 1077 int ret = -EBADF; 1079 1078 1080 - lock_kernel(); 1079 + mutex_lock(&i2o_cfg_mutex); 1081 1080 for (p = open_files; p; p = p->next) 1082 1081 if (p->q_id == id) 1083 1082 break; 1084 1083 1085 1084 if (p) 1086 1085 ret = fasync_helper(fd, fp, on, &p->fasync); 1087 - unlock_kernel(); 1086 + mutex_unlock(&i2o_cfg_mutex); 1088 1087 return ret; 1089 1088 } 1090 1089 ··· 1094 1093 struct i2o_cfg_info *p, **q; 1095 1094 unsigned long flags; 1096 1095 1097 - lock_kernel(); 1096 + mutex_lock(&i2o_cfg_mutex); 1098 1097 spin_lock_irqsave(&i2o_config_lock, flags); 1099 1098 for (q = &open_files; (p = *q) != NULL; q = &p->next) { 1100 1099 if (p->q_id == id) { ··· 1104 1103 } 1105 1104 } 1106 1105 spin_unlock_irqrestore(&i2o_config_lock, flags); 1107 - unlock_kernel(); 1106 + mutex_unlock(&i2o_cfg_mutex); 1108 1107 1109 1108 return 0; 1110 1109 }
+6 -5
drivers/misc/phantom.c
··· 24 24 #include <linux/slab.h> 25 25 #include <linux/phantom.h> 26 26 #include <linux/sched.h> 27 - #include <linux/smp_lock.h> 27 + #include <linux/mutex.h> 28 28 29 29 #include <asm/atomic.h> 30 30 #include <asm/io.h> ··· 38 38 #define PHB_RUNNING 1 39 39 #define PHB_NOT_OH 2 40 40 41 + static DEFINE_MUTEX(phantom_mutex); 41 42 static struct class *phantom_class; 42 43 static int phantom_major; 43 44 ··· 216 215 struct phantom_device *dev = container_of(inode->i_cdev, 217 216 struct phantom_device, cdev); 218 217 219 - lock_kernel(); 218 + mutex_lock(&phantom_mutex); 220 219 nonseekable_open(inode, file); 221 220 222 221 if (mutex_lock_interruptible(&dev->open_lock)) { 223 - unlock_kernel(); 222 + mutex_unlock(&phantom_mutex); 224 223 return -ERESTARTSYS; 225 224 } 226 225 227 226 if (dev->opened) { 228 227 mutex_unlock(&dev->open_lock); 229 - unlock_kernel(); 228 + mutex_unlock(&phantom_mutex); 230 229 return -EINVAL; 231 230 } 232 231 ··· 237 236 atomic_set(&dev->counter, 0); 238 237 dev->opened++; 239 238 mutex_unlock(&dev->open_lock); 240 - unlock_kernel(); 239 + mutex_unlock(&phantom_mutex); 241 240 return 0; 242 241 } 243 242
+5 -5
drivers/mmc/card/block.c
··· 29 29 #include <linux/kdev_t.h> 30 30 #include <linux/blkdev.h> 31 31 #include <linux/mutex.h> 32 - #include <linux/smp_lock.h> 33 32 #include <linux/scatterlist.h> 34 33 #include <linux/string_helpers.h> 35 34 ··· 50 51 #define MMC_SHIFT 3 51 52 #define MMC_NUM_MINORS (256 >> MMC_SHIFT) 52 53 54 + static DEFINE_MUTEX(block_mutex); 53 55 static DECLARE_BITMAP(dev_use, MMC_NUM_MINORS); 54 56 55 57 /* ··· 108 108 struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk); 109 109 int ret = -ENXIO; 110 110 111 - lock_kernel(); 111 + mutex_lock(&block_mutex); 112 112 if (md) { 113 113 if (md->usage == 2) 114 114 check_disk_change(bdev); ··· 119 119 ret = -EROFS; 120 120 } 121 121 } 122 - unlock_kernel(); 122 + mutex_unlock(&block_mutex); 123 123 124 124 return ret; 125 125 } ··· 128 128 { 129 129 struct mmc_blk_data *md = disk->private_data; 130 130 131 - lock_kernel(); 131 + mutex_lock(&block_mutex); 132 132 mmc_blk_put(md); 133 - unlock_kernel(); 133 + mutex_unlock(&block_mutex); 134 134 return 0; 135 135 } 136 136
+7 -7
drivers/mtd/mtd_blkdevs.c
··· 29 29 #include <linux/blkdev.h> 30 30 #include <linux/blkpg.h> 31 31 #include <linux/spinlock.h> 32 - #include <linux/smp_lock.h> 33 32 #include <linux/hdreg.h> 34 33 #include <linux/init.h> 35 34 #include <linux/mutex.h> ··· 37 38 38 39 #include "mtdcore.h" 39 40 41 + static DEFINE_MUTEX(mtd_blkdevs_mutex); 40 42 static LIST_HEAD(blktrans_majors); 41 43 static DEFINE_MUTEX(blktrans_ref_mutex); 42 44 ··· 181 181 if (!dev) 182 182 return -ERESTARTSYS; /* FIXME: busy loop! -arnd*/ 183 183 184 - lock_kernel(); 184 + mutex_lock(&mtd_blkdevs_mutex); 185 185 mutex_lock(&dev->lock); 186 186 187 187 if (!dev->mtd) { ··· 198 198 unlock: 199 199 mutex_unlock(&dev->lock); 200 200 blktrans_dev_put(dev); 201 - unlock_kernel(); 201 + mutex_unlock(&mtd_blkdevs_mutex); 202 202 return ret; 203 203 } 204 204 ··· 210 210 if (!dev) 211 211 return ret; 212 212 213 - lock_kernel(); 213 + mutex_lock(&mtd_blkdevs_mutex); 214 214 mutex_lock(&dev->lock); 215 215 216 216 /* Release one reference, we sure its not the last one here*/ ··· 223 223 unlock: 224 224 mutex_unlock(&dev->lock); 225 225 blktrans_dev_put(dev); 226 - unlock_kernel(); 226 + mutex_unlock(&mtd_blkdevs_mutex); 227 227 return ret; 228 228 } 229 229 ··· 256 256 if (!dev) 257 257 return ret; 258 258 259 - lock_kernel(); 259 + mutex_lock(&mtd_blkdevs_mutex); 260 260 mutex_lock(&dev->lock); 261 261 262 262 if (!dev->mtd) ··· 271 271 } 272 272 unlock: 273 273 mutex_unlock(&dev->lock); 274 - unlock_kernel(); 274 + mutex_unlock(&mtd_blkdevs_mutex); 275 275 blktrans_dev_put(dev); 276 276 return ret; 277 277 }
+8 -7
drivers/mtd/mtdchar.c
··· 26 26 #include <linux/module.h> 27 27 #include <linux/slab.h> 28 28 #include <linux/sched.h> 29 - #include <linux/smp_lock.h> 29 + #include <linux/mutex.h> 30 30 #include <linux/backing-dev.h> 31 31 #include <linux/compat.h> 32 32 #include <linux/mount.h> ··· 37 37 #include <asm/uaccess.h> 38 38 39 39 #define MTD_INODE_FS_MAGIC 0x11307854 40 + static DEFINE_MUTEX(mtd_mutex); 40 41 static struct vfsmount *mtd_inode_mnt __read_mostly; 41 42 42 43 /* ··· 91 90 if ((file->f_mode & FMODE_WRITE) && (minor & 1)) 92 91 return -EACCES; 93 92 94 - lock_kernel(); 93 + mutex_lock(&mtd_mutex); 95 94 mtd = get_mtd_device(NULL, devnum); 96 95 97 96 if (IS_ERR(mtd)) { ··· 139 138 file->private_data = mfi; 140 139 141 140 out: 142 - unlock_kernel(); 141 + mutex_unlock(&mtd_mutex); 143 142 return ret; 144 143 } /* mtd_open */ 145 144 ··· 867 866 { 868 867 int ret; 869 868 870 - lock_kernel(); 869 + mutex_lock(&mtd_mutex); 871 870 ret = mtd_ioctl(file, cmd, arg); 872 - unlock_kernel(); 871 + mutex_unlock(&mtd_mutex); 873 872 874 873 return ret; 875 874 } ··· 893 892 void __user *argp = compat_ptr(arg); 894 893 int ret = 0; 895 894 896 - lock_kernel(); 895 + mutex_lock(&mtd_mutex); 897 896 898 897 switch (cmd) { 899 898 case MEMWRITEOOB32: ··· 928 927 ret = mtd_ioctl(file, cmd, (unsigned long)argp); 929 928 } 930 929 931 - unlock_kernel(); 930 + mutex_unlock(&mtd_mutex); 932 931 933 932 return ret; 934 933 }
+7 -6
drivers/pci/hotplug/cpqphp_sysfs.c
··· 34 34 #include <linux/workqueue.h> 35 35 #include <linux/pci.h> 36 36 #include <linux/pci_hotplug.h> 37 - #include <linux/smp_lock.h> 37 + #include <linux/mutex.h> 38 38 #include <linux/debugfs.h> 39 39 #include "cpqphp.h" 40 40 41 + static DEFINE_MUTEX(cpqphp_mutex); 41 42 static int show_ctrl (struct controller *ctrl, char *buf) 42 43 { 43 44 char *out = buf; ··· 148 147 struct ctrl_dbg *dbg; 149 148 int retval = -ENOMEM; 150 149 151 - lock_kernel(); 150 + mutex_lock(&cpqphp_mutex); 152 151 dbg = kmalloc(sizeof(*dbg), GFP_KERNEL); 153 152 if (!dbg) 154 153 goto exit; ··· 161 160 file->private_data = dbg; 162 161 retval = 0; 163 162 exit: 164 - unlock_kernel(); 163 + mutex_unlock(&cpqphp_mutex); 165 164 return retval; 166 165 } 167 166 ··· 170 169 struct ctrl_dbg *dbg; 171 170 loff_t new = -1; 172 171 173 - lock_kernel(); 172 + mutex_lock(&cpqphp_mutex); 174 173 dbg = file->private_data; 175 174 176 175 switch (whence) { ··· 182 181 break; 183 182 } 184 183 if (new < 0 || new > dbg->size) { 185 - unlock_kernel(); 184 + mutex_unlock(&cpqphp_mutex); 186 185 return -EINVAL; 187 186 } 188 - unlock_kernel(); 187 + mutex_unlock(&cpqphp_mutex); 189 188 return (file->f_pos = new); 190 189 } 191 190
+7 -6
drivers/rtc/rtc-m41t80.c
··· 20 20 #include <linux/module.h> 21 21 #include <linux/rtc.h> 22 22 #include <linux/slab.h> 23 - #include <linux/smp_lock.h> 23 + #include <linux/mutex.h> 24 24 #include <linux/string.h> 25 25 #ifdef CONFIG_RTC_DRV_M41T80_WDT 26 26 #include <linux/fs.h> ··· 68 68 69 69 #define DRV_VERSION "0.05" 70 70 71 + static DEFINE_MUTEX(m41t80_rtc_mutex); 71 72 static const struct i2c_device_id m41t80_id[] = { 72 73 { "m41t62", M41T80_FEATURE_SQ | M41T80_FEATURE_SQ_ALT }, 73 74 { "m41t65", M41T80_FEATURE_HT | M41T80_FEATURE_WD }, ··· 678 677 { 679 678 int ret; 680 679 681 - lock_kernel(); 680 + mutex_lock(&m41t80_rtc_mutex); 682 681 ret = wdt_ioctl(file, cmd, arg); 683 - unlock_kernel(); 682 + mutex_unlock(&m41t80_rtc_mutex); 684 683 685 684 return ret; 686 685 } ··· 694 693 static int wdt_open(struct inode *inode, struct file *file) 695 694 { 696 695 if (MINOR(inode->i_rdev) == WATCHDOG_MINOR) { 697 - lock_kernel(); 696 + mutex_lock(&m41t80_rtc_mutex); 698 697 if (test_and_set_bit(0, &wdt_is_open)) { 699 - unlock_kernel(); 698 + mutex_unlock(&m41t80_rtc_mutex); 700 699 return -EBUSY; 701 700 } 702 701 /* 703 702 * Activate 704 703 */ 705 704 wdt_is_open = 1; 706 - unlock_kernel(); 705 + mutex_unlock(&m41t80_rtc_mutex); 707 706 return nonseekable_open(inode, file); 708 707 } 709 708 return -ENODEV;
+7 -6
drivers/s390/char/tape_block.c
··· 16 16 #include <linux/fs.h> 17 17 #include <linux/module.h> 18 18 #include <linux/blkdev.h> 19 - #include <linux/smp_lock.h> 19 + #include <linux/mutex.h> 20 20 #include <linux/interrupt.h> 21 21 #include <linux/buffer_head.h> 22 22 #include <linux/kernel.h> ··· 45 45 /* 46 46 * file operation structure for tape block frontend 47 47 */ 48 + static DEFINE_MUTEX(tape_block_mutex); 48 49 static int tapeblock_open(struct block_device *, fmode_t); 49 50 static int tapeblock_release(struct gendisk *, fmode_t); 50 51 static int tapeblock_medium_changed(struct gendisk *); ··· 362 361 struct tape_device * device; 363 362 int rc; 364 363 365 - lock_kernel(); 364 + mutex_lock(&tape_block_mutex); 366 365 device = tape_get_device(disk->private_data); 367 366 368 367 if (device->required_tapemarks) { ··· 386 385 * is called. 387 386 */ 388 387 tape_state_set(device, TS_BLKUSE); 389 - unlock_kernel(); 388 + mutex_unlock(&tape_block_mutex); 390 389 return 0; 391 390 392 391 release: 393 392 tape_release(device); 394 393 put_device: 395 394 tape_put_device(device); 396 - unlock_kernel(); 395 + mutex_unlock(&tape_block_mutex); 397 396 return rc; 398 397 } 399 398 ··· 408 407 { 409 408 struct tape_device *device = disk->private_data; 410 409 411 - lock_kernel(); 410 + mutex_lock(&tape_block_mutex); 412 411 tape_state_set(device, TS_IN_USE); 413 412 tape_release(device); 414 413 tape_put_device(device); 415 - unlock_kernel(); 414 + mutex_unlock(&tape_block_mutex); 416 415 417 416 return 0; 418 417 }
+13 -11
drivers/sbus/char/jsflash.c
··· 27 27 */ 28 28 29 29 #include <linux/module.h> 30 - #include <linux/smp_lock.h> 30 + #include <linux/mutex.h> 31 31 #include <linux/types.h> 32 32 #include <linux/errno.h> 33 33 #include <linux/miscdevice.h> ··· 67 67 #define JSF_NPART 3 /* 3 minors per flash device */ 68 68 #define JSF_PART_BITS 2 /* 2 bits of minors to cover JSF_NPART */ 69 69 #define JSF_PART_MASK 0x3 /* 2 bits mask */ 70 + 71 + static DEFINE_MUTEX(jsf_mutex); 70 72 71 73 /* 72 74 * Access functions. ··· 227 225 { 228 226 loff_t ret; 229 227 230 - lock_kernel(); 228 + mutex_lock(&jsf_mutex); 231 229 switch (orig) { 232 230 case 0: 233 231 file->f_pos = offset; ··· 240 238 default: 241 239 ret = -EINVAL; 242 240 } 243 - unlock_kernel(); 241 + mutex_unlock(&jsf_mutex); 244 242 return ret; 245 243 } 246 244 ··· 386 384 387 385 static long jsf_ioctl(struct file *f, unsigned int cmd, unsigned long arg) 388 386 { 389 - lock_kernel(); 387 + mutex_lock(&jsf_mutex); 390 388 int error = -ENOTTY; 391 389 void __user *argp = (void __user *)arg; 392 390 393 391 if (!capable(CAP_SYS_ADMIN)) { 394 - unlock_kernel(); 392 + mutex_unlock(&jsf_mutex); 395 393 return -EPERM; 396 394 } 397 395 switch (cmd) { 398 396 case JSFLASH_IDENT: 399 397 if (copy_to_user(argp, &jsf0.id, JSFIDSZ)) { 400 - unlock_kernel(); 398 + mutex_unlock(&jsf_mutex); 401 399 return -EFAULT; 402 400 } 403 401 break; ··· 409 407 break; 410 408 } 411 409 412 - unlock_kernel(); 410 + mutex_unlock(&jsf_mutex); 413 411 return error; 414 412 } 415 413 ··· 420 418 421 419 static int jsf_open(struct inode * inode, struct file * filp) 422 420 { 423 - lock_kernel(); 421 + mutex_lock(&jsf_mutex); 424 422 if (jsf0.base == 0) { 425 - unlock_kernel(); 423 + mutex_unlock(&jsf_mutex); 426 424 return -ENXIO; 427 425 } 428 426 if (test_and_set_bit(0, (void *)&jsf0.busy) != 0) { 429 - unlock_kernel(); 427 + mutex_unlock(&jsf_mutex); 430 428 return -EBUSY; 431 429 } 432 430 433 - unlock_kernel(); 431 + mutex_unlock(&jsf_mutex); 434 432 return 0; /* XXX What security? */ 435 433 } 436 434
+3 -4
drivers/scsi/3w-9xxx.c
··· 92 92 #include <linux/pci.h> 93 93 #include <linux/time.h> 94 94 #include <linux/mutex.h> 95 - #include <linux/smp_lock.h> 96 95 #include <linux/slab.h> 97 96 #include <asm/io.h> 98 97 #include <asm/irq.h> ··· 104 105 105 106 /* Globals */ 106 107 #define TW_DRIVER_VERSION "2.26.02.014" 108 + static DEFINE_MUTEX(twa_chrdev_mutex); 107 109 static TW_Device_Extension *twa_device_extension_list[TW_MAX_SLOT]; 108 110 static unsigned int twa_device_extension_count; 109 111 static int twa_major = -1; ··· 658 658 int retval = TW_IOCTL_ERROR_OS_EFAULT; 659 659 void __user *argp = (void __user *)arg; 660 660 661 - lock_kernel(); 661 + mutex_lock(&twa_chrdev_mutex); 662 662 663 663 /* Only let one of these through at a time */ 664 664 if (mutex_lock_interruptible(&tw_dev->ioctl_lock)) { ··· 879 879 out2: 880 880 mutex_unlock(&tw_dev->ioctl_lock); 881 881 out: 882 - unlock_kernel(); 882 + mutex_unlock(&twa_chrdev_mutex); 883 883 return retval; 884 884 } /* End twa_chrdev_ioctl() */ 885 885 ··· 890 890 unsigned int minor_number; 891 891 int retval = TW_IOCTL_ERROR_OS_ENODEV; 892 892 893 - cycle_kernel_lock(); 894 893 minor_number = iminor(inode); 895 894 if (minor_number >= twa_device_extension_count) 896 895 goto out;
+3 -4
drivers/scsi/3w-sas.c
··· 64 64 #include <linux/pci.h> 65 65 #include <linux/time.h> 66 66 #include <linux/mutex.h> 67 - #include <linux/smp_lock.h> 68 67 #include <linux/slab.h> 69 68 #include <asm/io.h> 70 69 #include <asm/irq.h> ··· 76 77 77 78 /* Globals */ 78 79 #define TW_DRIVER_VERSION "3.26.02.000" 80 + static DEFINE_MUTEX(twl_chrdev_mutex); 79 81 static TW_Device_Extension *twl_device_extension_list[TW_MAX_SLOT]; 80 82 static unsigned int twl_device_extension_count; 81 83 static int twl_major = -1; ··· 764 764 int retval = -EFAULT; 765 765 void __user *argp = (void __user *)arg; 766 766 767 - lock_kernel(); 767 + mutex_lock(&twl_chrdev_mutex); 768 768 769 769 /* Only let one of these through at a time */ 770 770 if (mutex_lock_interruptible(&tw_dev->ioctl_lock)) { ··· 861 861 out2: 862 862 mutex_unlock(&tw_dev->ioctl_lock); 863 863 out: 864 - unlock_kernel(); 864 + mutex_unlock(&twl_chrdev_mutex); 865 865 return retval; 866 866 } /* End twl_chrdev_ioctl() */ 867 867 ··· 876 876 goto out; 877 877 } 878 878 879 - cycle_kernel_lock(); 880 879 minor_number = iminor(inode); 881 880 if (minor_number >= twl_device_extension_count) 882 881 goto out;
+4 -5
drivers/scsi/3w-xxxx.c
··· 199 199 200 200 #include <linux/module.h> 201 201 #include <linux/reboot.h> 202 - #include <linux/smp_lock.h> 203 202 #include <linux/spinlock.h> 204 203 #include <linux/interrupt.h> 205 204 #include <linux/moduleparam.h> ··· 220 221 221 222 /* Globals */ 222 223 #define TW_DRIVER_VERSION "1.26.02.003" 224 + static DEFINE_MUTEX(tw_mutex); 223 225 static TW_Device_Extension *tw_device_extension_list[TW_MAX_SLOT]; 224 226 static int tw_device_extension_count = 0; 225 227 static int twe_major = -1; ··· 900 900 901 901 dprintk(KERN_WARNING "3w-xxxx: tw_chrdev_ioctl()\n"); 902 902 903 - lock_kernel(); 903 + mutex_lock(&tw_mutex); 904 904 /* Only let one of these through at a time */ 905 905 if (mutex_lock_interruptible(&tw_dev->ioctl_lock)) { 906 - unlock_kernel(); 906 + mutex_unlock(&tw_mutex); 907 907 return -EINTR; 908 908 } 909 909 ··· 1034 1034 dma_free_coherent(&tw_dev->tw_pci_dev->dev, data_buffer_length_adjusted+sizeof(TW_New_Ioctl) - 1, cpu_addr, dma_handle); 1035 1035 out: 1036 1036 mutex_unlock(&tw_dev->ioctl_lock); 1037 - unlock_kernel(); 1037 + mutex_unlock(&tw_mutex); 1038 1038 return retval; 1039 1039 } /* End tw_chrdev_ioctl() */ 1040 1040 ··· 1044 1044 { 1045 1045 unsigned int minor_number; 1046 1046 1047 - cycle_kernel_lock(); 1048 1047 dprintk(KERN_WARNING "3w-xxxx: tw_ioctl_open()\n"); 1049 1048 1050 1049 minor_number = iminor(inode);
+8 -7
drivers/scsi/aacraid/linit.c
··· 38 38 #include <linux/moduleparam.h> 39 39 #include <linux/pci.h> 40 40 #include <linux/slab.h> 41 - #include <linux/smp_lock.h> 41 + #include <linux/mutex.h> 42 42 #include <linux/spinlock.h> 43 43 #include <linux/syscalls.h> 44 44 #include <linux/delay.h> ··· 76 76 MODULE_LICENSE("GPL"); 77 77 MODULE_VERSION(AAC_DRIVER_FULL_VERSION); 78 78 79 + static DEFINE_MUTEX(aac_mutex); 79 80 static LIST_HEAD(aac_devices); 80 81 static int aac_cfg_major = -1; 81 82 char aac_driver_version[] = AAC_DRIVER_FULL_VERSION; ··· 679 678 unsigned minor_number = iminor(inode); 680 679 int err = -ENODEV; 681 680 682 - lock_kernel(); /* BKL pushdown: nothing else protects this list */ 681 + mutex_lock(&aac_mutex); /* BKL pushdown: nothing else protects this list */ 683 682 list_for_each_entry(aac, &aac_devices, entry) { 684 683 if (aac->id == minor_number) { 685 684 file->private_data = aac; ··· 687 686 break; 688 687 } 689 688 } 690 - unlock_kernel(); 689 + mutex_unlock(&aac_mutex); 691 690 692 691 return err; 693 692 } ··· 712 711 int ret; 713 712 if (!capable(CAP_SYS_RAWIO)) 714 713 return -EPERM; 715 - lock_kernel(); 714 + mutex_lock(&aac_mutex); 716 715 ret = aac_do_ioctl(file->private_data, cmd, (void __user *)arg); 717 - unlock_kernel(); 716 + mutex_unlock(&aac_mutex); 718 717 719 718 return ret; 720 719 } ··· 723 722 static long aac_compat_do_ioctl(struct aac_dev *dev, unsigned cmd, unsigned long arg) 724 723 { 725 724 long ret; 726 - lock_kernel(); 725 + mutex_lock(&aac_mutex); 727 726 switch (cmd) { 728 727 case FSACTL_MINIPORT_REV_CHECK: 729 728 case FSACTL_SENDFIB: ··· 757 756 ret = -ENOIOCTLCMD; 758 757 break; 759 758 } 760 - unlock_kernel(); 759 + mutex_unlock(&aac_mutex); 761 760 return ret; 762 761 } 763 762
+4 -4
drivers/scsi/ch.c
··· 22 22 #include <linux/chio.h> /* here are all the ioctls */ 23 23 #include <linux/mutex.h> 24 24 #include <linux/idr.h> 25 - #include <linux/smp_lock.h> 26 25 #include <linux/slab.h> 27 26 28 27 #include <scsi/scsi.h> ··· 43 44 MODULE_ALIAS_CHARDEV_MAJOR(SCSI_CHANGER_MAJOR); 44 45 MODULE_ALIAS_SCSI_DEVICE(TYPE_MEDIUM_CHANGER); 45 46 47 + static DEFINE_MUTEX(ch_mutex); 46 48 static int init = 1; 47 49 module_param(init, int, 0444); 48 50 MODULE_PARM_DESC(init, \ ··· 581 581 scsi_changer *ch; 582 582 int minor = iminor(inode); 583 583 584 - lock_kernel(); 584 + mutex_lock(&ch_mutex); 585 585 spin_lock(&ch_index_lock); 586 586 ch = idr_find(&ch_index_idr, minor); 587 587 588 588 if (NULL == ch || scsi_device_get(ch->device)) { 589 589 spin_unlock(&ch_index_lock); 590 - unlock_kernel(); 590 + mutex_unlock(&ch_mutex); 591 591 return -ENXIO; 592 592 } 593 593 spin_unlock(&ch_index_lock); 594 594 595 595 file->private_data = ch; 596 - unlock_kernel(); 596 + mutex_unlock(&ch_mutex); 597 597 return 0; 598 598 } 599 599
+9 -9
drivers/scsi/dpt_i2o.c
··· 49 49 #include <linux/kernel.h> /* for printk */ 50 50 #include <linux/sched.h> 51 51 #include <linux/reboot.h> 52 - #include <linux/smp_lock.h> 53 52 #include <linux/spinlock.h> 54 53 #include <linux/dma-mapping.h> 55 54 ··· 75 76 * Needed for our management apps 76 77 *============================================================================ 77 78 */ 79 + static DEFINE_MUTEX(adpt_mutex); 78 80 static dpt_sig_S DPTI_sig = { 79 81 {'d', 'P', 't', 'S', 'i', 'G'}, SIG_VERSION, 80 82 #ifdef __i386__ ··· 1732 1732 int minor; 1733 1733 adpt_hba* pHba; 1734 1734 1735 - lock_kernel(); 1735 + mutex_lock(&adpt_mutex); 1736 1736 //TODO check for root access 1737 1737 // 1738 1738 minor = iminor(inode); 1739 1739 if (minor >= hba_count) { 1740 - unlock_kernel(); 1740 + mutex_unlock(&adpt_mutex); 1741 1741 return -ENXIO; 1742 1742 } 1743 1743 mutex_lock(&adpt_configuration_lock); ··· 1748 1748 } 1749 1749 if (pHba == NULL) { 1750 1750 mutex_unlock(&adpt_configuration_lock); 1751 - unlock_kernel(); 1751 + mutex_unlock(&adpt_mutex); 1752 1752 return -ENXIO; 1753 1753 } 1754 1754 ··· 1759 1759 1760 1760 pHba->in_use = 1; 1761 1761 mutex_unlock(&adpt_configuration_lock); 1762 - unlock_kernel(); 1762 + mutex_unlock(&adpt_mutex); 1763 1763 1764 1764 return 0; 1765 1765 } ··· 2160 2160 2161 2161 inode = file->f_dentry->d_inode; 2162 2162 2163 - lock_kernel(); 2163 + mutex_lock(&adpt_mutex); 2164 2164 ret = adpt_ioctl(inode, file, cmd, arg); 2165 - unlock_kernel(); 2165 + mutex_unlock(&adpt_mutex); 2166 2166 2167 2167 return ret; 2168 2168 } ··· 2176 2176 2177 2177 inode = file->f_dentry->d_inode; 2178 2178 2179 - lock_kernel(); 2179 + mutex_lock(&adpt_mutex); 2180 2180 2181 2181 switch(cmd) { 2182 2182 case DPT_SIGNATURE: ··· 2194 2194 ret = -ENOIOCTLCMD; 2195 2195 } 2196 2196 2197 - unlock_kernel(); 2197 + mutex_unlock(&adpt_mutex); 2198 2198 2199 2199 return ret; 2200 2200 }
+6 -5
drivers/scsi/gdth.c
··· 120 120 #include <linux/timer.h> 121 121 #include <linux/dma-mapping.h> 122 122 #include <linux/list.h> 123 - #include <linux/smp_lock.h> 123 + #include <linux/mutex.h> 124 124 #include <linux/slab.h> 125 125 126 126 #ifdef GDTH_RTC ··· 140 140 #include <scsi/scsi_host.h> 141 141 #include "gdth.h" 142 142 143 + static DEFINE_MUTEX(gdth_mutex); 143 144 static void gdth_delay(int milliseconds); 144 145 static void gdth_eval_mapping(u32 size, u32 *cyls, int *heads, int *secs); 145 146 static irqreturn_t gdth_interrupt(int irq, void *dev_id); ··· 4043 4042 { 4044 4043 gdth_ha_str *ha; 4045 4044 4046 - lock_kernel(); 4045 + mutex_lock(&gdth_mutex); 4047 4046 list_for_each_entry(ha, &gdth_instances, list) { 4048 4047 if (!ha->sdev) 4049 4048 ha->sdev = scsi_get_host_dev(ha->shost); 4050 4049 } 4051 - unlock_kernel(); 4050 + mutex_unlock(&gdth_mutex); 4052 4051 4053 4052 TRACE(("gdth_open()\n")); 4054 4053 return 0; ··· 4616 4615 { 4617 4616 int ret; 4618 4617 4619 - lock_kernel(); 4618 + mutex_lock(&gdth_mutex); 4620 4619 ret = gdth_ioctl(file, cmd, arg); 4621 - unlock_kernel(); 4620 + mutex_unlock(&gdth_mutex); 4622 4621 4623 4622 return ret; 4624 4623 }
+4 -4
drivers/scsi/megaraid.c
··· 46 46 #include <linux/pci.h> 47 47 #include <linux/init.h> 48 48 #include <linux/dma-mapping.h> 49 - #include <linux/smp_lock.h> 49 + #include <linux/mutex.h> 50 50 #include <linux/slab.h> 51 51 #include <scsi/scsicam.h> 52 52 ··· 62 62 MODULE_LICENSE ("GPL"); 63 63 MODULE_VERSION(MEGARAID_MODULE_VERSION); 64 64 65 + static DEFINE_MUTEX(megadev_mutex); 65 66 static unsigned int max_cmd_per_lun = DEF_CMD_PER_LUN; 66 67 module_param(max_cmd_per_lun, uint, 0); 67 68 MODULE_PARM_DESC(max_cmd_per_lun, "Maximum number of commands which can be issued to a single LUN (default=DEF_CMD_PER_LUN=63)"); ··· 3283 3282 static int 3284 3283 megadev_open (struct inode *inode, struct file *filep) 3285 3284 { 3286 - cycle_kernel_lock(); 3287 3285 /* 3288 3286 * Only allow superuser to access private ioctl interface 3289 3287 */ ··· 3701 3701 { 3702 3702 int ret; 3703 3703 3704 - lock_kernel(); 3704 + mutex_lock(&megadev_mutex); 3705 3705 ret = megadev_ioctl(filep, cmd, arg); 3706 - unlock_kernel(); 3706 + mutex_unlock(&megadev_mutex); 3707 3707 3708 3708 return ret; 3709 3709 }
+4 -4
drivers/scsi/megaraid/megaraid_mm.c
··· 16 16 */ 17 17 #include <linux/sched.h> 18 18 #include <linux/slab.h> 19 - #include <linux/smp_lock.h> 19 + #include <linux/mutex.h> 20 20 #include "megaraid_mm.h" 21 21 22 22 23 23 // Entry points for char node driver 24 + static DEFINE_MUTEX(mraid_mm_mutex); 24 25 static int mraid_mm_open(struct inode *, struct file *); 25 26 static long mraid_mm_unlocked_ioctl(struct file *, uint, unsigned long); 26 27 ··· 99 98 */ 100 99 if (!capable(CAP_SYS_ADMIN)) return (-EACCES); 101 100 102 - cycle_kernel_lock(); 103 101 return 0; 104 102 } 105 103 ··· 224 224 int err; 225 225 226 226 /* inconsistant: mraid_mm_compat_ioctl doesn't take the BKL */ 227 - lock_kernel(); 227 + mutex_lock(&mraid_mm_mutex); 228 228 err = mraid_mm_ioctl(filep, cmd, arg); 229 - unlock_kernel(); 229 + mutex_unlock(&mraid_mm_mutex); 230 230 231 231 return err; 232 232 }
-2
drivers/scsi/megaraid/megaraid_sas.c
··· 33 33 #include <linux/spinlock.h> 34 34 #include <linux/interrupt.h> 35 35 #include <linux/delay.h> 36 - #include <linux/smp_lock.h> 37 36 #include <linux/uio.h> 38 37 #include <linux/slab.h> 39 38 #include <asm/uaccess.h> ··· 3556 3557 */ 3557 3558 static int megasas_mgmt_open(struct inode *inode, struct file *filep) 3558 3559 { 3559 - cycle_kernel_lock(); 3560 3560 /* 3561 3561 * Allow only those users with admin rights 3562 3562 */
+6 -5
drivers/scsi/mpt2sas/mpt2sas_ctl.c
··· 51 51 #include <linux/types.h> 52 52 #include <linux/pci.h> 53 53 #include <linux/delay.h> 54 - #include <linux/smp_lock.h> 54 + #include <linux/mutex.h> 55 55 #include <linux/compat.h> 56 56 #include <linux/poll.h> 57 57 ··· 61 61 #include "mpt2sas_base.h" 62 62 #include "mpt2sas_ctl.h" 63 63 64 + static DEFINE_MUTEX(_ctl_mutex); 64 65 static struct fasync_struct *async_queue; 65 66 static DECLARE_WAIT_QUEUE_HEAD(ctl_poll_wait); 66 67 ··· 2239 2238 { 2240 2239 long ret; 2241 2240 2242 - lock_kernel(); 2241 + mutex_lock(&_ctl_mutex); 2243 2242 ret = _ctl_ioctl_main(file, cmd, (void __user *)arg); 2244 - unlock_kernel(); 2243 + mutex_unlock(&_ctl_mutex); 2245 2244 return ret; 2246 2245 } 2247 2246 ··· 2310 2309 { 2311 2310 long ret; 2312 2311 2313 - lock_kernel(); 2312 + mutex_lock(&_ctl_mutex); 2314 2313 if (cmd == MPT2COMMAND32) 2315 2314 ret = _ctl_compat_mpt_command(file, cmd, arg); 2316 2315 else 2317 2316 ret = _ctl_ioctl_main(file, cmd, (void __user *)arg); 2318 - unlock_kernel(); 2317 + mutex_unlock(&_ctl_mutex); 2319 2318 return ret; 2320 2319 } 2321 2320 #endif
+8 -7
drivers/scsi/osst.c
··· 51 51 #include <linux/moduleparam.h> 52 52 #include <linux/delay.h> 53 53 #include <linux/jiffies.h> 54 - #include <linux/smp_lock.h> 54 + #include <linux/mutex.h> 55 55 #include <asm/uaccess.h> 56 56 #include <asm/dma.h> 57 57 #include <asm/system.h> ··· 80 80 #include "osst_options.h" 81 81 #include "osst_detect.h" 82 82 83 + static DEFINE_MUTEX(osst_int_mutex); 83 84 static int max_dev = 0; 84 85 static int write_threshold_kbs = 0; 85 86 static int max_sg_segs = 0; ··· 4808 4807 { 4809 4808 int ret; 4810 4809 4811 - lock_kernel(); 4810 + mutex_lock(&osst_int_mutex); 4812 4811 ret = __os_scsi_tape_open(inode, filp); 4813 - unlock_kernel(); 4812 + mutex_unlock(&osst_int_mutex); 4814 4813 return ret; 4815 4814 } 4816 4815 ··· 4944 4943 char * name = tape_name(STp); 4945 4944 void __user * p = (void __user *)arg; 4946 4945 4947 - lock_kernel(); 4946 + mutex_lock(&osst_int_mutex); 4948 4947 if (mutex_lock_interruptible(&STp->lock)) { 4949 - unlock_kernel(); 4948 + mutex_unlock(&osst_int_mutex); 4950 4949 return -ERESTARTSYS; 4951 4950 } 4952 4951 ··· 5261 5260 mutex_unlock(&STp->lock); 5262 5261 5263 5262 retval = scsi_ioctl(STp->device, cmd_in, p); 5264 - unlock_kernel(); 5263 + mutex_unlock(&osst_int_mutex); 5265 5264 return retval; 5266 5265 5267 5266 out: 5268 5267 if (SRpnt) osst_release_request(SRpnt); 5269 5268 5270 5269 mutex_unlock(&STp->lock); 5271 - unlock_kernel(); 5270 + mutex_unlock(&osst_int_mutex); 5272 5271 5273 5272 return retval; 5274 5273 }
-2
drivers/scsi/scsi_tgt_if.c
··· 22 22 #include <linux/miscdevice.h> 23 23 #include <linux/gfp.h> 24 24 #include <linux/file.h> 25 - #include <linux/smp_lock.h> 26 25 #include <net/tcp.h> 27 26 #include <scsi/scsi.h> 28 27 #include <scsi/scsi_cmnd.h> ··· 322 323 { 323 324 tx_ring.tr_idx = rx_ring.tr_idx = 0; 324 325 325 - cycle_kernel_lock(); 326 326 return 0; 327 327 } 328 328
+7 -5
drivers/scsi/sg.c
··· 49 49 #include <linux/blkdev.h> 50 50 #include <linux/delay.h> 51 51 #include <linux/blktrace_api.h> 52 - #include <linux/smp_lock.h> 52 + #include <linux/mutex.h> 53 53 54 54 #include "scsi.h" 55 55 #include <scsi/scsi_dbg.h> ··· 102 102 103 103 static int sg_add(struct device *, struct class_interface *); 104 104 static void sg_remove(struct device *, struct class_interface *); 105 + 106 + static DEFINE_MUTEX(sg_mutex); 105 107 106 108 static DEFINE_IDR(sg_index_idr); 107 109 static DEFINE_RWLOCK(sg_index_lock); /* Also used to lock ··· 231 229 int res; 232 230 int retval; 233 231 234 - lock_kernel(); 232 + mutex_lock(&sg_mutex); 235 233 nonseekable_open(inode, filp); 236 234 SCSI_LOG_TIMEOUT(3, printk("sg_open: dev=%d, flags=0x%x\n", dev, flags)); 237 235 sdp = sg_get_dev(dev); ··· 316 314 sg_put: 317 315 if (sdp) 318 316 sg_put_dev(sdp); 319 - unlock_kernel(); 317 + mutex_unlock(&sg_mutex); 320 318 return retval; 321 319 } 322 320 ··· 1094 1092 { 1095 1093 int ret; 1096 1094 1097 - lock_kernel(); 1095 + mutex_lock(&sg_mutex); 1098 1096 ret = sg_ioctl(filp, cmd_in, arg); 1099 - unlock_kernel(); 1097 + mutex_unlock(&sg_mutex); 1100 1098 1101 1099 return ret; 1102 1100 }
+7 -7
drivers/scsi/sr.c
··· 44 44 #include <linux/init.h> 45 45 #include <linux/blkdev.h> 46 46 #include <linux/mutex.h> 47 - #include <linux/smp_lock.h> 48 47 #include <linux/slab.h> 49 48 #include <asm/uaccess.h> 50 49 ··· 75 76 CDC_CD_R|CDC_CD_RW|CDC_DVD|CDC_DVD_R|CDC_DVD_RAM|CDC_GENERIC_PACKET| \ 76 77 CDC_MRW|CDC_MRW_W|CDC_RAM) 77 78 79 + static DEFINE_MUTEX(sr_mutex); 78 80 static int sr_probe(struct device *); 79 81 static int sr_remove(struct device *); 80 82 static int sr_done(struct scsi_cmnd *); ··· 470 470 struct scsi_cd *cd; 471 471 int ret = -ENXIO; 472 472 473 - lock_kernel(); 473 + mutex_lock(&sr_mutex); 474 474 cd = scsi_cd_get(bdev->bd_disk); 475 475 if (cd) { 476 476 ret = cdrom_open(&cd->cdi, bdev, mode); 477 477 if (ret) 478 478 scsi_cd_put(cd); 479 479 } 480 - unlock_kernel(); 480 + mutex_unlock(&sr_mutex); 481 481 return ret; 482 482 } 483 483 484 484 static int sr_block_release(struct gendisk *disk, fmode_t mode) 485 485 { 486 486 struct scsi_cd *cd = scsi_cd(disk); 487 - lock_kernel(); 487 + mutex_lock(&sr_mutex); 488 488 cdrom_release(&cd->cdi, mode); 489 489 scsi_cd_put(cd); 490 - unlock_kernel(); 490 + mutex_unlock(&sr_mutex); 491 491 return 0; 492 492 } 493 493 ··· 499 499 void __user *argp = (void __user *)arg; 500 500 int ret; 501 501 502 - lock_kernel(); 502 + mutex_lock(&sr_mutex); 503 503 504 504 /* 505 505 * Send SCSI addressing ioctls directly to mid level, send other ··· 529 529 ret = scsi_ioctl(sdev, cmd, argp); 530 530 531 531 out: 532 - unlock_kernel(); 532 + mutex_unlock(&sr_mutex); 533 533 return ret; 534 534 } 535 535
+6 -6
drivers/scsi/st.c
··· 39 39 #include <linux/cdev.h> 40 40 #include <linux/delay.h> 41 41 #include <linux/mutex.h> 42 - #include <linux/smp_lock.h> 43 42 44 43 #include <asm/uaccess.h> 45 44 #include <asm/dma.h> ··· 75 76 #include "st_options.h" 76 77 #include "st.h" 77 78 79 + static DEFINE_MUTEX(st_mutex); 78 80 static int buffer_kbs; 79 81 static int max_sg_segs; 80 82 static int try_direct_io = TRY_DIRECT_IO; ··· 1180 1180 int dev = TAPE_NR(inode); 1181 1181 char *name; 1182 1182 1183 - lock_kernel(); 1183 + mutex_lock(&st_mutex); 1184 1184 /* 1185 1185 * We really want to do nonseekable_open(inode, filp); here, but some 1186 1186 * versions of tar incorrectly call lseek on tapes and bail out if that ··· 1189 1189 filp->f_mode &= ~(FMODE_PREAD | FMODE_PWRITE); 1190 1190 1191 1191 if (!(STp = scsi_tape_get(dev))) { 1192 - unlock_kernel(); 1192 + mutex_unlock(&st_mutex); 1193 1193 return -ENXIO; 1194 1194 } 1195 1195 ··· 1200 1200 if (STp->in_use) { 1201 1201 write_unlock(&st_dev_arr_lock); 1202 1202 scsi_tape_put(STp); 1203 - unlock_kernel(); 1203 + mutex_unlock(&st_mutex); 1204 1204 DEB( printk(ST_DEB_MSG "%s: Device already in use.\n", name); ) 1205 1205 return (-EBUSY); 1206 1206 } ··· 1249 1249 retval = (-EIO); 1250 1250 goto err_out; 1251 1251 } 1252 - unlock_kernel(); 1252 + mutex_unlock(&st_mutex); 1253 1253 return 0; 1254 1254 1255 1255 err_out: 1256 1256 normalize_buffer(STp->buffer); 1257 1257 STp->in_use = 0; 1258 1258 scsi_tape_put(STp); 1259 - unlock_kernel(); 1259 + mutex_unlock(&st_mutex); 1260 1260 return retval; 1261 1261 1262 1262 }
+6 -5
drivers/staging/hv/blkvsc_drv.c
··· 25 25 #include <linux/major.h> 26 26 #include <linux/delay.h> 27 27 #include <linux/hdreg.h> 28 - #include <linux/smp_lock.h> 28 + #include <linux/mutex.h> 29 29 #include <linux/slab.h> 30 30 #include <scsi/scsi.h> 31 31 #include <scsi/scsi_cmnd.h> ··· 124 124 }; 125 125 126 126 /* Static decl */ 127 + static DEFINE_MUTEX(blkvsc_mutex); 127 128 static int blkvsc_probe(struct device *dev); 128 129 static int blkvsc_remove(struct device *device); 129 130 static void blkvsc_shutdown(struct device *device); ··· 1310 1309 DPRINT_DBG(BLKVSC_DRV, "- users %d disk %s\n", blkdev->users, 1311 1310 blkdev->gd->disk_name); 1312 1311 1313 - lock_kernel(); 1312 + mutex_lock(&blkvsc_mutex); 1314 1313 spin_lock(&blkdev->lock); 1315 1314 1316 1315 if (!blkdev->users && blkdev->device_type == DVD_TYPE) { ··· 1322 1321 blkdev->users++; 1323 1322 1324 1323 spin_unlock(&blkdev->lock); 1325 - unlock_kernel(); 1324 + mutex_unlock(&blkvsc_mutex); 1326 1325 return 0; 1327 1326 } 1328 1327 ··· 1333 1332 DPRINT_DBG(BLKVSC_DRV, "- users %d disk %s\n", blkdev->users, 1334 1333 blkdev->gd->disk_name); 1335 1334 1336 - lock_kernel(); 1335 + mutex_lock(&blkvsc_mutex); 1337 1336 spin_lock(&blkdev->lock); 1338 1337 if (blkdev->users == 1) { 1339 1338 spin_unlock(&blkdev->lock); ··· 1344 1343 blkdev->users--; 1345 1344 1346 1345 spin_unlock(&blkdev->lock); 1347 - unlock_kernel(); 1346 + mutex_unlock(&blkvsc_mutex); 1348 1347 return 0; 1349 1348 } 1350 1349
+4 -3
drivers/staging/spectra/ffsport.c
··· 27 27 #include <linux/kthread.h> 28 28 #include <linux/log2.h> 29 29 #include <linux/init.h> 30 - #include <linux/smp_lock.h> 31 30 #include <linux/slab.h> 32 31 33 32 /**** Helper functions used for Div, Remainder operation on u64 ****/ ··· 589 590 return -ENOTTY; 590 591 } 591 592 593 + static DEFINE_MUTEX(ffsport_mutex); 594 + 592 595 int GLOB_SBD_unlocked_ioctl(struct block_device *bdev, fmode_t mode, 593 596 unsigned int cmd, unsigned long arg) 594 597 { 595 598 int ret; 596 599 597 - lock_kernel(); 600 + mutex_lock(&ffsport_mutex); 598 601 ret = GLOB_SBD_ioctl(bdev, mode, cmd, arg); 599 - unlock_kernel(); 602 + mutex_unlock(&ffsport_mutex); 600 603 601 604 return ret; 602 605 }
+4 -3
drivers/telephony/ixj.c
··· 257 257 #include <linux/fs.h> /* everything... */ 258 258 #include <linux/errno.h> /* error codes */ 259 259 #include <linux/slab.h> 260 - #include <linux/smp_lock.h> 260 + #include <linux/mutex.h> 261 261 #include <linux/mm.h> 262 262 #include <linux/ioport.h> 263 263 #include <linux/interrupt.h> ··· 277 277 #define TYPE(inode) (iminor(inode) >> 4) 278 278 #define NUM(inode) (iminor(inode) & 0xf) 279 279 280 + static DEFINE_MUTEX(ixj_mutex); 280 281 static int ixjdebug; 281 282 static int hertz = HZ; 282 283 static int samplerate = 100; ··· 6656 6655 static long ixj_ioctl(struct file *file_p, unsigned int cmd, unsigned long arg) 6657 6656 { 6658 6657 long ret; 6659 - lock_kernel(); 6658 + mutex_lock(&ixj_mutex); 6660 6659 ret = do_ixj_ioctl(file_p, cmd, arg); 6661 - unlock_kernel(); 6660 + mutex_unlock(&ixj_mutex); 6662 6661 return ret; 6663 6662 } 6664 6663
+8 -7
drivers/watchdog/cpwd.c
··· 25 25 #include <linux/ioport.h> 26 26 #include <linux/timer.h> 27 27 #include <linux/slab.h> 28 - #include <linux/smp_lock.h> 28 + #include <linux/mutex.h> 29 29 #include <linux/io.h> 30 30 #include <linux/of.h> 31 31 #include <linux/of_device.h> ··· 89 89 } devs[WD_NUMDEVS]; 90 90 }; 91 91 92 + static DEFINE_MUTEX(cpwd_mutex); 92 93 static struct cpwd *cpwd_device; 93 94 94 95 /* Sun uses Altera PLD EPF8820ATC144-4 ··· 369 368 { 370 369 struct cpwd *p = cpwd_device; 371 370 372 - lock_kernel(); 371 + mutex_lock(&cpwd_mutex); 373 372 switch (iminor(inode)) { 374 373 case WD0_MINOR: 375 374 case WD1_MINOR: ··· 377 376 break; 378 377 379 378 default: 380 - unlock_kernel(); 379 + mutex_unlock(&cpwd_mutex); 381 380 return -ENODEV; 382 381 } 383 382 ··· 387 386 IRQF_SHARED, DRIVER_NAME, p)) { 388 387 printk(KERN_ERR PFX "Cannot register IRQ %d\n", 389 388 p->irq); 390 - unlock_kernel(); 389 + mutex_unlock(&cpwd_mutex); 391 390 return -EBUSY; 392 391 } 393 392 p->initialized = true; 394 393 } 395 394 396 - unlock_kernel(); 395 + mutex_unlock(&cpwd_mutex); 397 396 398 397 return nonseekable_open(inode, f); 399 398 } ··· 483 482 case WIOCSTART: 484 483 case WIOCSTOP: 485 484 case WIOCGSTAT: 486 - lock_kernel(); 485 + mutex_lock(&cpwd_mutex); 487 486 rval = cpwd_ioctl(file, cmd, arg); 488 - unlock_kernel(); 487 + mutex_unlock(&cpwd_mutex); 489 488 break; 490 489 491 490 /* everything else is handled by the generic compat layer */