Lines Matching refs:meta
75 struct hostap_skb_tx_data *meta; in hostap_data_start_xmit() local
253 meta = (struct hostap_skb_tx_data *) skb->cb; in hostap_data_start_xmit()
254 memset(meta, 0, sizeof(*meta)); in hostap_data_start_xmit()
255 meta->magic = HOSTAP_SKB_TX_DATA_MAGIC; in hostap_data_start_xmit()
257 meta->flags |= HOSTAP_TX_FLAGS_WDS; in hostap_data_start_xmit()
258 meta->ethertype = ethertype; in hostap_data_start_xmit()
259 meta->iface = iface; in hostap_data_start_xmit()
274 struct hostap_skb_tx_data *meta; in hostap_mgmt_start_xmit() local
291 meta = (struct hostap_skb_tx_data *) skb->cb; in hostap_mgmt_start_xmit()
292 memset(meta, 0, sizeof(*meta)); in hostap_mgmt_start_xmit()
293 meta->magic = HOSTAP_SKB_TX_DATA_MAGIC; in hostap_mgmt_start_xmit()
294 meta->iface = iface; in hostap_mgmt_start_xmit()
303 meta->ethertype = (pos[0] << 8) | pos[1]; in hostap_mgmt_start_xmit()
391 struct hostap_skb_tx_data *meta; in hostap_master_start_xmit() local
401 meta = (struct hostap_skb_tx_data *) skb->cb; in hostap_master_start_xmit()
402 if (meta->magic != HOSTAP_SKB_TX_DATA_MAGIC) { in hostap_master_start_xmit()
405 dev->name, meta->magic, HOSTAP_SKB_TX_DATA_MAGIC); in hostap_master_start_xmit()
435 meta = (struct hostap_skb_tx_data *) skb->cb; in hostap_master_start_xmit()
444 meta->ethertype != ETH_P_PAE && in hostap_master_start_xmit()
445 !(meta->flags & HOSTAP_TX_FLAGS_WDS)) { in hostap_master_start_xmit()
448 dev->name, meta->ethertype); in hostap_master_start_xmit()
473 local->ap && local->ap->tx_callback_idx && meta->tx_cb_idx == 0) { in hostap_master_start_xmit()
474 meta->tx_cb_idx = local->ap->tx_callback_idx; in hostap_master_start_xmit()
486 if (local->ieee_802_1x && meta->ethertype == ETH_P_PAE && tx.crypt && in hostap_master_start_xmit()
505 meta->ethertype != ETH_P_PAE) { in hostap_master_start_xmit()
523 meta = (struct hostap_skb_tx_data *) skb->cb; in hostap_master_start_xmit()
524 if (meta->magic != HOSTAP_SKB_TX_DATA_MAGIC) { in hostap_master_start_xmit()
527 dev->name, meta->magic, in hostap_master_start_xmit()