mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-28 14:00:44 +00:00
hw/scsi/spapr_vscsi: Simplify a bit
We already have a 'iu' pointer, use it (this simplifies the next commit). Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200305121253.19078-4-philmd@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
0dc556987d
commit
06109ab34e
@ -261,9 +261,9 @@ static int vscsi_send_rsp(VSCSIState *s, vscsi_req *req,
|
||||
if (status) {
|
||||
iu->srp.rsp.sol_not = (sol_not & 0x04) >> 2;
|
||||
if (req->senselen) {
|
||||
req->iu.srp.rsp.flags |= SRP_RSP_FLAG_SNSVALID;
|
||||
req->iu.srp.rsp.sense_data_len = cpu_to_be32(req->senselen);
|
||||
memcpy(req->iu.srp.rsp.data, req->sense, req->senselen);
|
||||
iu->srp.rsp.flags |= SRP_RSP_FLAG_SNSVALID;
|
||||
iu->srp.rsp.sense_data_len = cpu_to_be32(req->senselen);
|
||||
memcpy(iu->srp.rsp.data, req->sense, req->senselen);
|
||||
total_len += req->senselen;
|
||||
}
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user