diff --git a/executer/kernel/mcctrl/ikc.c b/executer/kernel/mcctrl/ikc.c index 3d49bd0d..d563fa1f 100644 --- a/executer/kernel/mcctrl/ikc.c +++ b/executer/kernel/mcctrl/ikc.c @@ -240,7 +240,7 @@ static struct ihk_ikc_listen_param listen_param = { .port = 501, .handler = connect_handler, .pkt_size = sizeof(struct ikc_scd_packet), - .queue_size = PAGE_SIZE, + .queue_size = PAGE_SIZE * 4, .magic = 0x1129, }; @@ -248,7 +248,7 @@ static struct ihk_ikc_listen_param listen_param2 = { .port = 502, .handler = connect_handler2, .pkt_size = sizeof(struct ikc_scd_packet), - .queue_size = PAGE_SIZE, + .queue_size = PAGE_SIZE * 4, .magic = 0x1329, }; diff --git a/kernel/host.c b/kernel/host.c index b5e2466d..40e8262d 100644 --- a/kernel/host.c +++ b/kernel/host.c @@ -687,7 +687,7 @@ void init_host_syscall_channel(void) param.port = 501; param.pkt_size = sizeof(struct ikc_scd_packet); - param.queue_size = PAGE_SIZE; + param.queue_size = PAGE_SIZE * 4; param.magic = 0x1129; param.handler = syscall_packet_handler; @@ -714,7 +714,7 @@ void init_host_syscall_channel2(void) param.port = 502; param.pkt_size = sizeof(struct ikc_scd_packet); - param.queue_size = PAGE_SIZE; + param.queue_size = PAGE_SIZE * 4; param.magic = 0x1329; param.handler = syscall_packet_handler;