Lines Matching refs:ifnet
80 struct ifnet *ifp; /* associated interface */
92 extern void (*ng_ether_input_p)(struct ifnet *ifp, struct mbuf **mp);
93 extern void (*ng_ether_input_orphan_p)(struct ifnet *ifp, struct mbuf *m);
94 extern int (*ng_ether_output_p)(struct ifnet *ifp, struct mbuf **mp);
95 extern void (*ng_ether_attach_p)(struct ifnet *ifp);
96 extern void (*ng_ether_detach_p)(struct ifnet *ifp);
97 extern void (*ng_ether_link_state_p)(struct ifnet *ifp, int state);
100 static void ng_ether_input(struct ifnet *ifp, struct mbuf **mp);
101 static void ng_ether_input_orphan(struct ifnet *ifp, struct mbuf *m);
102 static int ng_ether_output(struct ifnet *ifp, struct mbuf **mp);
103 static void ng_ether_attach(struct ifnet *ifp);
104 static void ng_ether_detach(struct ifnet *ifp);
105 static void ng_ether_link_state(struct ifnet *ifp, int state);
245 ng_ether_input(struct ifnet *ifp, struct mbuf **mp) in ng_ether_input()
262 ng_ether_input_orphan(struct ifnet *ifp, struct mbuf *m) in ng_ether_input_orphan()
281 ng_ether_output(struct ifnet *ifp, struct mbuf **mp) in ng_ether_output()
303 ng_ether_attach(struct ifnet *ifp) in ng_ether_attach()
353 ng_ether_detach(struct ifnet *ifp) in ng_ether_detach()
375 ng_ether_link_state(struct ifnet *ifp, int state) in ng_ether_link_state()
410 ng_ether_ifnet_arrival_event(void *arg __unused, struct ifnet *ifp) in ng_ether_ifnet_arrival_event()
669 struct ifnet *const ifp = priv->ifp; in ng_ether_rcv_lower()
717 struct ifnet *ifp = priv->ifp; in ng_ether_rcv_upper()
863 struct ifnet *ifp; in vnet_ng_ether_init()