From d20fb5abb28f238a9f4c7ae396ad1f1d01228025 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 7 Jul 2015 13:46:14 +0200 Subject: [PATCH] remove workaround --- soc/runtime/session.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/soc/runtime/session.c b/soc/runtime/session.c index 2cb19a495..352bca791 100644 --- a/soc/runtime/session.c +++ b/soc/runtime/session.c @@ -217,11 +217,6 @@ static int process_input(void) memcpy(&reply.eid, &buffer_in[9], 4); memcpy(&reply.retval, &buffer_in[13], 4); mailbox_send_and_wait(&reply); - /* HACK/FIXME: workaround for intermittent crashes that happen when running rpc_timing with comm_tcp */ - int i; - for(i=0;i<100000;i++) - __asm__ volatile("l.nop"); - /* */ user_kernel_state = USER_KERNEL_RUNNING; break; }