removed debugging panic calls when running out of conversations and replaced it with a print call. Reference: /n/sources/patch/sorry/devip-allconvused-panic Date: Sun Apr 18 22:37:35 CES 2010 Signed-off-by: cinap_lenrek@gmx.de --- /sys/src/9/ip/devip.c Sun Apr 18 22:36:25 2010 +++ /sys/src/9/ip/devip.c Sun Apr 18 22:36:20 2010 @@ -818,12 +818,6 @@ } } qunlock(p); - /* - * debugging: let's see if we ever get this. - * if we do (and we're a cpu server), we might as well restart - * since we're now unable to service new connections. - */ - panic("setlport: out of ports"); return "no ports available"; chosen: @@ -1323,8 +1317,7 @@ print("Fsprotoclone: garbage collecting Convs\n"); if(p->gc != nil && (*p->gc)(p)) goto retry; - /* debugging: do we ever get here? */ - panic("Fsprotoclone: all conversations in use"); + print("Fsprotoclone: all conversations in use\n"); return nil; }