Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 208286
b: refs/heads/master
c: 7fd152f
h: refs/heads/master
v: v3
  • Loading branch information
Daniel Stodden authored and Jens Axboe committed Aug 7, 2010
1 parent c231797 commit 392a840
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 17 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 139617437aff1f0d3b57c2d7cc60e60efc8fe6c3
refs/heads/master: 7fd152f4b6ae4f3cf89e4b7a0383cc3c470772fc
49 changes: 33 additions & 16 deletions trunk/drivers/block/xen-blkfront.c
Original file line number Diff line number Diff line change
Expand Up @@ -1142,31 +1142,48 @@ static int blkif_open(struct block_device *bdev, fmode_t mode)
if (!err)
++info->users;

unlock_kernel();
out:
unlock_kernel();
return err;
}

static int blkif_release(struct gendisk *disk, fmode_t mode)
{
struct blkfront_info *info = disk->private_data;
struct block_device *bdev;
struct xenbus_device *xbdev;

lock_kernel();
info->users--;
if (info->users == 0) {
/* Check whether we have been instructed to close. We will
have ignored this request initially, as the device was
still mounted. */
struct xenbus_device *dev = info->xbdev;

if (!dev) {
xlvbd_release_gendisk(info);
kfree(info);
} else if (xenbus_read_driver_state(dev->otherend)
== XenbusStateClosing && info->is_ready) {
xlvbd_release_gendisk(info);
xenbus_frontend_closed(dev);
}
if (--info->users)
goto out;

bdev = bdget_disk(disk, 0);
bdput(bdev);

/*
* Check if we have been instructed to close. We will have
* deferred this request, because the bdev was still open.
*/

mutex_lock(&info->mutex);
xbdev = info->xbdev;

if (xbdev && xbdev->state == XenbusStateClosing) {
/* pending switch to state closed */
xlvbd_release_gendisk(info);
xenbus_frontend_closed(info->xbdev);
}

mutex_unlock(&info->mutex);

if (!xbdev) {
/* sudden device removal */
xlvbd_release_gendisk(info);
disk->private_data = NULL;
kfree(info);
}

out:
unlock_kernel();
return 0;
}
Expand Down

0 comments on commit 392a840

Please sign in to comment.