Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/
H A Dlm_l4fp.c92 while(tcp_buf && tcp_buf->more_to_comp <= completed_bytes) { /* buffer fully completed */ in lm_tcp_complete_nbytes()
93 DbgBreakIf((tcp_buf->more_to_comp == tcp_buf->size) && in lm_tcp_complete_nbytes()
98 completed_bytes -= tcp_buf->more_to_comp; in lm_tcp_complete_nbytes()
99 con->app_buf_bytes_acc_comp += tcp_buf->more_to_comp; in lm_tcp_complete_nbytes()
100 tcp_buf->more_to_comp = 0; /* essential */ in lm_tcp_complete_nbytes()
130 DbgBreakIf((tcp_buf->more_to_comp == tcp_buf->size) && in lm_tcp_complete_nbytes()
134 tcp_buf->more_to_comp -= completed_bytes; in lm_tcp_complete_nbytes()
153 actual_completed_bytes += tcp_buf->more_to_comp; in lm_tcp_complete_nbytes()
154 con->bytes_push_skip_cnt += tcp_buf->more_to_comp; /* how many bytes did we skip? */ in lm_tcp_complete_nbytes()
155 tcp_buf->more_to_comp = 0; in lm_tcp_complete_nbytes()
H A Dlm_l4rx.c341 DbgBreakIf(completed_bytes > tcp_buf->more_to_comp); in lm_tcp_complete_tcp_buf()
342 tcp_buf->more_to_comp -= completed_bytes; in lm_tcp_complete_tcp_buf()
345 if(tcp_buf->more_to_comp == 0 && GET_FLAGS(tcp_buf->flags, TCP_BUF_FLAG_L4_POST_END)) { in lm_tcp_complete_tcp_buf()
356 if (tcp_buf->more_to_comp == 0) { in lm_tcp_complete_tcp_buf()
639 tcp_offset = tcp_buf->size - tcp_buf->more_to_comp; in lm_tcp_rx_peninsula_to_rq_copy()
640 …bytes_left = min(tcp_buf->more_to_comp, max_num_bytes_to_copy); /* copy to buffer only what's alou… in lm_tcp_rx_peninsula_to_rq_copy()
1804 tcp_buf->size = tcp_buf->more_to_comp = (u32_t)frag_list->size; in lm_tcp_rx_post_buf()
1827 rx_con->bytes_push_skip_cnt += tcp_buf->more_to_comp; /* how many bytes did we skip? */ in lm_tcp_rx_post_buf()
1828 tcp_buf->more_to_comp = 0; in lm_tcp_rx_post_buf()
H A Dlm_l4tx.c163 tcp_buf->size = tcp_buf->more_to_comp = (u32_t)frag_list->size; in lm_tcp_tx_post_buf()
/titanic_41/usr/src/uts/common/io/bnxe/577xx/drivers/common/lm/l4/include/
H A Dlm_l4st.h51 u32_t more_to_comp; member