Lines Matching refs:hdr_len
153 struct sk_buff *frag, int hdr_len) in libipw_encrypt_fragment() argument
167 res = crypt->ops->encrypt_mpdu(frag, hdr_len, crypt->priv); in libipw_encrypt_fragment()
265 int bytes, fc, hdr_len; in libipw_xmit() local
333 hdr_len = LIBIPW_3ADDR_LEN; in libipw_xmit()
337 hdr_len += 2; in libipw_xmit()
354 int len = bytes + hdr_len + crypt->ops->extra_msdu_prefix_len + in libipw_xmit()
362 memcpy(skb_put(skb_new, hdr_len), &header, hdr_len); in libipw_xmit()
367 res = crypt->ops->encrypt_msdu(skb_new, hdr_len, crypt->priv); in libipw_xmit()
377 skb_pull(skb, hdr_len); in libipw_xmit()
393 bytes_per_frag = frag_size - hdr_len; in libipw_xmit()
415 frag_size = bytes + hdr_len; in libipw_xmit()
443 (struct libipw_hdr_3addrqos *)skb_put(skb_frag, hdr_len); in libipw_xmit()
450 memcpy(frag_hdr, &header, hdr_len); in libipw_xmit()
474 (struct libipw_hdr_3addrqos *)skb_put(skb_frag, hdr_len); in libipw_xmit()
475 memcpy(frag_hdr, &header, hdr_len); in libipw_xmit()
503 libipw_encrypt_fragment(ieee, skb_frag, hdr_len); in libipw_xmit()