mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[UNIATA] Workaround random crashes on Virtual PC (#3377)
I am not sure why this line was added.
I don't know how I could improve that case.
Then, disable it, for the time being.
Addendum to 4b9cf2e
(r71252). CORE-12441 CORE-17371
This commit is contained in:
parent
d65d4137d3
commit
ba77a09c04
1 changed files with 4 additions and 0 deletions
|
@ -231,7 +231,11 @@ UniataQueueRequest(
|
||||||
AtaReq->next_req = NULL;
|
AtaReq->next_req = NULL;
|
||||||
LunExt->first_req =
|
LunExt->first_req =
|
||||||
LunExt->last_req = AtaReq;
|
LunExt->last_req = AtaReq;
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
// Do nothing here, workaround for CORE-12441 and CORE-17371
|
||||||
|
#else
|
||||||
chan->cur_cdev = GET_CDEV(Srb);
|
chan->cur_cdev = GET_CDEV(Srb);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
LunExt->queue_depth++;
|
LunExt->queue_depth++;
|
||||||
chan->queue_depth++;
|
chan->queue_depth++;
|
||||||
|
|
Loading…
Reference in a new issue