Searched refs:mtag (Results 1 - 25 of 68) sorted by path

123

/freebsd-11-stable/contrib/gcc/
H A Dtree.h2411 #define MTAG_GLOBAL(NODE) (TREE_MEMORY_TAG_CHECK (NODE)->mtag.is_global)
2416 #define SMT_USED_ALONE(NODE) (SYMBOL_MEMORY_TAG_CHECK (NODE)->mtag.is_used_alone)
2421 #define SMT_OLD_USED_ALONE(NODE) (SYMBOL_MEMORY_TAG_CHECK (NODE)->mtag.old_used_alone)
3305 struct tree_memory_tag GTY ((tag ("TS_MEMORY_TAG"))) mtag;
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dasn1_mac.h443 # define M_ASN1_I2D_len_EXP_opt(a,f,mtag,v) \
447 ret+=ASN1_object_size(1,v,mtag); \
450 # define M_ASN1_I2D_len_EXP_SET_opt(a,f,mtag,tag,v) \
454 ret+=ASN1_object_size(1,v,mtag); \
457 # define M_ASN1_I2D_len_EXP_SEQUENCE_opt(a,f,mtag,tag,v) \
462 ret+=ASN1_object_size(1,v,mtag); \
465 # define M_ASN1_I2D_len_EXP_SEQUENCE_opt_type(type,a,f,mtag,tag,v) \
471 ret+=ASN1_object_size(1,v,mtag); \
536 # define M_ASN1_I2D_put_EXP_SET_opt(a,f,mtag,tag,v) \
539 ASN1_put_object(&p,1,v,mtag,V_ASN1_CONTEXT_SPECIFI
[all...]
/freebsd-11-stable/sys/arm/at91/
H A Dif_ate.c140 bus_dma_tag_t mtag; /* bus dma tag for mbufs */ member in struct:ate_softc
569 1, MCLBYTES, 0, busdma_lock_mutex, &sc->sc_mtx, &sc->mtag))
572 if ( bus_dmamap_create(sc->mtag, 0, &sc->tx_map[i]))
689 if (sc->mtag != NULL) {
692 bus_dmamap_sync(sc->mtag, sc->tx_map[i],
694 bus_dmamap_unload(sc->mtag, sc->tx_map[i]);
697 bus_dmamap_destroy(sc->mtag, sc->tx_map[i]);
701 bus_dma_tag_destroy(sc->mtag);
1040 bus_dmamap_sync(sc->mtag, sc->tx_map[sc->txtail],
1042 bus_dmamap_unload(sc->mtag, s
[all...]
/freebsd-11-stable/sys/arm/xscale/ixp425/
H A Dif_npe.c110 bus_dma_tag_t mtag; /* bus dma tag for mbuf data */ member in struct:npedma
488 busdma_lock_mutex, &sc->sc_mtx, &dma->mtag);
540 error = bus_dmamap_create(dma->mtag, BUS_DMA_NOWAIT,
562 bus_dmamap_destroy(dma->mtag, npe->ix_map);
571 if (dma->mtag)
572 bus_dma_tag_destroy(dma->mtag);
1072 bus_dmamap_unload(dma->mtag, npe->ix_map);
1073 error = bus_dmamap_load_mbuf_sg(dma->mtag, npe->ix_map, m,
1089 bus_dmamap_sync(dma->mtag, npe->ix_map, BUS_DMASYNC_PREREAD);
1131 bus_dmamap_sync(dma->mtag, np
[all...]
/freebsd-11-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);
712 struct m_tag *mtag; local
784 mtag = m_tag_alloc(MTAG_FIREWIRE,
787 if (mtag) {
790 uint32_t *p = (uint32_t *) (mtag + 1);
800 m_tag_prepend(m, mtag);
838 struct m_tag *mtag; local
[all...]
/freebsd-11-stable/sys/dev/ixgb/
H A Dif_ixgb.c988 mtag = VLAN_OUTPUT_TAG(ifp, m_head);
1012 if (mtag != NULL) {
1014 current_tx_desc->vlan = VLAN_TAG_VALUE(mtag);
/freebsd-11-stable/sys/dev/tx/
H A Dif_txvar.h84 bus_dma_tag_t mtag; member in struct:__anon11764
/freebsd-11-stable/sys/net/altq/
H A Daltq_codel.c288 struct m_tag *mtag; local
292 mtag = m_tag_locate(m, MTAG_CODEL, 0, NULL);
293 if (mtag == NULL)
294 mtag = m_tag_alloc(MTAG_CODEL, 0, sizeof(uint64_t),
296 if (mtag == NULL) {
300 enqueue_time = (uint64_t *)(mtag + 1);
302 m_tag_prepend(m, mtag);
316 struct m_tag *mtag; local
324 mtag = m_tag_locate(m, MTAG_CODEL, 0, NULL);
325 if (mtag
[all...]
/freebsd-11-stable/sys/net/
H A Dif_gif.c458 struct m_tag *mtag; local
469 mtag = NULL;
470 while ((mtag = m_tag_locate(m, MTAG_GIF, 0, mtag)) != NULL) {
471 if (*(struct ifnet **)(mtag + 1) == ifp) {
483 mtag = m_tag_alloc(MTAG_GIF, 0, sizeof(struct ifnet *), M_NOWAIT);
484 if (mtag == NULL)
486 *(struct ifnet **)(mtag + 1) = ifp;
487 m_tag_prepend(m, mtag);
504 * the gif_transmit() routine, avoiding using yet another mtag
[all...]
H A Dif_gre.c786 struct m_tag *mtag;
790 mtag = NULL;
791 while ((mtag = m_tag_locate(m, MTAG_GRE, 0, mtag)) != NULL) {
792 if (*(struct ifnet **)(mtag + 1) == ifp) {
804 mtag = m_tag_alloc(MTAG_GRE, 0, sizeof(struct ifnet *), M_NOWAIT);
805 if (mtag == NULL)
807 *(struct ifnet **)(mtag + 1) = ifp;
808 m_tag_prepend(m, mtag);
H A Dif_me.c492 struct m_tag *mtag; local
496 mtag = NULL;
497 while ((mtag = m_tag_locate(m, MTAG_ME, 0, mtag)) != NULL) {
498 if (*(struct ifnet **)(mtag + 1) == ifp) {
510 mtag = m_tag_alloc(MTAG_ME, 0, sizeof(struct ifnet *), M_NOWAIT);
511 if (mtag == NULL)
513 *(struct ifnet **)(mtag + 1) = ifp;
514 m_tag_prepend(m, mtag);
/freebsd-11-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-11-stable/sys/netgraph/
H A Dng_iface.c347 struct m_tag *mtag; local
359 mtag = NULL;
360 while ((mtag = m_tag_locate(m, MTAG_NGIF, MTAG_NGIF_CALLED, mtag))) {
361 if (*(struct ifnet **)(mtag + 1) == ifp) {
367 mtag = m_tag_alloc(MTAG_NGIF, MTAG_NGIF_CALLED, sizeof(struct ifnet *),
369 if (mtag == NULL) {
373 *(struct ifnet **)(mtag + 1) = ifp;
374 m_tag_prepend(m, mtag);
/freebsd-11-stable/sys/netinet6/
H A Dfrag6.c225 struct m_tag *mtag; local
685 mtag = m_tag_alloc(MTAG_ABI_IPV6, IPV6_TAG_DIRECT, sizeof(*ip6dc),
687 if (mtag == NULL)
690 ip6dc = (struct ip6_direct_ctx *)(mtag + 1);
694 m_tag_prepend(m, mtag);
/freebsd-11-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);
496 struct m_tag *mtag; local
571 mtag = m_tag_get(PACKET_TAG_IPSEC_IN_DONE,
573 if (mtag == NULL) {
580 xh = (struct xform_history *)(mtag + 1);
585 m_tag_prepend(m, mtag);
[all...]
H A Dipsec_output.c691 struct m_tag *mtag; local
728 mtag = m_tag_get(PACKET_TAG_IPSEC_OUT_DONE, sizeof(*xh), M_NOWAIT);
729 if (mtag == NULL) {
735 xh = (struct xform_history *)(mtag + 1);
740 m_tag_prepend(m, mtag);
/freebsd-11-stable/sys/netpfil/ipfw/
H A Ddn_aqm_codel.c186 * Also extract packet's timestamp from mtag.
191 struct m_tag *mtag; local
205 mtag = m_tag_locate(m, MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, NULL);
206 if (mtag == NULL) {
207 D("Codel timestamp mtag not found!");
210 *pkt_ts = *(aqm_time_t *)(mtag + 1);
211 m_tag_delete(m,mtag);
226 struct m_tag *mtag; local
251 /* Add timestamp as mtag */
252 mtag
[all...]
H A Ddn_aqm_pie.c325 * If getts is set, also extract packet's timestamp from mtag.
330 struct m_tag *mtag; local
345 mtag = m_tag_locate(m, MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, NULL);
346 if (mtag == NULL) {
347 D("PIE timestamp mtag not found!");
350 *pkt_ts = *(aqm_time_t *)(mtag + 1);
351 m_tag_delete(m,mtag);
540 struct m_tag *mtag; local
541 mtag = m_tag_locate(m, MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, NULL);
542 if (mtag
[all...]
H A Ddn_sched_fq_codel.c184 struct m_tag *mtag; local
185 mtag = m_tag_locate(m, MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, NULL);
186 if (mtag == NULL)
187 mtag = m_tag_alloc(MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, sizeof(aqm_time_t),
189 if (mtag == NULL) {
193 *(aqm_time_t *)(mtag + 1) = AQM_UNOW;
194 m_tag_prepend(m, mtag);
H A Ddn_sched_fq_codel.h153 struct m_tag *mtag; local
154 mtag = m_tag_locate(m, MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, NULL);
155 if (mtag == NULL){
159 *pkt_ts = *(aqm_time_t *)(mtag + 1);
160 m_tag_delete(m,mtag);
H A Ddn_sched_fq_pie.c335 * If getts is set, also extract packet's timestamp from mtag.
354 struct m_tag *mtag; local
355 mtag = m_tag_locate(m, MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, NULL);
356 if (mtag == NULL){
357 D("PIE timestamp mtag not found!");
360 *pkt_ts = *(aqm_time_t *)(mtag + 1);
361 m_tag_delete(m,mtag);
733 struct m_tag *mtag; local
734 mtag = m_tag_locate(m, MTAG_ABI_COMPAT, DN_AQM_MTAG_TS, NULL);
735 if (mtag
[all...]
H A Dip_dn_io.c246 struct m_tag *mtag = m_tag_first(m); local
249 if (mtag != NULL && mtag->m_tag_id == DN_AQM_MTAG_TS) {
250 m_tag_delete(m,mtag);
251 mtag = m_tag_first(m);
255 KASSERT(mtag != NULL &&
256 mtag->m_tag_cookie == MTAG_ABI_COMPAT &&
257 mtag->m_tag_id == PACKET_TAG_DUMMYNET,
259 return (struct dn_pkt_tag *)(mtag+1);
831 struct m_tag *mtag; local
[all...]
/freebsd-11-stable/sys/netpfil/pf/
H A Dpf_mtag.h56 struct m_tag *mtag; local
58 if ((mtag = m_tag_find(m, PACKET_TAG_PF, NULL)) == NULL)
61 return ((struct pf_mtag *)(mtag + 1));
/freebsd-11-stable/usr.sbin/bsdconfig/
H A Dbsdconfig396 f_dialog_menutag_fetch mtag
397 f_dprintf "retval=%u mtag=[%s]" $retval "$mtag"
406 case "$mtag" in
415 f_getvar menu_program$mtag menu_program
/freebsd-11-stable/usr.sbin/bsdconfig/console/
H A Dconsole122 f_dialog_menutag_fetch mtag
125 case "$mtag" in

Completed in 313 milliseconds

123