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.c865 uint_t maxpsz = sndbuf; in tcp_fuse_maxpsz() local
878 if (maxpsz > peer_tcp->tcp_connp->conn_rcvbuf) in tcp_fuse_maxpsz()
879 maxpsz = peer_tcp->tcp_connp->conn_rcvbuf; in tcp_fuse_maxpsz()
880 maxpsz = P2ROUNDUP_TYPED(maxpsz, PAGESIZE, uint_t) >> 1; in tcp_fuse_maxpsz()
882 return (maxpsz); in tcp_fuse_maxpsz()
H A Dtcp.c2578 int maxpsz; in tcp_maxpsz_set() local
2583 maxpsz = tcp_fuse_maxpsz(tcp); in tcp_maxpsz_set()
2593 maxpsz = MSS_ROUNDUP(connp->conn_sndbuf, mss); in tcp_maxpsz_set()
2602 maxpsz = tcp->tcp_maxpsz_multiplier * mss; in tcp_maxpsz_set()
2603 if (maxpsz > connp->conn_sndbuf / 2) { in tcp_maxpsz_set()
2604 maxpsz = connp->conn_sndbuf / 2; in tcp_maxpsz_set()
2606 maxpsz = MSS_ROUNDUP(maxpsz, mss); in tcp_maxpsz_set()
2610 (void) proto_set_maxpsz(q, connp, maxpsz); in tcp_maxpsz_set()
2612 connp->conn_wq->q_maxpsz = maxpsz; in tcp_maxpsz_set()
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocksyscalls.c2768 uint_t maxpsz, ssize_t *count) in snf_cache() argument
2823 iosize = (int)MIN(maxpsz, size); in snf_cache()
2913 uint_t maxpsz; in sosendfile64() local
2995 maxpsz = so->so_proto_props.sopp_maxpsz; in sosendfile64()
2997 maxpsz = stp->sd_qn_maxpsz; in sosendfile64()
2999 maxpsz = maxphys; in sosendfile64()
3002 if (maxpsz == INFPSZ) in sosendfile64()
3003 maxpsz = maxphys; in sosendfile64()
3005 maxpsz = roundup(maxpsz, MAXBSIZE); in sosendfile64()
3008 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()