1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-11 09:50:12 +00: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:
Robert Watson 2005-01-09 07:34:55 +00:00
parent e926c0ae48
commit 66d165347d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=139935

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);
}
/*