IKC: increase message queue sizes

Change-Id: Ib1eee4d26b8304cbee16fe50caabfc2c19e5c2e3
This commit is contained in:
Balazs Gerofi
2019-09-26 12:09:35 +09:00
committed by Masamichi Takagi
parent 2db3717e57
commit b5337358cf
2 changed files with 2 additions and 2 deletions

View File

@@ -895,7 +895,7 @@ void init_host_ikc2linux(int linux_cpu)
param.port = 503;
param.intr_cpu = linux_cpu;
param.pkt_size = sizeof(struct ikc_scd_packet);
param.queue_size = 2 * num_processors * sizeof(struct ikc_scd_packet);
param.queue_size = 4 * num_processors * sizeof(struct ikc_scd_packet);
if (param.queue_size < PAGE_SIZE * 4) {
param.queue_size = PAGE_SIZE * 4;
}