Home
last modified time | relevance | path

Searched refs:msdu_len (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/contrib/dev/athk/ath10k/
H A Dtrace.h289 TP_PROTO(struct ath10k *ar, u16 msdu_id, u16 msdu_len,
292 TP_ARGS(ar, msdu_id, msdu_len, vdev_id, tid),
298 __field(u16, msdu_len)
307 __entry->msdu_len = msdu_len;
317 __entry->msdu_len,
H A Dhtt_rx.c355 int msdu_len, msdu_chaining = 0; in ath10k_htt_rx_amsdu_pop() local
406 msdu_len = MS(__le32_to_cpu(rx_desc_msdu_start_common->info0), in ath10k_htt_rx_amsdu_pop()
411 msdu_len = 0; in ath10k_htt_rx_amsdu_pop()
414 skb_put(msdu, min(msdu_len, ath10k_htt_rx_msdu_size(hw))); in ath10k_htt_rx_amsdu_pop()
415 msdu_len -= msdu->len; in ath10k_htt_rx_amsdu_pop()
427 skb_put(msdu, min(msdu_len, HTT_RX_BUF_SIZE)); in ath10k_htt_rx_amsdu_pop()
428 msdu_len -= msdu->len; in ath10k_htt_rx_amsdu_pop()
513 int amsdu_len = __le16_to_cpu(ind_desc->msdu_len); in ath10k_htt_rx_handle_amsdu_mon_32()
527 __le16_to_cpu(ind_desc->msdu_len), in ath10k_htt_rx_handle_amsdu_mon_32()
568 __le16_to_cpu(ind_desc->msdu_len), amsdu_len); in ath10k_htt_rx_handle_amsdu_mon_32()
[all …]
H A Dhtt.h1096 __le16 msdu_len; member
1111 __le16 msdu_len; member
1118 __le16 msdu_len; member
H A Dwmi.c2298 u32 msdu_len; in ath10k_wmi_op_pull_mgmt_rx_ev() local
2323 msdu_len = __le32_to_cpu(arg->buf_len); in ath10k_wmi_op_pull_mgmt_rx_ev()
2324 if (skb->len < msdu_len) in ath10k_wmi_op_pull_mgmt_rx_ev()
2336 skb_trim(skb, msdu_len); in ath10k_wmi_op_pull_mgmt_rx_ev()
2348 u32 msdu_len; in ath10k_wmi_10_4_op_pull_mgmt_rx_ev() local
2367 msdu_len = __le32_to_cpu(arg->buf_len); in ath10k_wmi_10_4_op_pull_mgmt_rx_ev()
2368 if (skb->len < msdu_len) in ath10k_wmi_10_4_op_pull_mgmt_rx_ev()
2379 skb_trim(skb, msdu_len); in ath10k_wmi_10_4_op_pull_mgmt_rx_ev()
H A Dwmi-tlv.c967 u32 msdu_len; in ath10k_wmi_tlv_op_pull_mgmt_rx_ev() local
995 msdu_len = __le32_to_cpu(arg->buf_len); in ath10k_wmi_tlv_op_pull_mgmt_rx_ev()
997 if (skb->len < (frame - skb->data) + msdu_len) { in ath10k_wmi_tlv_op_pull_mgmt_rx_ev()
1006 skb_put(skb, msdu_len); in ath10k_wmi_tlv_op_pull_mgmt_rx_ev()
/freebsd/sys/contrib/dev/athk/ath12k/
H A Ddp_rx.c1769 u8 l3pad_bytes, int msdu_len) in ath12k_dp_rx_msdu_coalesce() argument
1786 if (WARN_ON_ONCE(msdu_len <= buf_first_len)) { in ath12k_dp_rx_msdu_coalesce()
1787 skb_put(first, buf_first_hdr_len + msdu_len); in ath12k_dp_rx_msdu_coalesce()
1808 space_extra = msdu_len - (buf_first_len + skb_tailroom(first)); in ath12k_dp_rx_msdu_coalesce()
1823 rem_len = msdu_len - buf_first_len; in ath12k_dp_rx_msdu_coalesce()
2486 u16 msdu_len; in ath12k_dp_rx_process_msdu() local
2508 msdu_len = ath12k_dp_rx_h_msdu_len(ab, lrx_desc); in ath12k_dp_rx_process_msdu()
2514 if ((msdu_len + hal_rx_desc_sz) > DP_RX_BUFFER_SIZE) { in ath12k_dp_rx_process_msdu()
2516 ath12k_warn(ab, "invalid msdu len %u\n", msdu_len); in ath12k_dp_rx_process_msdu()
2521 skb_put(msdu, hal_rx_desc_sz + l3_pad_bytes + msdu_len); in ath12k_dp_rx_process_msdu()
[all …]
H A Dhal_rx.h470 u16 msdu_len; /* 14 bits for length */ member
/freebsd/sys/contrib/dev/athk/ath11k/
H A Ddp_rx.c1786 u8 l3pad_bytes, int msdu_len) in ath11k_dp_rx_msdu_coalesce() argument
1803 if (WARN_ON_ONCE(msdu_len <= buf_first_len)) { in ath11k_dp_rx_msdu_coalesce()
1804 skb_put(first, buf_first_hdr_len + msdu_len); in ath11k_dp_rx_msdu_coalesce()
1825 space_extra = msdu_len - (buf_first_len + skb_tailroom(first)); in ath11k_dp_rx_msdu_coalesce()
1840 rem_len = msdu_len - buf_first_len; in ath11k_dp_rx_msdu_coalesce()
2569 u16 msdu_len; in ath11k_dp_rx_process_msdu() local
2598 msdu_len = ath11k_dp_rx_h_msdu_start_msdu_len(ab, rx_desc); in ath11k_dp_rx_process_msdu()
2604 if ((msdu_len + hal_rx_desc_sz) > DP_RX_BUFFER_SIZE) { in ath11k_dp_rx_process_msdu()
2607 ath11k_warn(ab, "invalid msdu len %u\n", msdu_len); in ath11k_dp_rx_process_msdu()
2614 skb_put(msdu, hal_rx_desc_sz + l3_pad_bytes + msdu_len); in ath11k_dp_rx_process_msdu()
[all …]
H A Dhal_rx.h451 u16 msdu_len; /* 14 bits for length */ member