|
@@ -961,7 +961,7 @@ static int xen_blkbk_parse_indirect(struct blkif_request *req,
|
|
|
seg[n].nsec = segments[i].last_sect -
|
|
|
segments[i].first_sect + 1;
|
|
|
seg[n].offset = (segments[i].first_sect << 9);
|
|
|
- if ((segments[i].last_sect >= (PAGE_SIZE >> 9)) ||
|
|
|
+ if ((segments[i].last_sect >= (XEN_PAGE_SIZE >> 9)) ||
|
|
|
(segments[i].last_sect < segments[i].first_sect)) {
|
|
|
rc = -EINVAL;
|
|
|
goto unmap;
|
|
@@ -1210,6 +1210,7 @@ static int dispatch_rw_block_io(struct xen_blkif *blkif,
|
|
|
|
|
|
req_operation = req->operation == BLKIF_OP_INDIRECT ?
|
|
|
req->u.indirect.indirect_op : req->operation;
|
|
|
+
|
|
|
if ((req->operation == BLKIF_OP_INDIRECT) &&
|
|
|
(req_operation != BLKIF_OP_READ) &&
|
|
|
(req_operation != BLKIF_OP_WRITE)) {
|
|
@@ -1268,7 +1269,7 @@ static int dispatch_rw_block_io(struct xen_blkif *blkif,
|
|
|
seg[i].nsec = req->u.rw.seg[i].last_sect -
|
|
|
req->u.rw.seg[i].first_sect + 1;
|
|
|
seg[i].offset = (req->u.rw.seg[i].first_sect << 9);
|
|
|
- if ((req->u.rw.seg[i].last_sect >= (PAGE_SIZE >> 9)) ||
|
|
|
+ if ((req->u.rw.seg[i].last_sect >= (XEN_PAGE_SIZE >> 9)) ||
|
|
|
(req->u.rw.seg[i].last_sect <
|
|
|
req->u.rw.seg[i].first_sect))
|
|
|
goto fail_response;
|