Searched refs:mtag (Results 26 - 50 of 58) sorted by relevance

123

/freebsd-13-stable/usr.sbin/bsdconfig/mouse/
H A Dport123 f_dialog_menutag_fetch mtag
126 case "$mtag" in
H A Dtype133 f_dialog_menutag_fetch mtag
136 case "$mtag" in
/freebsd-13-stable/usr.sbin/bsdconfig/security/
H A Dkern_securelevel132 f_dialog_menutag_fetch mtag
144 case "$mtag" in
H A Dsecurity158 f_dialog_menutag_fetch mtag
160 case "$mtag" in
/freebsd-13-stable/usr.sbin/bsdconfig/startup/
H A Dstartup119 f_dialog_menutag_fetch mtag
122 case "$mtag" in
H A Dmisc307 f_dialog_menutag_fetch mtag
309 case "$mtag" in
315 case "$mtag" in
/freebsd-13-stable/sys/netipsec/
H A Dipsec_input.c284 struct m_tag *mtag; local
372 mtag = m_tag_get(PACKET_TAG_IPSEC_IN_DONE,
374 if (mtag == NULL) {
381 xh = (struct xform_history *)(mtag + 1);
386 m_tag_prepend(m, mtag);
499 struct m_tag *mtag; local
573 mtag = m_tag_get(PACKET_TAG_IPSEC_IN_DONE,
575 if (mtag == NULL) {
582 xh = (struct xform_history *)(mtag + 1);
587 m_tag_prepend(m, mtag);
[all...]
H A Dipsec_output.c719 struct m_tag *mtag; local
756 mtag = m_tag_get(PACKET_TAG_IPSEC_OUT_DONE, sizeof(*xh), M_NOWAIT);
757 if (mtag == NULL) {
763 xh = (struct xform_history *)(mtag + 1);
768 m_tag_prepend(m, mtag);
H A Dipsec.c978 struct m_tag *mtag; local
980 mtag = NULL;
981 while ((mtag = m_tag_find(__DECONST(struct mbuf *, m),
982 PACKET_TAG_IPSEC_IN_DONE, mtag)) != NULL) {
983 xh = (struct xform_history *)(mtag + 1);
/freebsd-13-stable/sys/netpfil/ipfw/
H A Dip_fw2.c2440 struct m_tag *mtag; local
2453 mtag = m_tag_get(PACKET_TAG_PF,
2455 if (mtag == NULL) {
2462 m_tag_prepend(m, mtag);
2463 at = (struct pf_mtag *)(mtag + 1);
2585 struct m_tag *mtag; local
2589 mtag = m_tag_locate(m, MTAG_IPFW, tag, NULL);
2592 * present. And we must remove this mtag from
2595 * Otherwise we should allocate new mtag and
2599 if (mtag !
2676 struct m_tag *mtag; local
2886 struct m_tag *mtag; local
[all...]
H A Dip_dn_io.c236 struct m_tag *mtag = m_tag_first(m); local
239 if (mtag != NULL && mtag->m_tag_id == DN_AQM_MTAG_TS) {
240 m_tag_delete(m,mtag);
241 mtag = m_tag_first(m);
245 KASSERT(mtag != NULL &&
246 mtag->m_tag_cookie == MTAG_ABI_COMPAT &&
247 mtag->m_tag_id == PACKET_TAG_DUMMYNET,
249 return (struct dn_pkt_tag *)(mtag+1);
834 struct m_tag *mtag; local
[all...]
H A Ddn_sched_fq_pie.c338 * If getts is set, also extract packet's timestamp from mtag.
357 struct m_tag *mtag; local
358 mtag = m_tag_locate(m, MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, NULL);
359 if (mtag == NULL){
360 D("PIE timestamp mtag not found!");
363 *pkt_ts = *(aqm_time_t *)(mtag + 1);
364 m_tag_delete(m,mtag);
734 struct m_tag *mtag; local
735 mtag = m_tag_locate(m, MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, NULL);
736 if (mtag
[all...]
H A Ddn_sched_fq_codel.c187 struct m_tag *mtag; local
188 mtag = m_tag_locate(m, MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, NULL);
189 if (mtag == NULL)
190 mtag = m_tag_alloc(MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, sizeof(aqm_time_t),
192 if (mtag == NULL)
194 *(aqm_time_t *)(mtag + 1) = AQM_UNOW;
195 m_tag_prepend(m, mtag);
H A Dip_fw_pfil.c360 struct m_tag *mtag; local
362 mtag = m_tag_locate(*p.m, MTAG_IPFW_RULE, 0, NULL);
363 if (mtag != NULL) {
364 args.rule = *((struct ipfw_rule_ref *)(mtag+1));
365 m_tag_delete(*p.m, mtag);
/freebsd-13-stable/sys/dev/firewire/
H A Dif_fwip.c537 struct m_tag *mtag; local
576 mtag = m_tag_locate(m, MTAG_FIREWIRE, MTAG_FIREWIRE_HWADDR, 0);
577 if (mtag == NULL)
580 destfw = (struct fw_hwaddr *) (mtag + 1);
713 struct m_tag *mtag; local
785 mtag = m_tag_alloc(MTAG_FIREWIRE,
788 if (mtag) {
791 uint32_t *p = (uint32_t *) (mtag + 1);
801 m_tag_prepend(m, mtag);
840 struct m_tag *mtag; local
[all...]
/freebsd-13-stable/usr.sbin/bsdconfig/console/
H A Dkeymap242 f_dialog_menutag_fetch mtag
248 mtag="${mtag# }" # remove single leading-space if-present
251 [ "$msg" = "$mtag" ] && keymap_name="$name" break
H A Dfont141 f_dialog_menutag_fetch mtag
144 case "$mtag" in
/freebsd-13-stable/sys/netgraph/netflow/
H A Dng_netflow.c596 struct m_tag *mtag; local
627 mtag = m_tag_locate(NGI_M(item), MTAG_NETFLOW,
629 while (mtag != NULL) {
631 ((ng_ID_t *)(mtag + 1))[0] == NG_NODE_ID(node)) {
635 mtag = m_tag_locate(NGI_M(item), MTAG_NETFLOW,
636 MTAG_NETFLOW_CALLED, mtag);
650 mtag = m_tag_alloc(MTAG_NETFLOW, MTAG_NETFLOW_CALLED,
652 if (mtag) {
653 ((ng_ID_t *)(mtag + 1))[0] = NG_NODE_ID(node);
654 m_tag_prepend(NGI_M(item), mtag); local
[all...]
/freebsd-13-stable/sys/netinet6/
H A Dnd6_nbr.c408 struct m_tag *mtag; local
577 mtag = m_tag_get(PACKET_TAG_ND_OUTGOING,
579 if (mtag == NULL)
581 *(unsigned short *)(mtag + 1) = nd_ns->nd_ns_type;
582 m_tag_prepend(m, mtag);
945 struct m_tag *mtag; local
1074 mtag = m_tag_get(PACKET_TAG_ND_OUTGOING,
1076 if (mtag == NULL)
1078 *(unsigned short *)(mtag + 1) = nd_na->nd_na_type;
1079 m_tag_prepend(m, mtag);
[all...]
H A Dfrag6.c379 struct m_tag *mtag; local
843 mtag = m_tag_alloc(MTAG_ABI_IPV6, IPV6_TAG_DIRECT, sizeof(*ip6dc),
845 if (mtag == NULL)
848 ip6dc = (struct ip6_direct_ctx *)(mtag + 1);
852 m_tag_prepend(m, mtag);
H A Draw_ip6.c396 struct m_tag *mtag; local
547 mtag = m_tag_get(PACKET_TAG_ND_OUTGOING,
549 if (mtag == NULL)
551 m_tag_prepend(m, mtag);
H A Dip6_input.c487 struct m_tag *mtag; local
490 mtag = m_tag_locate(m, MTAG_ABI_IPV6, IPV6_TAG_DIRECT, NULL);
491 KASSERT(mtag != NULL, ("Reinjected packet w/o direct ctx tag!"));
493 ip6dc = (struct ip6_direct_ctx *)(mtag + 1);
499 m_tag_delete(m, mtag);
/freebsd-13-stable/usr.sbin/bsdconfig/timezone/
H A Dtimezone291 f_dialog_menutag_fetch mtag
300 continent=$( eval f_dialog_menutag2item \"\$mtag\" \
/freebsd-13-stable/sys/netinet/
H A Dip_carp.c183 * - Sending ad, we put the pointer to the softc in an mtag, and no reference
783 struct m_tag *mtag; local
799 if ((mtag = m_tag_get(PACKET_TAG_CARP, sizeof(struct carp_softc *),
805 bcopy(&sc, mtag + 1, sizeof(sc));
806 m_tag_prepend(m, mtag);
1215 struct m_tag *mtag; local
1217 mtag = m_tag_get(PACKET_TAG_CARP,
1219 if (mtag == NULL)
1223 bcopy(&sc, mtag + 1, sizeof(sc));
1224 m_tag_prepend(m, mtag);
1520 struct m_tag *mtag; local
[all...]
/freebsd-13-stable/sys/net/
H A Dif_vlan.c1284 struct m_tag *mtag; local
1357 mtag = m_tag_locate(m, MTAG_8021Q, MTAG_8021Q_PCP_IN, NULL);
1358 if (mtag == NULL) {
1359 mtag = m_tag_alloc(MTAG_8021Q, MTAG_8021Q_PCP_IN,
1361 if (mtag == NULL) {
1366 m_tag_prepend(m, mtag);
1368 *(uint8_t *)(mtag + 1) = EVL_PRIOFTAG(tag);

Completed in 242 milliseconds

123