mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
ae(4): Stop checking for failures from taskqueue_create_fast(M_WAITOK)
MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D45853
This commit is contained in:
parent
778ea7ed5a
commit
3f3f3ca25b
1 changed files with 0 additions and 6 deletions
|
|
@ -362,12 +362,6 @@ ae_attach(device_t dev)
|
|||
*/
|
||||
sc->tq = taskqueue_create_fast("ae_taskq", M_WAITOK,
|
||||
taskqueue_thread_enqueue, &sc->tq);
|
||||
if (sc->tq == NULL) {
|
||||
device_printf(dev, "could not create taskqueue.\n");
|
||||
ether_ifdetach(ifp);
|
||||
error = ENXIO;
|
||||
goto fail;
|
||||
}
|
||||
taskqueue_start_threads(&sc->tq, 1, PI_NET, "%s taskq",
|
||||
device_get_nameunit(sc->dev));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue