Lines Matching refs:M_NETGRAPH_ASYNC
62 static MALLOC_DEFINE(M_NETGRAPH_ASYNC, "netgraph_async", "netgraph async node");
64 #define M_NETGRAPH_ASYNC M_NETGRAPH macro
183 sc = malloc(sizeof(*sc), M_NETGRAPH_ASYNC, M_WAITOK | M_ZERO); in nga_constructor()
189 M_NETGRAPH_ASYNC, M_WAITOK); in nga_constructor()
191 M_NETGRAPH_ASYNC, M_WAITOK); in nga_constructor()
289 M_NETGRAPH_ASYNC, M_NOWAIT); in nga_rcvmsg()
292 free(sc->abuf, M_NETGRAPH_ASYNC); in nga_rcvmsg()
297 M_NETGRAPH_ASYNC, M_NOWAIT); in nga_rcvmsg()
300 free(sc->sbuf, M_NETGRAPH_ASYNC); in nga_rcvmsg()
339 free(sc->abuf, M_NETGRAPH_ASYNC); in nga_shutdown()
340 free(sc->sbuf, M_NETGRAPH_ASYNC); in nga_shutdown()
342 free(sc, M_NETGRAPH_ASYNC); in nga_shutdown()