Lines Matching defs:txbuf

1016  * @txbuf: tx buffer for sendign back
1022 struct i40iw_puda_buf *txbuf,
1027 void *mem2 = (u8 *)txbuf->mem.va + txbuf_offset;
1035 * @txbuf: buffer to prepare
1038 struct i40iw_puda_buf *txbuf)
1040 txbuf->maclen = buf->maclen;
1041 txbuf->tcphlen = buf->tcphlen;
1042 txbuf->ipv4 = buf->ipv4;
1043 txbuf->hdrlen = buf->hdrlen;
1044 i40iw_ieq_copy_to_txbuf(buf, txbuf, 0, 0, buf->hdrlen);
1067 * i40iw_ieq_compl_pfpdu - write txbuf with full fpdu
1071 * @txbuf: tx buffer for fpdu
1077 struct i40iw_puda_buf *txbuf,
1088 txbuf->totallen = buf->hdrlen + fpdu_len;
1089 txbuf->data = (u8 *)txbuf->mem.va + buf->hdrlen;
1090 i40iw_ieq_setup_tx_buf(buf, txbuf);
1098 i40iw_ieq_copy_to_txbuf(buf, txbuf, bufoffset, txoffset, fpdu_len);
1105 i40iw_ieq_copy_to_txbuf(buf, txbuf, bufoffset, txoffset, buf->datalen);
1184 struct i40iw_puda_buf *txbuf = NULL;
1194 txbuf = i40iw_puda_get_bufpool(ieq);
1195 if (!txbuf) {
1201 i40iw_ieq_compl_pfpdu(ieq, rxlist, &pbufl, txbuf, fpdu_len);
1202 i40iw_ieq_update_tcpip_info(txbuf, fpdu_len, seqnum);
1203 crcptr = txbuf->data + fpdu_len - 4;
1206 status = i40iw_ieq_check_mpacrc(ieq->hash_desc, txbuf->data,
1216 txbuf->mem.va, txbuf->totallen);
1217 i40iw_puda_send_buf(ieq, txbuf);
1226 if (txbuf)
1227 i40iw_puda_ret_bufpool(ieq, txbuf);
1251 struct i40iw_puda_buf *txbuf;
1288 /* copy full pdu's in the txbuf and send them out */
1289 txbuf = i40iw_puda_get_bufpool(ieq);
1290 if (!txbuf) {
1296 /* modify txbuf's buffer header */
1297 i40iw_ieq_setup_tx_buf(buf, txbuf);
1299 i40iw_ieq_copy_to_txbuf(buf, txbuf, ioffset, buf->hdrlen,
1301 txbuf->totallen = buf->hdrlen + length;
1303 i40iw_ieq_update_tcpip_info(txbuf, length, buf->seqnum);
1304 i40iw_puda_send_buf(ieq, txbuf);