Moderate ethernet traffic causes "soverflow for fx->in" to be printed to the screen on vmware 3.1.0. Examples are using upas/fs to get a imap mailbox of a few hundred messages and doing a pull from sources where a lot has changed. Without this patch both these examples fail. This patch comments out the first print in /sys/src/9/pc/devether.c that causes this message to appear. The examples then succeed. This was done following advice from Erik Quanstrom. Notes: Mon Jul 26 12:11:53 EDT 2010 geoff I think we want to leave this in. If you're seeing the message, something is wrong and ought to be investigated. Reference: /n/sources/patch/sorry/soverflow_print Date: Sun Jul 25 12:26:36 CES 2010 Signed-off-by: james@cs.ioc.ee Reviewed-by: geoff --- /sys/src/9/pc/devether.c Sun Jul 25 12:15:18 2010 +++ /sys/src/9/pc/devether.c Sun Jul 25 12:15:15 2010 @@ -183,7 +183,7 @@ memmove(xbp->wp, pkt, len); xbp->wp += len; if(qpass(f->in, xbp) < 0) { - print("soverflow for f->in\n"); + /* print("soverflow for f->in\n"); */ ether->soverflows++; } }