Lines Matching defs:v_rsp
553 struct virtio_scsi_cmd_resp v_rsp;
568 memset(&v_rsp, 0, sizeof(v_rsp));
569 v_rsp.resid = cpu_to_vhost32(cmd->tvc_vq, se_cmd->residual_count);
571 v_rsp.status = se_cmd->scsi_status;
572 v_rsp.sense_len = cpu_to_vhost32(cmd->tvc_vq,
574 memcpy(v_rsp.sense, cmd->tvc_sense_buf,
578 cmd->tvc_in_iovs, sizeof(v_rsp));
579 ret = copy_to_iter(&v_rsp, sizeof(v_rsp), &iov_iter);
580 if (likely(ret == sizeof(v_rsp))) {