diff options
author | Owen Smith <owen.smith@citrix.com> | 2010-12-22 10:05:00 -0500 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-03-08 15:07:00 -0500 |
commit | 51de69523ffe1c17994dc2f260369f29dfdce71c (patch) | |
tree | 8e118a1c94cf6aec4cf4a42d0510f85b6a2b669a /drivers | |
parent | c56eb8fb6dccb83d9fe62fd4dc00c834de9bc470 (diff) |
xen: Union the blkif_request request specific fields
Prepare for extending the block device ring to allow request
specific fields, by moving the request specific fields for
reads, writes and barrier requests to a union member.
Acked-by: Jens Axboe <jaxboe@fusionio.com>
Signed-off-by: Owen Smith <owen.smith@citrix.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/block/xen-blkfront.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/block/xen-blkfront.c b/drivers/block/xen-blkfront.c index d7aa39e349a6..cc4514c9d8a6 100644 --- a/drivers/block/xen-blkfront.c +++ b/drivers/block/xen-blkfront.c | |||
@@ -281,7 +281,7 @@ static int blkif_queue_request(struct request *req) | |||
281 | info->shadow[id].request = req; | 281 | info->shadow[id].request = req; |
282 | 282 | ||
283 | ring_req->id = id; | 283 | ring_req->id = id; |
284 | ring_req->sector_number = (blkif_sector_t)blk_rq_pos(req); | 284 | ring_req->u.rw.sector_number = (blkif_sector_t)blk_rq_pos(req); |
285 | ring_req->handle = info->handle; | 285 | ring_req->handle = info->handle; |
286 | 286 | ||
287 | ring_req->operation = rq_data_dir(req) ? | 287 | ring_req->operation = rq_data_dir(req) ? |
@@ -317,7 +317,7 @@ static int blkif_queue_request(struct request *req) | |||
317 | rq_data_dir(req) ); | 317 | rq_data_dir(req) ); |
318 | 318 | ||
319 | info->shadow[id].frame[i] = mfn_to_pfn(buffer_mfn); | 319 | info->shadow[id].frame[i] = mfn_to_pfn(buffer_mfn); |
320 | ring_req->seg[i] = | 320 | ring_req->u.rw.seg[i] = |
321 | (struct blkif_request_segment) { | 321 | (struct blkif_request_segment) { |
322 | .gref = ref, | 322 | .gref = ref, |
323 | .first_sect = fsect, | 323 | .first_sect = fsect, |
@@ -615,7 +615,7 @@ static void blkif_completion(struct blk_shadow *s) | |||
615 | { | 615 | { |
616 | int i; | 616 | int i; |
617 | for (i = 0; i < s->req.nr_segments; i++) | 617 | for (i = 0; i < s->req.nr_segments; i++) |
618 | gnttab_end_foreign_access(s->req.seg[i].gref, 0, 0UL); | 618 | gnttab_end_foreign_access(s->req.u.rw.seg[i].gref, 0, 0UL); |
619 | } | 619 | } |
620 | 620 | ||
621 | static irqreturn_t blkif_interrupt(int irq, void *dev_id) | 621 | static irqreturn_t blkif_interrupt(int irq, void *dev_id) |
@@ -932,7 +932,7 @@ static int blkif_recover(struct blkfront_info *info) | |||
932 | /* Rewrite any grant references invalidated by susp/resume. */ | 932 | /* Rewrite any grant references invalidated by susp/resume. */ |
933 | for (j = 0; j < req->nr_segments; j++) | 933 | for (j = 0; j < req->nr_segments; j++) |
934 | gnttab_grant_foreign_access_ref( | 934 | gnttab_grant_foreign_access_ref( |
935 | req->seg[j].gref, | 935 | req->u.rw.seg[j].gref, |
936 | info->xbdev->otherend_id, | 936 | info->xbdev->otherend_id, |
937 | pfn_to_mfn(info->shadow[req->id].frame[j]), | 937 | pfn_to_mfn(info->shadow[req->id].frame[j]), |
938 | rq_data_dir(info->shadow[req->id].request)); | 938 | rq_data_dir(info->shadow[req->id].request)); |