Home
last modified time | relevance | path

Searched refs:route_pcpu (Results 1 – 3 of 3) sorted by relevance

/dragonfly/sys/net/stf/
H A Dif_stf.c125 struct route *route_pcpu; member
185 sc->route_pcpu = kmalloc(netisr_ncpus * sizeof(struct route), in stfmodevent()
217 if (sc->route_pcpu[cpu].ro_rt != NULL) { in stfmodevent()
218 rtfree_async(sc->route_pcpu[cpu].ro_rt); in stfmodevent()
219 sc->route_pcpu[cpu].ro_rt = NULL; in stfmodevent()
222 kfree(sc->route_pcpu, M_STF); in stfmodevent()
414 ro = &sc->route_pcpu[mycpuid]; in stf_output_serialized()
/dragonfly/sys/net/gre/
H A Dif_gre.c208 sc->route_pcpu = kmalloc(netisr_ncpus * sizeof(struct route), M_GRE, in gre_clone_create()
231 if (sc->route_pcpu[cpu].ro_rt != NULL) { in gre_clone_destroy()
232 rtfree_async(sc->route_pcpu[cpu].ro_rt); in gre_clone_destroy()
233 sc->route_pcpu[cpu].ro_rt = NULL; in gre_clone_destroy()
236 kfree(sc->route_pcpu, M_GRE); in gre_clone_destroy()
274 ro = &sc->route_pcpu[mycpuid]; in gre_output_serialized()
708 KASSERT(ro == &sc->route_pcpu[mycpuid], ("route mismatch")); in gre_compute_route()
779 ro = &sc->route_pcpu[mycpuid]; in gre_check_route_handler()
H A Dif_gre.h55 struct route *route_pcpu;/* routing entry that determines, where a member