diff options
| author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-10-14 12:13:05 -0400 |
|---|---|---|
| committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2011-10-14 12:29:55 -0400 |
| commit | dda1852802a6cc6fdecb9021e491b2de680c76b9 (patch) | |
| tree | 49a4b77a84898dc3a31fe291d9519d4edbe92004 | |
| parent | 64391b2536ca92f9c589b2bfeaca3954896fe057 (diff) | |
xen/blkback: Check for proper operation.
The patch titled: "xen/blkback: Fix the inhibition to map pages
when discarding sector ranges." had the right idea except that
it used the wrong comparison operator. It had == instead of !=.
This fixes the bug where all (except discard) operations would
have been ignored.
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
| -rw-r--r-- | drivers/block/xen-blkback/blkback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/xen-blkback/blkback.c b/drivers/block/xen-blkback/blkback.c index 53c81de6f886..a1ee2659d2bc 100644 --- a/drivers/block/xen-blkback/blkback.c +++ b/drivers/block/xen-blkback/blkback.c | |||
| @@ -707,7 +707,7 @@ static int dispatch_rw_block_io(struct xen_blkif *blkif, | |||
| 707 | * the hypercall to unmap the grants - that is all done in | 707 | * the hypercall to unmap the grants - that is all done in |
| 708 | * xen_blkbk_unmap. | 708 | * xen_blkbk_unmap. |
| 709 | */ | 709 | */ |
| 710 | if (operation == REQ_DISCARD && xen_blkbk_map(req, pending_req, seg)) | 710 | if (operation != REQ_DISCARD && xen_blkbk_map(req, pending_req, seg)) |
| 711 | goto fail_flush; | 711 | goto fail_flush; |
| 712 | 712 | ||
| 713 | /* | 713 | /* |
