• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/sys/net80211/

Lines Matching refs:mtag

544 	struct m_tag *mtag;
547 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_CALLBACK,
549 if (mtag == NULL)
552 cb = (struct ieee80211_cb *)(mtag+1);
555 m_tag_prepend(m, mtag);
564 struct m_tag *mtag;
567 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_XMIT_PARAMS,
569 if (mtag == NULL)
572 tx = (struct ieee80211_tx_params *)(mtag+1);
574 m_tag_prepend(m, mtag);
582 struct m_tag *mtag;
585 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_XMIT_PARAMS,
587 if (mtag == NULL)
589 tx = (struct ieee80211_tx_params *)(mtag + 1);
598 struct m_tag *mtag;
600 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_CALLBACK, NULL);
601 if (mtag != NULL) {
602 struct ieee80211_cb *cb = (struct ieee80211_cb *)(mtag+1);
615 struct m_tag *mtag;
618 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_RECV_PARAMS,
620 if (mtag == NULL)
623 rx = (struct ieee80211_rx_params *)(mtag + 1);
625 m_tag_prepend(m, mtag);
632 struct m_tag *mtag;
635 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_RECV_PARAMS,
637 if (mtag == NULL)
639 rx = (struct ieee80211_rx_params *)(mtag + 1);
647 struct m_tag *mtag;
650 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_RECV_PARAMS,
652 if (mtag == NULL)
654 rx = (struct ieee80211_rx_params *)(mtag + 1);
665 struct m_tag *mtag;
668 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_TOA_PARAMS,
670 if (mtag == NULL)
673 rp = (struct ieee80211_toa_params *)(mtag + 1);
675 m_tag_prepend(m, mtag);
682 struct m_tag *mtag;
685 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_TOA_PARAMS,
687 if (mtag == NULL)
689 rp = (struct ieee80211_toa_params *)(mtag + 1);