Skip to content

Commit

Permalink
Staging: hv: Cleanup blkvsc_open()
Browse files Browse the repository at this point in the history
Given that we don't support removable media, cleanup blkvsc_open().

Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Hank Janssen <hjanssen@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Apr 25, 2011
1 parent a2b9d24 commit c4c58c5
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions drivers/staging/hv/blkvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,20 +255,12 @@ static int blkvsc_open(struct block_device *bdev, fmode_t mode)
{
struct block_device_context *blkdev = bdev->bd_disk->private_data;


mutex_lock(&blkvsc_mutex);
spin_lock(&blkdev->lock);

if (!blkdev->users && blkdev->device_type == DVD_TYPE) {
spin_unlock(&blkdev->lock);
check_disk_change(bdev);
spin_lock(&blkdev->lock);
}

blkdev->users++;

spin_unlock(&blkdev->lock);
mutex_unlock(&blkvsc_mutex);

return 0;
}

Expand Down

0 comments on commit c4c58c5

Please sign in to comment.