Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Fix #4: grow the maximum RPC size to 128K
Browse files Browse the repository at this point in the history
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 <rminnich@gmail.com>
  • Loading branch information
rminnich committed Aug 20, 2015
1 parent b8cfdea commit 5dd0f89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys/src/9/port/devmnt.c
Expand Up @@ -25,7 +25,7 @@
* connection.
*/

#define MAXRPC (IOHDRSZ+8192)
#define MAXRPC (IOHDRSZ+128*1024)

struct Mntrpc
{
Expand Down

0 comments on commit 5dd0f89

Please sign in to comment.