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:
Robert Watson
2005-01-09 07:34:55 +00:00
parent e926c0ae48
commit 66d165347d
+1 -1
View File
@@ -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);
}
/*