Lines Matching defs:skb
3592 * ieee80211_is_robust_mgmt_frame - check if skb contains a robust mgmt frame
3593 * @skb: the skb containing the frame, length will be checked
3595 static inline bool ieee80211_is_robust_mgmt_frame(struct sk_buff *skb)
3597 if (skb->len < IEEE80211_MIN_ACTION_SIZE)
3599 return _ieee80211_is_robust_mgmt_frame((void *)skb->data);
3639 * @skb: the skb containing the frame, length will be checked
3641 static inline bool ieee80211_is_group_privacy_action(struct sk_buff *skb)
3643 if (skb->len < IEEE80211_MIN_ACTION_SIZE)
3645 return _ieee80211_is_group_privacy_action((void *)skb->data);
3689 * @skb: the skb containing the frame, length will not be checked
3690 * @hdr_size: the size of the ieee80211_hdr that starts at skb->data
3695 static inline int ieee80211_get_tdls_action(struct sk_buff *skb, u32 hdr_size)
3697 if (!skb_is_nonlinear(skb) &&
3698 skb->len > (skb_network_offset(skb) + 2)) {
3700 const u8 *tdls_data = skb_network_header(skb) - 2;
3729 * @skb: the skb containing the frame, length will be checked
3735 static inline bool ieee80211_action_contains_tpc(struct sk_buff *skb)
3737 struct ieee80211_mgmt *mgmt = (void *)skb->data;
3742 if (skb->len < IEEE80211_MIN_ACTION_SIZE +