diff options
Diffstat (limited to 'drivers/mmc/card/block.c')
-rw-r--r-- | drivers/mmc/card/block.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c index d545f79f6000..00073b7c0368 100644 --- a/drivers/mmc/card/block.c +++ b/drivers/mmc/card/block.c | |||
@@ -29,7 +29,6 @@ | |||
29 | #include <linux/kdev_t.h> | 29 | #include <linux/kdev_t.h> |
30 | #include <linux/blkdev.h> | 30 | #include <linux/blkdev.h> |
31 | #include <linux/mutex.h> | 31 | #include <linux/mutex.h> |
32 | #include <linux/smp_lock.h> | ||
33 | #include <linux/scatterlist.h> | 32 | #include <linux/scatterlist.h> |
34 | #include <linux/string_helpers.h> | 33 | #include <linux/string_helpers.h> |
35 | 34 | ||
@@ -51,6 +50,7 @@ MODULE_ALIAS("mmc:block"); | |||
51 | #define MMC_SHIFT 3 | 50 | #define MMC_SHIFT 3 |
52 | #define MMC_NUM_MINORS (256 >> MMC_SHIFT) | 51 | #define MMC_NUM_MINORS (256 >> MMC_SHIFT) |
53 | 52 | ||
53 | static DEFINE_MUTEX(block_mutex); | ||
54 | static DECLARE_BITMAP(dev_use, MMC_NUM_MINORS); | 54 | static DECLARE_BITMAP(dev_use, MMC_NUM_MINORS); |
55 | 55 | ||
56 | /* | 56 | /* |
@@ -108,7 +108,7 @@ static int mmc_blk_open(struct block_device *bdev, fmode_t mode) | |||
108 | struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk); | 108 | struct mmc_blk_data *md = mmc_blk_get(bdev->bd_disk); |
109 | int ret = -ENXIO; | 109 | int ret = -ENXIO; |
110 | 110 | ||
111 | lock_kernel(); | 111 | mutex_lock(&block_mutex); |
112 | if (md) { | 112 | if (md) { |
113 | if (md->usage == 2) | 113 | if (md->usage == 2) |
114 | check_disk_change(bdev); | 114 | check_disk_change(bdev); |
@@ -119,7 +119,7 @@ static int mmc_blk_open(struct block_device *bdev, fmode_t mode) | |||
119 | ret = -EROFS; | 119 | ret = -EROFS; |
120 | } | 120 | } |
121 | } | 121 | } |
122 | unlock_kernel(); | 122 | mutex_unlock(&block_mutex); |
123 | 123 | ||
124 | return ret; | 124 | return ret; |
125 | } | 125 | } |
@@ -128,9 +128,9 @@ static int mmc_blk_release(struct gendisk *disk, fmode_t mode) | |||
128 | { | 128 | { |
129 | struct mmc_blk_data *md = disk->private_data; | 129 | struct mmc_blk_data *md = disk->private_data; |
130 | 130 | ||
131 | lock_kernel(); | 131 | mutex_lock(&block_mutex); |
132 | mmc_blk_put(md); | 132 | mmc_blk_put(md); |
133 | unlock_kernel(); | 133 | mutex_unlock(&block_mutex); |
134 | return 0; | 134 | return 0; |
135 | } | 135 | } |
136 | 136 | ||