Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 249130
b: refs/heads/master
c: 26a1973
h: refs/heads/master
v: v3
  • Loading branch information
K. Y. Srinivasan authored and Greg Kroah-Hartman committed Apr 25, 2011
1 parent d0a0ba8 commit acf7b2a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 39 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: 6c65da76590c5b1122695c40efa0d5117ebce04f
refs/heads/master: 26a197396253c1774b2affce2e29306aca9ee86a
52 changes: 14 additions & 38 deletions trunk/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 acf7b2a

Please sign in to comment.