mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix the regression introduced in r226859: if the local component is
out of date BIO_READ requests got lost instead of being sent to the remote component. Reviewed by: pjd MFC after: 1 week
This commit is contained in:
parent
fb6d9e6077
commit
2b2cb41812
1 changed files with 1 additions and 1 deletions
|
|
@ -1255,7 +1255,7 @@ ggate_recv_thread(void *arg)
|
|||
pjdlog_debug(2,
|
||||
"ggate_recv: (%p) Moving request to the send queues.", hio);
|
||||
refcount_init(&hio->hio_countdown, ncomps);
|
||||
for (ii = ncomp; ii < ncomps; ii++)
|
||||
for (ii = ncomp; ii < ncomp + ncomps; ii++)
|
||||
QUEUE_INSERT1(hio, send, ii);
|
||||
}
|
||||
/* NOTREACHED */
|
||||
|
|
|
|||
Loading…
Reference in a new issue