From: Arnd Bergmann Date: Wed, 7 Jul 2010 14:51:28 +0000 (+0200) Subject: block: remove BKL from partition ioctls X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=15392efb9d427482754f6d267262452878667499;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git block: remove BKL from partition ioctls The blkpg_ioctl and blkdev_reread_part access fields of the bdev and gendisk structures, yet they always do so under the protection of bdev->bd_mutex, which seems sufficient. Signed-off-by: Arnd Bergmann cked-by: Christoph Hellwig Signed-off-by: Jens Axboe --- diff --git a/block/ioctl.c b/block/ioctl.c index 60f477c91eef..09fd7f1ef23a 100644 --- a/block/ioctl.c +++ b/block/ioctl.c @@ -296,14 +296,10 @@ int blkdev_ioctl(struct block_device *bdev, fmode_t mode, unsigned cmd, bd_release(bdev); return ret; case BLKPG: - lock_kernel(); ret = blkpg_ioctl(bdev, (struct blkpg_ioctl_arg __user *) arg); - unlock_kernel(); break; case BLKRRPART: - lock_kernel(); ret = blkdev_reread_part(bdev); - unlock_kernel(); break; case BLKGETSIZE: size = bdev->bd_inode->i_size;