From dfb0a37305a098dad0627c0b2db3af219182d253 Mon Sep 17 00:00:00 2001 From: Balazs Gerofi Date: Wed, 8 Feb 2017 21:50:07 +0900 Subject: [PATCH] procfs: increase procfs request timeout --- executer/kernel/mcctrl/procfs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/executer/kernel/mcctrl/procfs.c b/executer/kernel/mcctrl/procfs.c index 98058a1d..1b9e0e66 100644 --- a/executer/kernel/mcctrl/procfs.c +++ b/executer/kernel/mcctrl/procfs.c @@ -640,11 +640,11 @@ retry_wait: */ if (pid > 0) { retw = wait_event_interruptible_timeout(ppd->wq_procfs, - r->status != 0, HZ); + r->status != 0, 5 * HZ); } else { retw = wait_event_interruptible_timeout(udp->wq_procfs, - r->status != 0, HZ); + r->status != 0, 5 * HZ); } /* Timeout? */