From 4102ba93d6a6ea8c60e61534a8147ca0d353784c Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Tue, 9 Jul 2013 19:17:38 +0200 Subject: [PATCH] increase MaxEther to 64 avoiding "too many ether cards" panic --- sys/src/9/pc/etherif.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/src/9/pc/etherif.h b/sys/src/9/pc/etherif.h index 94c16267d..d9ae2b3af 100644 --- a/sys/src/9/pc/etherif.h +++ b/sys/src/9/pc/etherif.h @@ -1,5 +1,5 @@ enum { - MaxEther = 48, + MaxEther = 64, Ntypes = 8, };