From 6a80944c3f187864d21b9d56f86a0945f4bad4ed Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 22 Apr 2015 15:01:58 +0800 Subject: [PATCH] runtime: increase packet buffer size --- soc/runtime/session.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soc/runtime/session.c b/soc/runtime/session.c index 9f54198e7..8ca22c9e7 100644 --- a/soc/runtime/session.c +++ b/soc/runtime/session.c @@ -18,8 +18,8 @@ #include "exceptions.h" #include "session.h" -#define BUFFER_IN_SIZE (32*1024) -#define BUFFER_OUT_SIZE (32*1024) +#define BUFFER_IN_SIZE (1024*1024) +#define BUFFER_OUT_SIZE (1024*1024) static int buffer_in_index; /* The 9th byte (right after the header) of buffer_in must be aligned