From 5dd0f890acff117c8e1b6a1f4c40111ac331072f Mon Sep 17 00:00:00 2001 From: "Ronald G. Minnich" Date: Wed, 19 Aug 2015 20:47:05 -0700 Subject: [PATCH] Fix #4: grow the maximum RPC size to 128K This seems to make things snappier. But we need to measure it. Go test math did run about 4x faster. Change-Id: I1eae5d213db0d149376d69b82a75b674c5b18b2f Signed-off-by: Ronald G. Minnich --- sys/src/9/port/devmnt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/src/9/port/devmnt.c b/sys/src/9/port/devmnt.c index 91059ab250..7483c504a6 100644 --- a/sys/src/9/port/devmnt.c +++ b/sys/src/9/port/devmnt.c @@ -25,7 +25,7 @@ * connection. */ -#define MAXRPC (IOHDRSZ+8192) +#define MAXRPC (IOHDRSZ+128*1024) struct Mntrpc {