Searched refs:npkt (Results 1 - 7 of 7) sorted by relevance

/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_timers.c801 uint32_t npkt; local
804 npkt = ((tcp->tcp_timer_backoff ?
808 tcp->tcp_cwnd_ssthresh = MAX(npkt, 2) *
H A Dtcp_input.c2328 int npkt; local
3859 npkt = ((tcp->tcp_snxt - tcp->tcp_suna) >> 1) / mss;
3860 tcp->tcp_cwnd_ssthresh = MAX(npkt, 2) * mss;
3861 tcp->tcp_cwnd = npkt * mss;
3866 if (npkt == 0) {
3951 npkt = ((tcp->tcp_snxt -
3953 tcp->tcp_cwnd_ssthresh = MAX(npkt, 2) *
3955 tcp->tcp_cwnd = (npkt +
5614 uint32_t npkt; local
5616 npkt
[all...]
/illumos-gate/usr/src/uts/common/io/cxgbe/t4nex/
H A Dt4_sge.c56 uint8_t npkt; /* # of packets in this work request */ member in struct:txpkts
938 txpkts.npkt = 0; /* indicates there's nothing in txpkts */
989 ASSERT(txpkts.npkt == 0);
1021 if (txpkts.npkt > 0)
2450 if (txpkts->npkt > 0) {
2460 txpkts->npkt++;
2483 ASSERT(txpkts->npkt == 0);
2497 txpkts->npkt = 1;
2536 wr->npkt = txpkts->npkt;
[all...]
/illumos-gate/usr/src/stand/lib/tcp/
H A Dtcp.c2631 int npkt; local
3438 npkt = (MIN(tcp->tcp_cwnd, tcp->tcp_swnd) >> 1) / mss;
3439 tcp->tcp_cwnd_ssthresh = MAX(npkt, 2) * mss;
3440 tcp->tcp_cwnd = npkt * mss;
3445 if (npkt == 0) {
3531 npkt = (MIN(tcp->tcp_cwnd,
3533 if (npkt < 2)
3534 npkt = 2;
3535 tcp->tcp_cwnd_ssthresh = npkt * mss;
3536 tcp->tcp_cwnd = (npkt
4366 uint32_t npkt; local
[all...]
/illumos-gate/usr/src/uts/common/io/rtw/
H A Drtw.c2038 int firstlen, hdrlen, lastlen, lastlen0, npkt, overlen, paylen; local
2051 npkt = paylen / fraglen;
2054 if (npkt == 0) /* no fragments */
2058 npkt++;
2063 *npktp = npkt;
2065 if (npkt > 1)
2079 if (npkt <= 1) {
2096 int npkt, rate; local
2201 rate, &d0, &dn, &npkt) == -1) {
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dsadb.c6897 sadb_set_lpkt(ipsa_t *ipsa, mblk_t *npkt, ip_recv_attr_t *ira) argument
6905 * Consume npkt and place it in the LARVAL SA's inbound
6915 ip_drop_input("ipIfStatsInDiscards", npkt, ill);
6916 freemsg(npkt);
6920 attrmp->b_cont = npkt;
6923 npkt = NULL;
6948 return (npkt);
/illumos-gate/usr/src/uts/common/io/cxgbe/firmware/
H A Dt4fw_interface.h542 __u8 npkt; member in struct:fw_eth_tx_pkts_wr

Completed in 177 milliseconds