xen-blkfront: use a different scatterlist for each request
authorRoger Pau Monne <roger.pau@citrix.com>
Thu, 2 May 2013 08:58:50 +0000 (10:58 +0200)
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Wed, 8 May 2013 12:46:51 +0000 (08:46 -0400)
commitb7649158a0d241f8d53d13ff7441858539e16656
treeacee055fae1b48f1c986dec29481d2b999dd3127
parentbb642e8315fd573795e8b6fa9b9629064d73add1
xen-blkfront: use a different scatterlist for each request

In blkif_queue_request blkfront iterates over the scatterlist in order
to set the segments of the request, and in blkif_completion blkfront
iterates over the raw request, which makes it hard to know the exact
position of the source and destination memory positions.

This can be solved by allocating a scatterlist for each request, that
will be keep until the request is finished, allowing us to copy the
data back to the original memory without having to iterate over the
raw request.

Oracle-Bug: 16660413 - LARGE ASYNCHRONOUS READS APPEAR BROKEN ON 2.6.39-400
CC: stable@vger.kernel.org
Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reported-and-Tested-by: Anne Milicia <anne.milicia@oracle.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
drivers/block/xen-blkfront.c