Lines Matching defs:tx_resp
5622 struct iwm_tx_resp *tx_resp = (void *)pkt->data;
5623 int status = le16toh(tx_resp->status.status) & IWM_TX_STATUS_MSK;
5624 uint32_t initial_rate = le32toh(tx_resp->initial_rate);
5627 KASSERT(tx_resp->frame_count == 1);
5653 if (tx_resp->failure_frame > 0)
5663 tx_resp->failure_frame, txfail);
5669 tx_resp->failure_frame, txfail);
5845 struct iwm_tx_resp *tx_resp = (void *)pkt->data;
5853 if (sizeof(*tx_resp) > len)
5855 if (qid < IWM_FIRST_AGG_TX_QUEUE && tx_resp->frame_count > 1)
5859 if (sizeof(*tx_resp) + sizeof(ssn) +
5860 tx_resp->frame_count * sizeof(tx_resp->status) > len)
5869 memcpy(&ssn, &tx_resp->status + tx_resp->frame_count, sizeof(ssn));
5873 status = le16toh(tx_resp->status.status) & IWM_TX_STATUS_MSK;
5875 le32toh(tx_resp->initial_rate), tx_resp->frame_count,
5876 tx_resp->failure_frame, ssn, status, &tx_resp->status);