mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Mark the IPX netisr as MPSAFE so that inbound IPX traffic is processed
without Giant, and can be directly dispatched in the ithread when net.isr.enable is turned on. MFC after: 4 weeks
This commit is contained in:
parent
e926c0ae48
commit
66d165347d
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ ipx_init()
|
|||
|
||||
ipxintrq.ifq_maxlen = ipxqmaxlen;
|
||||
mtx_init(&ipxintrq.ifq_mtx, "ipx_inq", NULL, MTX_DEF);
|
||||
netisr_register(NETISR_IPX, ipxintr, &ipxintrq, 0);
|
||||
netisr_register(NETISR_IPX, ipxintr, &ipxintrq, NETISR_MPSAFE);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue