HomeSort by: relevance | last modified time | path
    Searched defs:psref (Results 1 - 25 of 59) sorted by relevancy

1 2 3

  /src/sys/netinet6/
nd6_rtr.c 67 struct psref psref; local
70 ifp = m_get_rcvif_psref(m, &psref);
95 m_put_rcvif_psref(ifp, &psref);
113 m_put_rcvif_psref(ifp, &psref);
146 m_put_rcvif_psref(ifp, &psref);
153 m_put_rcvif_psref(ifp, &psref);
in6_l2tp.c 246 struct psref psref; local
273 var = l2tp_lookup_session_ref(sess_id, &psref);
341 l2tp_putref_variant(var, &psref);
358 struct psref psref; local
364 var = l2tp_getref_variant(sc, &psref);
391 l2tp_putref_variant(var, &psref);
in6_gif.c 278 struct psref psref_var;
288 struct psref psref; local
289 struct ifnet *rcvif = m_get_rcvif_psref(m, &psref);
291 m_put_rcvif_psref(rcvif, &psref);
297 m_put_rcvif_psref(rcvif, &psref);
410 struct psref psref; local
414 ifp = m_get_rcvif_psref(m, &psref);
418 m_put_rcvif_psref(ifp, &psref);
475 struct psref psref; local
    [all...]
in6_ifattach.c 640 struct psref psref; local
641 ia = in6ifa_ifpforlinklocal_psref(ifp, 0, &psref);
646 ia6_release(ia, &psref);
mld6.c 354 struct psref psref; local
356 ifp = m_get_rcvif_psref(m, &psref);
457 * never executed as long as we have a psref of the ifp.
538 m_put_rcvif_psref(ifp, &psref);
556 struct psref psref; local
569 ia = in6ifa_ifpforlinklocal_psref(ifp, ignflags, &psref);
575 ia6_release(ia, &psref);
582 ia6_release(ia, &psref);
1003 struct psref psref, psref_ia; local
    [all...]
  /src/sys/sys/
