[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH 1/3] xen: mark pvscsi frontend request consumed only after last read
On 01/30/2015 12:47 PM, Jan Beulich wrote: On 30.01.15 at 12:21, <JGross@xxxxxxxx> wrote:@@ -734,11 +734,11 @@ static int scsiback_do_cmd_fn(struct vscsibk_info *info) if (!pending_req) return 1; - ring_req = RING_GET_REQUEST(ring, rc); + memcpy(&ring_req, RING_GET_REQUEST(ring, rc), sizeof(ring_req));I'd recommend the type safe *ring_req = *RING_GET_REQUEST(ring, rc) here. I think I'll use ring_req = *RING_GET_REQUEST(ring, rc) :-) ring->req_cons = ++rc; - act = ring_req->act; - err = prepare_pending_reqs(info, ring_req, pending_req); + act = ring_req.act;Is this helper variable then still needed? No, you're right. Will delete it. Juergen _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |