Skip to content

Commit

Permalink
Staging: hv: Get rid of the function blkvsc_do_flush()
Browse files Browse the repository at this point in the history
Get rid of the function blkvsc_do_flush() and instead use the common function
to force a device flush.

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 6c65da7 commit 26a1973
Showing 1 changed file with 14 additions and 38 deletions.
52 changes: 14 additions & 38 deletions drivers/staging/hv/blkvsc_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ enum blkvsc_device_type {
enum blkvsc_op_type {
DO_INQUIRY,
DO_CAPACITY,
DO_FLUSH,
};

/*
Expand Down Expand Up @@ -451,6 +452,13 @@ static int blkvsc_do_operation(struct block_device_context *blkdev,
blkvsc_req->cmd_len = 16;
blkvsc_req->request.data_buffer.len = 8;
break;

case DO_FLUSH:
blkvsc_req->cmnd[0] = SYNCHRONIZE_CACHE;
blkvsc_req->cmd_len = 10;
blkvsc_req->request.data_buffer.pfn_array[0] = 0;
blkvsc_req->request.data_buffer.len = 0;
break;
default:
ret = -EINVAL;
goto cleanup;
Expand Down Expand Up @@ -502,6 +510,9 @@ static int blkvsc_do_operation(struct block_device_context *blkdev,
(buf[4] << 24) | (buf[5] << 16) |
(buf[6] << 8) | buf[7];
break;
default:
break;

}

cleanup:
Expand All @@ -515,41 +526,6 @@ static int blkvsc_do_operation(struct block_device_context *blkdev,
return ret;
}

static int blkvsc_do_flush(struct block_device_context *blkdev)
{
struct blkvsc_request *blkvsc_req;

DPRINT_DBG(BLKVSC_DRV, "blkvsc_do_flush()\n");

if (blkdev->device_type != HARDDISK_TYPE)
return 0;

blkvsc_req = kmem_cache_zalloc(blkdev->request_pool, GFP_KERNEL);
if (!blkvsc_req)
return -ENOMEM;

memset(blkvsc_req, 0, sizeof(struct blkvsc_request));
init_completion(&blkvsc_req->request.wait_event);
blkvsc_req->dev = blkdev;
blkvsc_req->req = NULL;
blkvsc_req->write = 0;

blkvsc_req->request.data_buffer.pfn_array[0] = 0;
blkvsc_req->request.data_buffer.offset = 0;
blkvsc_req->request.data_buffer.len = 0;

blkvsc_req->cmnd[0] = SYNCHRONIZE_CACHE;
blkvsc_req->cmd_len = 10;

blkvsc_submit_request(blkvsc_req, blkvsc_cmd_completion);

wait_for_completion_interruptible(&blkvsc_req->request.wait_event);

kmem_cache_free(blkvsc_req->dev->request_pool, blkvsc_req);

return 0;
}


static int blkvsc_cancel_pending_reqs(struct block_device_context *blkdev)
{
Expand Down Expand Up @@ -676,7 +652,7 @@ static int blkvsc_remove(struct device *device)
udelay(100);
}

blkvsc_do_flush(blkdev);
blkvsc_do_operation(blkdev, DO_FLUSH);

spin_lock_irqsave(&blkdev->lock, flags);

Expand Down Expand Up @@ -720,7 +696,7 @@ static void blkvsc_shutdown(struct device *device)
udelay(100);
}

blkvsc_do_flush(blkdev);
blkvsc_do_operation(blkdev, DO_FLUSH);

spin_lock_irqsave(&blkdev->lock, flags);

Expand All @@ -740,7 +716,7 @@ static int blkvsc_release(struct gendisk *disk, fmode_t mode)
spin_lock(&blkdev->lock);
if (blkdev->users == 1) {
spin_unlock(&blkdev->lock);
blkvsc_do_flush(blkdev);
blkvsc_do_operation(blkdev, DO_FLUSH);
spin_lock(&blkdev->lock);
}

Expand Down

0 comments on commit 26a1973

Please sign in to comment.