psref.h 1 /* $NetBSD: psref.h,v 1.4 2019/05/17 03:34:27 ozaki-r Exp $ */
45 struct psref;
67 * struct psref
72 * psref_target. The contents of struct psref may be read and
75 struct psref { struct
76 SLIST_ENTRY(psref) psref_entry;
93 void psref_acquire(struct psref *, const struct psref_target *,
95 void psref_release(struct psref *, const struct psref_target *,
97 void psref_copy(struct psref *, const struct psref *,
    [all...]
  /src/sys/compat/common/
if_43.c 233 struct psref psref; local
236 ifp = if_get(ifr->ifr_name, &psref);
284 if_put(ifp, &psref);
uipc_syscalls_40.c 46 struct psref psref; local
71 if_acquire(ifp, &psref);
95 struct psref psref_ifa;
153 if_release(ifp, &psref);
165 if_release(ifp, &psref);
  /src/sys/net/npf/
npf_ext_log.c 87 struct psref psref; local
135 ifp = if_get_byindex(log->if_idx, &psref);
147 if_put(ifp, &psref);
  /src/sys/arch/alpha/alpha/
autoconf.c 186 struct psref psref; local
211 struct ifnet *ifp = if_get_bylla(enaddr, ETHER_ADDR_LEN, &psref);
218 if_put(ifp, &psref);
  /src/sys/netinet/
in_l2tp.c 250 struct psref psref; local
277 var = l2tp_lookup_session_ref(sess_id, &psref);
346 l2tp_putref_variant(var, &psref);
363 struct psref psref; local
369 var = l2tp_getref_variant(sc, &psref);
396 l2tp_putref_variant(var, &psref);
igmp.c 194 struct psref psref; local
234 ifp = m_get_rcvif_psref(m, &psref);
467 m_put_rcvif_psref(ifp, &psref);
482 m_put_rcvif_psref(ifp, &psref);
in_gif.c 218 struct psref psref_var;
229 struct psref psref_rcvif;
347 struct psref psref; local
351 ifp = m_get_rcvif_psref(m, &psref);
355 m_put_rcvif_psref(ifp, &psref);
ip_encap.h 39 #include <sys/psref.h>
97 struct psref_target psref; member in struct:encaptab
  /src/sys/net/
nd.c 57 struct psref psref; local
76 if_acquire(ifp, &psref);
215 if_release(ifp, &psref);
414 struct psref psref; local
421 if_acquire(ifp, &psref);
425 if_release(ifp, &psref);
link_proto.c 144 struct psref psref; local
175 ifa_acquire(ifa, &psref);
183 ifa_release(ifa, &psref);
215 /* We need to release psref for ifa_remove */
217 ifa_release(ifa, &psref);
232 ifa_acquire(ifa, &psref);
249 ifa_release(ifa, &psref);
pfil.c 41 #include <sys/psref.h>
60 struct psref_target psref; member in struct:__anon7084
108 psref_target_init(&pflistset->active->psref, pfil_psref_class);
143 psref_target_destroy(&pfh->ph_in.active->psref, pfil_psref_class);
144 psref_target_destroy(&pfh->ph_out.active->psref, pfil_psref_class);
145 psref_target_destroy(&pfh->ph_ifaddr.active->psref, pfil_psref_class);
146 psref_target_destroy(&pfh->ph_ifevent.active->psref, pfil_psref_class);
219 psref_target_init(&newlist->psref, pfil_psref_class);
248 psref_target_destroy(&oldlist->psref, pfil_psref_class);
332 psref_target_init(&newlist->psref, pfil_psref_class)
410 struct psref psref; local
456 struct psref psref; local
    [all...]
rtsock.c 282 struct psref psref; local
316 if_acquire(ifp, &psref);
353 struct psref _psref;
388 if_release(ifp, &psref);
396 if_release(ifp, &psref);
if_gif.c 63 #include <sys/psref.h>
456 struct psref psref; local
466 var = gif_getref_variant(sc, &psref);
515 gif_putref_variant(var, &psref);
537 struct psref psref; local
553 var = gif_getref_variant(sc, &psref);
579 gif_putref_variant(var, &psref);
591 struct psref psref local
636 struct psref psref; local
743 struct psref psref; local
1109 struct psref psref; local
    [all...]
if_llatbl.c 641 struct psref psref; local
648 ifp = if_get_byindex(sdl_index, &psref);
650 ifp = if_get_byindex(dl->sdl_index, &psref);
754 struct psref _psref;
782 if_put(ifp, &psref);
  /src/sys/compat/linux32/common/
linux32_socket.c 428 struct psref psref; local
448 if_acquire(ifp, &psref);
460 struct psref psref_ifa;
486 if_release(ifp, &psref);
499 if_release(ifp, &psref);
  /src/sys/kern/
subr_psref.c 45 * space, a struct psref object. Sleeping while a passive
78 #include <sys/psref.h>
83 SLIST_HEAD(psref_head, psref);
121 struct psref *prdi_psref;
130 static void psref_debug_acquire(struct psref *);
131 static void psref_debug_release(struct psref *);
231 psref_exist(struct psref_cpu *pcpu, struct psref *psref)
233 struct psref *_psref;
236 if (_psref == psref)
550 const struct psref *psref; local
    [all...]
  /src/sys/netatalk/
aarp.c 354 struct psref psref; local
384 ifa_acquire(ifa, &psref);
400 ifa_acquire(ifa, &psref);
523 ifa_release(ifa, &psref);
  /src/sys/dev/vmt/
vmt_subr.c 701 struct psref psref; local
715 iface_addr = if_first_addr_psref(iface, AF_INET, &psref);
730 ifa_release(iface_addr, &psref);
  /src/sys/dist/pf/net/
pf_if.c 128 struct psref psref; local
129 if_acquire(ifp, &psref);
136 if_release(ifp, &psref);
161 struct psref psref; local
162 if_acquire(ifp, &psref);
169 if_release(ifp, &psref);

Completed in 52 milliseconds

1 2 3