Home
last modified time | relevance | path

Searched refs:wr_cred (Results 1 – 9 of 9) sorted by relevance

/Linux-v5.4/drivers/target/iscsi/cxgbit/
Dcxgbit_cm.c1322 csk->wr_cred = cdev->lldi.wr_cred - in cxgbit_pass_accept_req()
1324 csk->wr_max_cred = csk->wr_cred; in cxgbit_pass_accept_req()
1800 if (unlikely(csk->wr_cred > csk->wr_max_cred)) { in cxgbit_credit_err()
1802 csk, csk->tid, csk->wr_cred, csk->wr_max_cred); in cxgbit_credit_err()
1811 if (unlikely((csk->wr_cred + credit) != csk->wr_max_cred)) { in cxgbit_credit_err()
1813 csk, csk->tid, csk->wr_cred, in cxgbit_credit_err()
1828 csk->wr_cred += credits; in cxgbit_fw4_ack()
1829 if (csk->wr_una_cred > (csk->wr_max_cred - csk->wr_cred)) in cxgbit_fw4_ack()
1830 csk->wr_una_cred = csk->wr_max_cred - csk->wr_cred; in cxgbit_fw4_ack()
1839 csk->wr_cred, csk->wr_una_cred); in cxgbit_fw4_ack()
[all …]
Dcxgbit_target.c206 while (csk->wr_cred && ((skb = skb_peek(&csk->txq)) != NULL)) { in cxgbit_push_tx_frames()
234 csk->wr_cred -= flowclen16; in cxgbit_push_tx_frames()
238 if (csk->wr_cred < credits_needed) { in cxgbit_push_tx_frames()
241 credits_needed, csk->wr_cred); in cxgbit_push_tx_frames()
247 csk->wr_cred -= credits_needed; in cxgbit_push_tx_frames()
252 csk->wr_cred, csk->wr_una_cred); in cxgbit_push_tx_frames()
Dcxgbit.h214 u32 wr_cred; member
/Linux-v5.4/drivers/scsi/cxgbi/cxgb3i/
Dcxgb3i.c407 while (csk->wr_cred && (skb = skb_peek(&csk->write_queue)) != NULL) { in push_tx_frames()
417 if (csk->wr_cred < wrs_needed) { in push_tx_frames()
421 wrs_needed, csk->wr_cred); in push_tx_frames()
428 csk->wr_cred -= wrs_needed; in push_tx_frames()
436 csk->wr_cred, csk->wr_una_cred); in push_tx_frames()
916 if (csk->wr_cred != csk->wr_max_cred) { in release_offload_resources()
998 csk->wr_max_cred = csk->wr_cred = T3C_DATA(t3dev)->max_wrs - 1; in init_act_open()
/Linux-v5.4/drivers/scsi/cxgbi/cxgb4i/
Dcxgb4i.c725 while (csk->wr_cred && (skb = skb_peek(&csk->write_queue)) != NULL) { in push_tx_frames()
750 csk->wr_cred -= flowclen16; in push_tx_frames()
755 if (csk->wr_cred < credits_needed) { in push_tx_frames()
759 credits_needed, csk->wr_cred); in push_tx_frames()
765 csk->wr_cred -= credits_needed; in push_tx_frames()
772 csk->wr_cred, csk->wr_una_cred); in push_tx_frames()
1617 if (csk->wr_cred != csk->wr_max_cred) { in release_offload_resources()
1803 csk->wr_cred = lldi->wr_cred - in init_act_open()
1805 csk->wr_max_cred = csk->wr_cred; in init_act_open()
2131 lldi->nrxq, lldi->wr_cred); in t4_uld_add()
/Linux-v5.4/drivers/scsi/cxgbi/
Dlibcxgbi.c1026 csk->wr_cred, csk->wr_una_cred, snd_una, seq_chk); in cxgbi_sock_rcv_wr_ack()
1030 csk->wr_cred += credits; in cxgbi_sock_rcv_wr_ack()
1031 if (csk->wr_una_cred > csk->wr_max_cred - csk->wr_cred) in cxgbi_sock_rcv_wr_ack()
1032 csk->wr_una_cred = csk->wr_max_cred - csk->wr_cred; in cxgbi_sock_rcv_wr_ack()
1040 csk->wr_cred, csk->wr_una_cred); in cxgbi_sock_rcv_wr_ack()
1047 credits, csk->wr_cred, csk->wr_una_cred, in cxgbi_sock_rcv_wr_ack()
1132 if (unlikely(csk->wr_cred + pending != csk->wr_max_cred)) in cxgbi_sock_check_wr_invariants()
1134 csk, csk->tid, csk->wr_cred, pending, csk->wr_max_cred); in cxgbi_sock_check_wr_invariants()
Dlibcxgbi.h121 int wr_cred; member
/Linux-v5.4/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_uld.h331 unsigned char wr_cred; /* WR 16-byte credits */ member
Dcxgb4_uld.c664 lld->wr_cred = adap->params.ofldq_wr_cred; in uld_init()