mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Make sure to invoke unlocked foo_start since the taskqueue does not
hold a driver lock. This should fix a regression introduced in r216925. PR: kern/153769
This commit is contained in:
parent
407dcb49df
commit
159ea02c0d
1 changed files with 1 additions and 1 deletions
|
|
@ -2706,7 +2706,7 @@ alc_int_task(void *arg, int pending)
|
|||
}
|
||||
if ((ifp->if_drv_flags & IFF_DRV_RUNNING) != 0 &&
|
||||
!IFQ_DRV_IS_EMPTY(&ifp->if_snd))
|
||||
alc_start_locked(ifp);
|
||||
alc_start(ifp);
|
||||
}
|
||||
|
||||
if (more == EAGAIN ||
|
||||
|
|
|
|||
Loading…
Reference in a new issue