Home
last modified time | relevance | path

Searched refs:tx_resid (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/drivers/staging/lustre/lnet/klnds/socklnd/
Dsocklnd_lib-linux.c86 tx->tx_nob == tx->tx_resid && /* frist sending */ in ksocknal_lib_send_iov()
111 nob < tx->tx_resid) in ksocknal_lib_send_iov()
144 fragsize < tx->tx_resid) in ksocknal_lib_send_kiov()
176 nob < tx->tx_resid) in ksocknal_lib_send_kiov()
Dsocklnd_cb.c126 LASSERT (nob <= tx->tx_resid); in ksocknal_send_iov()
127 tx->tx_resid -= nob; in ksocknal_send_iov()
164 LASSERT (nob <= tx->tx_resid); in ksocknal_send_kiov()
165 tx->tx_resid -= nob; in ksocknal_send_kiov()
196 LASSERT (tx->tx_resid != 0); in ksocknal_transmit()
245 } while (tx->tx_resid != 0); in ksocknal_transmit()
392 int rc = (tx->tx_resid == 0 && !tx->tx_zc_aborted) ? 0 : -EIO; in ksocknal_tx_done()
512 CDEBUG (D_NET, "send(%d) %d\n", tx->tx_resid, rc); in ksocknal_process_transmit()
514 if (tx->tx_resid == 0) { in ksocknal_process_transmit()
715 LASSERT (tx->tx_resid == tx->tx_nob); in ksocknal_queue_tx_locked()
[all …]
Dsocklnd_proto.c723 tx->tx_resid = tx->tx_nob = tx->tx_lnetmsg->msg_len + sizeof(lnet_hdr_t); in ksocknal_pack_msg_v1()
736 tx->tx_resid = tx->tx_nob = sizeof(ksock_msg_t) + tx->tx_lnetmsg->msg_len; in ksocknal_pack_msg_v2()
741 tx->tx_resid = tx->tx_nob = offsetof(ksock_msg_t, ksm_u.lnetmsg.ksnm_hdr); in ksocknal_pack_msg_v2()
Dsocklnd.h214 int tx_resid; /* residual bytes */ member