Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/inet/tcp/
H A Dtcp_fusion.c841 uint_t maxpsz = sndbuf; in tcp_fuse_maxpsz() local
854 if (maxpsz > peer_tcp->tcp_connp->conn_rcvbuf) in tcp_fuse_maxpsz()
855 maxpsz = peer_tcp->tcp_connp->conn_rcvbuf; in tcp_fuse_maxpsz()
856 maxpsz = P2ROUNDUP_TYPED(maxpsz, PAGESIZE, uint_t) >> 1; in tcp_fuse_maxpsz()
858 return (maxpsz); in tcp_fuse_maxpsz()
H A Dtcp.c2542 int maxpsz; in tcp_maxpsz_set() local
2547 maxpsz = tcp_fuse_maxpsz(tcp); in tcp_maxpsz_set()
2557 maxpsz = MSS_ROUNDUP(connp->conn_sndbuf, mss); in tcp_maxpsz_set()
2566 maxpsz = tcp->tcp_maxpsz_multiplier * mss; in tcp_maxpsz_set()
2567 if (maxpsz > connp->conn_sndbuf / 2) { in tcp_maxpsz_set()
2568 maxpsz = connp->conn_sndbuf / 2; in tcp_maxpsz_set()
2570 maxpsz = MSS_ROUNDUP(maxpsz, mss); in tcp_maxpsz_set()
2574 (void) proto_set_maxpsz(q, connp, maxpsz); in tcp_maxpsz_set()
2576 connp->conn_wq->q_maxpsz = maxpsz; in tcp_maxpsz_set()
/titanic_41/usr/src/uts/common/fs/sockfs/
H A Dsocksyscalls.c2702 uint_t maxpsz, ssize_t *count) in snf_cache() argument
2757 iosize = (int)MIN(maxpsz, size); in snf_cache()
2847 uint_t maxpsz; in sosendfile64() local
2929 maxpsz = so->so_proto_props.sopp_maxpsz; in sosendfile64()
2931 maxpsz = stp->sd_qn_maxpsz; in sosendfile64()
2933 maxpsz = maxphys; in sosendfile64()
2936 if (maxpsz == INFPSZ) in sosendfile64()
2937 maxpsz = maxphys; in sosendfile64()
2939 maxpsz = roundup(maxpsz, MAXBSIZE); in sosendfile64()
2942 maxpsz, &count); in sosendfile64()
/titanic_41/usr/src/lib/libpkg/common/
H A Dpkgtrans.c110 static int rd_map_size(FILE *fp, int *npts, int *maxpsz, int *cmpsize);
209 rd_map_size(FILE *fp, int *npts, int *maxpsz, int *cmpsize) in rd_map_size() argument
223 n = sscanf(line_buffer, ": %d %d %d", npts, maxpsz, cmpsize); in rd_map_size()