Searched refs:vnet (Results 1 - 25 of 181) sorted by relevance

12345678

/freebsd-9.3-release/sys/net/
H A Dvnet.c67 #include <net/vnet.h>
84 static MALLOC_DEFINE(M_VNET, "vnet", "network stack control block");
106 struct vnet *vnet0;
119 * vnet linker set. These "master" copies of global variables serve two
134 * referred to by vnet->vnet_data_mem. Critical to the design is that each
138 * vnet->vnet_data_base, is stored in each vnet, and is the amount that can
140 * per-vnet instance.
145 * for potential module variables using a per-vnet character array,
212 SDT_PROVIDER_DEFINE(vnet); variable
233 struct vnet *vnet; local
271 vnet_destroy(struct vnet *vnet) argument
458 struct vnet *vnet; local
516 struct vnet *vnet; local
585 struct vnet *vnet; local
[all...]
H A Dvnet.h42 * - Definition of 'struct vnet' and functions and macros to allocate/free/
61 * struct vnet describes a virtualized network stack, and is primarily a
68 struct vnet { struct
69 LIST_ENTRY(vnet) vnet_le; /* all vnets list */
108 struct vnet *vnet_alloc(void);
109 void vnet_destroy(struct vnet *vnet);
132 void vnet_log_recursion(struct vnet *, const char *, int);
136 ("CURVNET_SET at %s:%d %s() curvnet=%p vnet=%p", \
138 struct vnet *saved_vne
[all...]
H A Dif_debug.c43 #include <net/vnet.h>
113 db_printf("vnet=%p\n", curvnet);
H A Draw_cb.c48 #include <net/vnet.h>
H A Dif_mib.c40 #include <net/vnet.h>
H A Draw_usrreq.c50 #include <net/vnet.h>
H A Dif_var.h74 struct vnet;
83 #include <net/vnet.h>
123 struct vnet *if_vnet; /* pointer to network stack instance */
172 void (*if_reassign) /* reassign to vnet routine */
173 (struct ifnet *, struct vnet *, char *);
174 struct vnet *if_home_vnet; /* where this ifnet originates from */
912 void if_vmove(struct ifnet *, struct vnet *);
/freebsd-9.3-release/lib/libkvm/
H A Dkvm_vnet.c44 #include <net/vnet.h>
64 struct vnet vnet; local
185 _kvm_err(kd, kd->program, "%s: no vnet", __func__);
188 if (kvm_read(kd, (uintptr_t)prison.pr_vnet, &vnet, sizeof(vnet)) !=
189 sizeof(vnet)) {
190 _kvm_err(kd, kd->program, "%s: vnet", __func__);
193 if (vnet.vnet_magic_n != VNET_MAGIC_N) {
194 _kvm_err(kd, kd->program, "%s: invalid vnet magi
[all...]
/freebsd-9.3-release/tools/regression/ipfw/fwd/
H A Dvimage-fwd.sh189 ljid=`jail -i -c -n lef$$ host.hostname=left.example.net vnet persist`
192 mjid=`jail -i -c -n mid$$ host.hostname=center.example.net vnet persist`
195 rjid=`jail -i -c -n right$$ host.hostname=right.example.net vnet persist`
210 ifconfig ${lmep}a vnet ${ljid}
211 ifconfig ${lmep}b vnet ${mjid}
230 ifconfig ${mrep}a vnet ${mjid}
231 ifconfig ${mrep}b vnet ${rjid}
/freebsd-9.3-release/sys/ddb/
H A Ddb_sym.c39 #include <net/vnet.h>
122 * Validate the virtual network pointer used to interpret per-vnet global
124 * walk the global vnet list to check it's an OK pointer.
146 * Read-only variable reporting the current vnet, which is what we use when
272 struct vnet *vnet; local
275 vnet = db_vnet;
277 vnet = curvnet;
285 *valuep = (db_expr_t)((uintptr_t)value + vnet->vnet_data_base);
/freebsd-9.3-release/etc/
H A Drc.shutdown86 if [ `/sbin/sysctl -n security.jail.vnet` -ne 1 ]; then
H A Drc85 if [ `/sbin/sysctl -n security.jail.vnet` -ne 1 ]; then
/freebsd-9.3-release/share/examples/netgraph/
H A Dvirtual.chain224 ifconfig ${EIFACE} vnet ${NODE_NAME}
268 jail -c vnet name=${1} host.hostname=${1} \
H A Dvirtual.lan187 jail -c vnet name=${NODE_NAME} host.hostname=${NODE_NAME} \
217 ifconfig ${EIFACE} vnet ${NODE_NAME}
/freebsd-9.3-release/sys/netinet/
H A Dtcp_syncache.h98 struct vnet *sch_vnet;
H A Din_rmx.c44 #include <net/vnet.h>
243 CURVNET_SET((struct vnet *) rock);
/freebsd-9.3-release/sys/netipsec/
H A Dxform_tcp.c51 #include <net/vnet.h>
/freebsd-9.3-release/tools/tools/vimage/
H A Dvimage.c60 int vnet; member in struct:vimage_status
163 if (vst[vst_last].vnet != 1)
239 /* Search for a free ifunit in target vnet. Unsafe. */
257 "vnet", NULL,
336 jailparam_init(&params[psize], "vnet");
337 jailparam_import_raw(&params[psize++], &vs->vnet, sizeof(vs->vnet));
/freebsd-9.3-release/sys/compat/svr4/
H A Dsvr4_sockio.c41 #include <net/vnet.h>
/freebsd-9.3-release/sys/netinet/cc/
H A Dcc_hd.c70 #include <net/vnet.h>
H A Dcc_newreno.c63 #include <net/vnet.h>
/freebsd-9.3-release/sys/sys/
H A Dsocketvar.h48 struct vnet;
79 struct vnet *so_vnet; /* network stack instance */
/freebsd-9.3-release/sys/contrib/pf/net/
H A Dpf_if.c64 #include <net/vnet.h>
1070 CURVNET_SET((struct vnet *)arg);
1081 CURVNET_SET((struct vnet *)arg);
1092 CURVNET_SET((struct vnet *)arg);
/freebsd-9.3-release/sys/kern/
H A Dsubr_trap.c81 #include <net/vnet.h>
151 ("%s: Returning on td %p (pid %d, %s) with vnet %p set in %s",
H A Dsys_socket.c54 #include <net/vnet.h>

Completed in 112 milliseconds

12345678