Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/inet/tcp/
H A Dtcp_fusion.c844 uint_t maxpsz = sndbuf; in tcp_fuse_maxpsz() local
857 if (maxpsz > peer_tcp->tcp_connp->conn_rcvbuf) in tcp_fuse_maxpsz()
858 maxpsz = peer_tcp->tcp_connp->conn_rcvbuf; in tcp_fuse_maxpsz()
859 maxpsz = P2ROUNDUP_TYPED(maxpsz, PAGESIZE, uint_t) >> 1; in tcp_fuse_maxpsz()
861 return (maxpsz); in tcp_fuse_maxpsz()
H A Dtcp.c2563 int maxpsz; in tcp_maxpsz_set() local
2568 maxpsz = tcp_fuse_maxpsz(tcp); in tcp_maxpsz_set()
2578 maxpsz = MSS_ROUNDUP(connp->conn_sndbuf, mss); in tcp_maxpsz_set()
2587 maxpsz = tcp->tcp_maxpsz_multiplier * mss; in tcp_maxpsz_set()
2588 if (maxpsz > connp->conn_sndbuf / 2) { in tcp_maxpsz_set()
2589 maxpsz = connp->conn_sndbuf / 2; in tcp_maxpsz_set()
2591 maxpsz = MSS_ROUNDUP(maxpsz, mss); in tcp_maxpsz_set()
2595 (void) proto_set_maxpsz(q, connp, maxpsz); in tcp_maxpsz_set()
2597 connp->conn_wq->q_maxpsz = maxpsz; in tcp_maxpsz_set()
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocksyscalls.c2767 uint_t maxpsz, ssize_t *count) in snf_cache() argument
2822 iosize = (int)MIN(maxpsz, size); in snf_cache()
2912 uint_t maxpsz; in sosendfile64() local
2994 maxpsz = so->so_proto_props.sopp_maxpsz; in sosendfile64()
2996 maxpsz = stp->sd_qn_maxpsz; in sosendfile64()
2998 maxpsz = maxphys; in sosendfile64()
3001 if (maxpsz == INFPSZ) in sosendfile64()
3002 maxpsz = maxphys; in sosendfile64()
3004 maxpsz = roundup(maxpsz, MAXBSIZE); in sosendfile64()
3007 maxpsz, &count); in sosendfile64()
/illumos-gate/usr/src/lib/libpkg/common/
H A Dpkgtrans.c107 static int rd_map_size(FILE *fp, int *npts, int *maxpsz, int *cmpsize);
202 rd_map_size(FILE *fp, int *npts, int *maxpsz, int *cmpsize) in rd_map_size() argument
216 n = sscanf(line_buffer, ": %d %d %d", npts, maxpsz, cmpsize); in rd_map_size()