On 11/29/06, Ian McDonald <ian.mcdonald@xxxxxxxxxxx> 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: [root@qemu ~]# cat /proc/sys/net/dccp/default/tx_qlen 5 [root@qemu ~]# echo 0 > /proc/sys/net/dccp/default/tx_qlen [root@qemu ~]# cat /proc/sys/net/dccp/default/tx_qlen 0 [root@qemu ~]# And report the results? - Arnaldo - To unsubscribe from this list: send the line "unsubscribe dccp" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html