Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/staging/lustre/lnet/klnds/socklnd/
Dsocklnd_lib.c84 tx->tx_nob == tx->tx_resid && /* frist sending */ in ksocknal_lib_send_iov()
109 nob < tx->tx_resid) in ksocknal_lib_send_iov()
142 fragsize < tx->tx_resid) in ksocknal_lib_send_kiov()
173 nob < tx->tx_resid) in ksocknal_lib_send_kiov()
Dsocklnd_cb.c125 LASSERT (nob <= tx->tx_resid); in ksocknal_send_iov()
126 tx->tx_resid -= nob; in ksocknal_send_iov()
163 LASSERT (nob <= tx->tx_resid); in ksocknal_send_kiov()
164 tx->tx_resid -= nob; in ksocknal_send_kiov()
195 LASSERT(tx->tx_resid != 0); in ksocknal_transmit()
244 } 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()
714 LASSERT(tx->tx_resid == tx->tx_nob); in ksocknal_queue_tx_locked()
[all …]
Dsocklnd_proto.c720 tx->tx_resid = tx->tx_nob = tx->tx_lnetmsg->msg_len + sizeof(lnet_hdr_t); in ksocknal_pack_msg_v1()
733 tx->tx_resid = tx->tx_nob = sizeof(ksock_msg_t) + tx->tx_lnetmsg->msg_len; in ksocknal_pack_msg_v2()
738 tx->tx_resid = tx->tx_nob = offsetof(ksock_msg_t, ksm_u.lnetmsg.ksnm_hdr); in ksocknal_pack_msg_v2()
Dsocklnd.h261 int tx_resid; /* residual bytes */ member