> This issue is a combination of mbuf cluster size and the > TF_MORETOCOME flag.
> if (len) { > if (len == tp->t_maxseg) > goto send; > if (!(tp->t_flags & TF_MORETOCOME) && > (idle || tp->t_flags & TF_NODELAY) && > (tp->t_flags & TF_NOPUSH) == 0 && > len + off >= so->so_snd.sb_cc) > goto send; When I changed the condition, the problem we had did not occur. I am wondering what is the right fix. Yoshi To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-net" in the body of the message