Lines Matching refs:tx
123 if (server->tx.creq) in ncp_tcp_write_space()
124 schedule_work(&server->tx.tq); in ncp_tcp_write_space()
150 while (!list_empty(&server->tx.requests)) { in __abort_ncp_connection()
151 req = list_entry(server->tx.requests.next, struct ncp_request_reply, req); in __abort_ncp_connection()
163 req = server->tx.creq; in __abort_ncp_connection()
165 server->tx.creq = NULL; in __abort_ncp_connection()
222 rq = server->tx.creq; in __ncptcp_try_send()
241 server->tx.creq = NULL; in __ncptcp_try_send()
314 server->tx.creq = req; in ncptcp_start_request()
340 if (server->tx.creq || server->rcv.creq) { in ncp_add_request()
342 list_add_tail(&req->req, &server->tx.requests); in ncp_add_request()
356 if (list_empty(&server->tx.requests)) { in __ncp_next_request()
359 req = list_entry(server->tx.requests.next, struct ncp_request_reply, req); in __ncp_next_request()
693 container_of(work, struct ncp_server, tx.tq); in ncp_tcp_tx_proc()