Lines Matching defs:tq
283 struct rxrpc_txqueue *tq;
285 tq = kzalloc(sizeof(*tq), sk->sk_allocation);
286 if (!tq)
289 tq->xmit_ts_base = KTIME_MIN;
291 tq->segment_xmit_ts[i] = UINT_MAX;
294 tq->qbase = call->send_top + 1;
295 call->send_queue->next = tq;
296 call->send_queue = tq;
298 kfree(tq);
302 tq->nr_reported_acks = 1;
303 tq->segment_acked = 1UL;
304 tq->qbase = 0;
306 call->send_queue = tq;
307 call->tx_qtail = tq;
308 call->tx_queue = tq;
311 trace_rxrpc_tq(call, tq, call->send_top, rxrpc_tq_alloc);