Searched refs:rtap_len (Results 1 - 2 of 2) sorted by relevance

/drivers/net/wireless/ath/wil6210/
H A Dtxrx.c278 int rtap_len = sizeof(struct wil6210_rtap); local
284 rtap_len = sizeof(*rtap_vendor) + sizeof(*d);
306 rtap_len += phy_length;
309 if (skb_headroom(skb) < rtap_len &&
310 pskb_expand_head(skb, rtap_len, 0, GFP_ATOMIC)) {
311 wil_err(wil, "Unable to expand headrom to %d\n", rtap_len);
315 rtap_vendor = (void *)skb_push(skb, rtap_len);
316 memset(rtap_vendor, 0, rtap_len);
319 rtap_vendor->rtap.rthdr.it_len = cpu_to_le16(rtap_len);
/drivers/staging/rtl8723au/os_dep/
H A Dioctl_cfg80211.c2455 int rtap_len; local
2475 rtap_len = ieee80211_get_radiotap_len(skb->data);
2476 if (unlikely(skb->len < rtap_len))
2479 if (rtap_len != 14) {
2480 DBG_8723A("radiotap len (should be 14): %d\n", rtap_len);
2485 skb_pull(skb, rtap_len);

Completed in 208 milliseconds