Home | History | Annotate | Download | only in iscsi

Lines Matching defs:tx_pdu

717 	pdu_t *tx_pdu;
745 tx_pdu = get_pdu(conn, TRUE);
746 if (tx_pdu == NULL)
749 tx_pdu->pdu_hdr.pduh_Flags = c_phase << CSG_SHIFT;
753 rc = assemble_security_parameters(conn, tx_ccb, rx_pdu, tx_pdu);
768 rc = assemble_security_parameters(conn, tx_ccb, rx_pdu, tx_pdu);
780 rc = assemble_negotiation_parameters(conn, tx_ccb, rx_pdu, tx_pdu);
791 free_pdu(tx_pdu);
793 init_login_pdu(conn, tx_ccb, tx_pdu, next);
794 setup_tx_uio(tx_pdu, tx_pdu->pdu_temp_data_len, tx_pdu->pdu_temp_data, FALSE);
795 send_pdu(tx_ccb, tx_pdu, CCBDISP_NOWAIT, PDUDISP_FREE);
847 pdu_t *tx_pdu;
849 tx_pdu = get_pdu(conn, TRUE);
850 if (tx_pdu == NULL)
855 init_login_pdu(conn, tx_ccb, tx_pdu, FALSE);
857 init_text_pdu(conn, tx_ccb, tx_pdu, rx_pdu);
859 setup_tx_uio(tx_pdu, 0, NULL, FALSE);
860 send_pdu(tx_ccb, tx_pdu, CCBDISP_NOWAIT, PDUDISP_FREE);
913 pdu_t *tx_pdu;
928 tx_pdu = get_pdu(conn, TRUE);
930 tx_pdu = NULL;
932 rc = assemble_negotiation_parameters(conn, tx_ccb, rx_pdu, tx_pdu);
934 if (tx_pdu != NULL)
935 free_pdu(tx_pdu);
938 } else if (tx_pdu != NULL) {
939 init_text_pdu(conn, tx_ccb, tx_pdu, rx_pdu);
940 setup_tx_uio(tx_pdu, tx_pdu->pdu_temp_data_len,
941 tx_pdu->pdu_temp_data, FALSE);
942 send_pdu(tx_ccb, tx_pdu, CCBDISP_NOWAIT, PDUDISP_FREE);
1377 pdu_t *tx_pdu;
1393 tx_pdu = get_pdu(conn, waitok);
1394 if (tx_pdu == NULL) {
1405 hpdu = &tx_pdu->pdu_hdr;
1421 setup_tx_uio(tx_pdu, len, tx_ccb->ccb_data_ptr + offs, FALSE);
1422 send_pdu(tx_ccb, tx_pdu, (totlen) ? CCBDISP_NOWAIT : disp, PDUDISP_FREE);