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

/freebsd-10.0-release/sys/dev/sound/pcm/
H A Ddsp.c1574 uint32_t maxfrags = ((*arg_i) & 0xffff0000) >> 16; local
1581 if (maxfrags == 0)
1582 maxfrags = CHN_2NDBUFMAXSIZE / fragsz;
1583 if (maxfrags < 2)
1584 maxfrags = 2;
1585 if (maxfrags * fragsz > CHN_2NDBUFMAXSIZE)
1586 maxfrags = CHN_2NDBUFMAXSIZE / fragsz;
1588 DEB(printf("SNDCTL_DSP_SETFRAGMENT %d frags, %d sz\n", maxfrags, fragsz));
1592 ret = chn_setblocksize(rdch, maxfrags, fragsz);
1597 r_maxfrags = maxfrags;
[all...]
/freebsd-10.0-release/sys/dev/xen/netfront/
H A Dnetfront.c262 u_int maxfrags; member in struct:netfront_info
1506 if (nfrags > sc->maxfrags) {
1981 np->maxfrags = 1;
1983 np->maxfrags = MAX_TX_REQ_FRAGS;
/freebsd-10.0-release/sys/kern/
H A Duipc_mbuf.c1628 * Defragment an mbuf chain, returning at most maxfrags separate
1637 m_collapse(struct mbuf *m0, int how, int maxfrags) argument
1667 if (--curfrags <= maxfrags)
1672 KASSERT(maxfrags > 1,
1673 ("maxfrags %u, but normal collapse failed", maxfrags));
1692 if (--curfrags <= maxfrags) /* +1 cl -2 mbufs */
/freebsd-10.0-release/sys/netinet6/
H A Din6_proto.c569 SYSCTL_VNET_INT(_net_inet6_ip6, IPV6CTL_MAXFRAGS, maxfrags, CTLFLAG_RW,

Completed in 88 milliseconds