On 11/29/06, Ian McDonald <[EMAIL PROTECTED]> wrote:
Folks,

Another thing to note is that with a limit on tx queue sizes now you
will get EAGAIN if the queue is full...

Yes, 4, 5 packets should be, in dccp_sendmsg:

       if (sysctl_dccp_tx_qlen &&
           (sk->sk_write_queue.qlen >= sysctl_dccp_tx_qlen)) {
               rc = -EAGAIN;
               goto out_release;
       }

Leandro and Burak: could you please try setting sysctl_dccp_tx_qlen to
zero? doing this:

[EMAIL PROTECTED] ~]# cat /proc/sys/net/dccp/default/tx_qlen
5
[EMAIL PROTECTED] ~]# echo 0 > /proc/sys/net/dccp/default/tx_qlen
[EMAIL PROTECTED] ~]# cat /proc/sys/net/dccp/default/tx_qlen
0
[EMAIL PROTECTED] ~]#

And report the results?

- Arnaldo
-
To unsubscribe from this list: send the line "unsubscribe dccp" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
  • Re: Ian McDonald
    • Re: Leandro Melo de Sales
      • Re: Ian McDonald
        • Re: Ian McDonald
          • Re: Arnaldo Carvalho de Melo

Reply via email to