Searched refs:tlc (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp.c4444 tcp_listen_cnt_t *tlc; local
4452 tlc = kmem_alloc(sizeof (tcp_listen_cnt_t),
4466 tlc->tlc_max = maxusers / ratio *
4470 tlc->tlc_max = maxusers / ratio /
4474 if (tlc->tlc_max <= tcp_min_conn_listener)
4475 tlc->tlc_max = tcp_min_conn_listener;
4476 tlc->tlc_cnt = 1;
4477 tlc->tlc_drop = 0;
4478 tcp->tcp_listen_cnt = tlc;
H A Dtcp_input.c1375 tcp_listen_cnt_t *tlc = listener->tcp_listen_cnt; local
1378 if (atomic_inc_32_nv(&tlc->tlc_cnt) > tlc->tlc_max + 1) {
1381 atomic_dec_32(&tlc->tlc_cnt);
1383 tlc->tlc_drop++;
1384 if (now - tlc->tlc_report_time >
1390 tlc->tlc_max, tlc->tlc_drop);
1391 tlc->tlc_report_time = now;
/illumos-gate/usr/src/uts/common/io/iwn/
H A Dif_iwnreg.h1226 uint8_t tlc; member in struct:iwn5000_tx_stat
/illumos-gate/usr/src/uts/common/io/lvm/md/
H A Dmd_mddb.c5522 int tlc; local
5669 tlc = ((lc + 1) / 2);
5671 if (alc > tlc) { /* alc > tlc - OK */
5673 } else if (alc < tlc) { /* alc < tlc - stale */
5675 } else if (lc & 1) { /* alc == tlc && odd - OK */
5677 } else { /* alc == tlc && even - ? */

Completed in 119 milliseconds