Lines Matching refs:txbuf
1022 struct i40iw_puda_buf *txbuf, in i40iw_ieq_copy_to_txbuf() argument
1027 void *mem2 = (u8 *)txbuf->mem.va + txbuf_offset; in i40iw_ieq_copy_to_txbuf()
1038 struct i40iw_puda_buf *txbuf) in i40iw_ieq_setup_tx_buf() argument
1040 txbuf->maclen = buf->maclen; in i40iw_ieq_setup_tx_buf()
1041 txbuf->tcphlen = buf->tcphlen; in i40iw_ieq_setup_tx_buf()
1042 txbuf->ipv4 = buf->ipv4; in i40iw_ieq_setup_tx_buf()
1043 txbuf->hdrlen = buf->hdrlen; in i40iw_ieq_setup_tx_buf()
1044 i40iw_ieq_copy_to_txbuf(buf, txbuf, 0, 0, buf->hdrlen); in i40iw_ieq_setup_tx_buf()
1077 struct i40iw_puda_buf *txbuf, in i40iw_ieq_compl_pfpdu() argument
1088 txbuf->totallen = buf->hdrlen + fpdu_len; in i40iw_ieq_compl_pfpdu()
1089 txbuf->data = (u8 *)txbuf->mem.va + buf->hdrlen; in i40iw_ieq_compl_pfpdu()
1090 i40iw_ieq_setup_tx_buf(buf, txbuf); in i40iw_ieq_compl_pfpdu()
1098 i40iw_ieq_copy_to_txbuf(buf, txbuf, bufoffset, txoffset, fpdu_len); in i40iw_ieq_compl_pfpdu()
1105 i40iw_ieq_copy_to_txbuf(buf, txbuf, bufoffset, txoffset, buf->datalen); in i40iw_ieq_compl_pfpdu()
1184 struct i40iw_puda_buf *txbuf = NULL; in i40iw_ieq_handle_partial() local
1194 txbuf = i40iw_puda_get_bufpool(ieq); in i40iw_ieq_handle_partial()
1195 if (!txbuf) { in i40iw_ieq_handle_partial()
1201 i40iw_ieq_compl_pfpdu(ieq, rxlist, &pbufl, txbuf, fpdu_len); in i40iw_ieq_handle_partial()
1202 i40iw_ieq_update_tcpip_info(txbuf, fpdu_len, seqnum); in i40iw_ieq_handle_partial()
1203 crcptr = txbuf->data + fpdu_len - 4; in i40iw_ieq_handle_partial()
1206 status = i40iw_ieq_check_mpacrc(ieq->hash_desc, txbuf->data, in i40iw_ieq_handle_partial()
1216 txbuf->mem.va, txbuf->totallen); in i40iw_ieq_handle_partial()
1217 i40iw_puda_send_buf(ieq, txbuf); in i40iw_ieq_handle_partial()
1226 if (txbuf) in i40iw_ieq_handle_partial()
1227 i40iw_puda_ret_bufpool(ieq, txbuf); in i40iw_ieq_handle_partial()
1251 struct i40iw_puda_buf *txbuf; in i40iw_ieq_process_buf() local
1289 txbuf = i40iw_puda_get_bufpool(ieq); in i40iw_ieq_process_buf()
1290 if (!txbuf) { in i40iw_ieq_process_buf()
1297 i40iw_ieq_setup_tx_buf(buf, txbuf); in i40iw_ieq_process_buf()
1299 i40iw_ieq_copy_to_txbuf(buf, txbuf, ioffset, buf->hdrlen, in i40iw_ieq_process_buf()
1301 txbuf->totallen = buf->hdrlen + length; in i40iw_ieq_process_buf()
1303 i40iw_ieq_update_tcpip_info(txbuf, length, buf->seqnum); in i40iw_ieq_process_buf()
1304 i40iw_puda_send_buf(ieq, txbuf); in i40iw_ieq_process_buf()