From 6252bd331d788b0301c3c6a692e2902f088bc8a8 Mon Sep 17 00:00:00 2001 From: Robert Watson Date: Fri, 24 Mar 2006 00:00:23 +0000 Subject: [PATCH] Comment that raw output filter code for IPX should run in a netisr so as to avoid recursing the socket code, as this input path can run in the call stack of an output path. MFC after: 1 month --- sys/netipx/ipx_input.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/netipx/ipx_input.c b/sys/netipx/ipx_input.c index b751ea4c9653..eb892c2a8cfd 100644 --- a/sys/netipx/ipx_input.c +++ b/sys/netipx/ipx_input.c @@ -427,6 +427,10 @@ register struct route *ro; } } +/* + * XXXRW: This code should be run in its own netisr dispatch to avoid a call + * back into the socket code from the IPX output path. + */ void ipx_watch_output(m, ifp) struct mbuf *m;