Lines Matching refs:M_NETGRAPH_ASYNC
64 static MALLOC_DEFINE(M_NETGRAPH_ASYNC, "netgraph_async", "netgraph async node");
66 #define M_NETGRAPH_ASYNC M_NETGRAPH macro
185 sc = malloc(sizeof(*sc), M_NETGRAPH_ASYNC, M_WAITOK | M_ZERO); in nga_constructor()
191 M_NETGRAPH_ASYNC, M_WAITOK); in nga_constructor()
193 M_NETGRAPH_ASYNC, M_WAITOK); in nga_constructor()
291 M_NETGRAPH_ASYNC, M_NOWAIT); in nga_rcvmsg()
294 free(sc->abuf, M_NETGRAPH_ASYNC); in nga_rcvmsg()
299 M_NETGRAPH_ASYNC, M_NOWAIT); in nga_rcvmsg()
302 free(sc->sbuf, M_NETGRAPH_ASYNC); in nga_rcvmsg()
341 free(sc->abuf, M_NETGRAPH_ASYNC); in nga_shutdown()
342 free(sc->sbuf, M_NETGRAPH_ASYNC); in nga_shutdown()
344 free(sc, M_NETGRAPH_ASYNC); in nga_shutdown()