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

Lines Matching refs:mtag

554 	struct m_tag *mtag;
557 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_CALLBACK,
559 if (mtag == NULL)
562 cb = (struct ieee80211_cb *)(mtag+1);
565 m_tag_prepend(m, mtag);
574 struct m_tag *mtag;
577 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_XMIT_PARAMS,
579 if (mtag == NULL)
582 tx = (struct ieee80211_tx_params *)(mtag+1);
584 m_tag_prepend(m, mtag);
592 struct m_tag *mtag;
595 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_XMIT_PARAMS,
597 if (mtag == NULL)
599 tx = (struct ieee80211_tx_params *)(mtag + 1);
608 struct m_tag *mtag;
610 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_CALLBACK, NULL);
611 if (mtag != NULL) {
612 struct ieee80211_cb *cb = (struct ieee80211_cb *)(mtag+1);
625 struct m_tag *mtag;
628 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_RECV_PARAMS,
630 if (mtag == NULL)
633 rx = (struct ieee80211_rx_params *)(mtag + 1);
635 m_tag_prepend(m, mtag);
642 struct m_tag *mtag;
645 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_RECV_PARAMS,
647 if (mtag == NULL)
649 rx = (struct ieee80211_rx_params *)(mtag + 1);
657 struct m_tag *mtag;
660 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_RECV_PARAMS,
662 if (mtag == NULL)
664 rx = (struct ieee80211_rx_params *)(mtag + 1);
674 struct m_tag *mtag;
677 mtag = m_tag_alloc(MTAG_ABI_NET80211, NET80211_TAG_TOA_PARAMS,
679 if (mtag == NULL)
682 rp = (struct ieee80211_toa_params *)(mtag + 1);
684 m_tag_prepend(m, mtag);
691 struct m_tag *mtag;
694 mtag = m_tag_locate(m, MTAG_ABI_NET80211, NET80211_TAG_TOA_PARAMS,
696 if (mtag == NULL)
698 rp = (struct ieee80211_toa_params *)(mtag + 1);