projects
/
oweals
/
procd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c1a558f
)
Fix procd not handling rapid reboot signals very well
author
Michel Stam
<m.stam@fugro.nl>
Thu, 2 Oct 2014 11:56:16 +0000
(11:56 +0000)
committer
John Crispin
<blogic@openwrt.org>
Thu, 2 Oct 2014 17:08:39 +0000
(19:08 +0200)
When keeping ctrl-alt-del pressed, or when running;
while true; do
/sbin/reboot
done
effectively the procd shutdown cycle gets into an undefined state,
Signed-off-by: Michel Stam <m.stam@fugro.nl>
state.c
patch
|
blob
|
history
diff --git
a/state.c
b/state.c
index e5f0015befd380a8e469873030a3cf03f44abe63..bba59665167df085bda91337dadb447332b4376d 100644
(file)
--- a/
state.c
+++ b/
state.c
@@
-94,6
+94,8
@@
void procd_state_next(void)
void procd_shutdown(int event)
{
+ if (state >= STATE_SHUTDOWN)
+ return;
DEBUG(2, "Shutting down system with event %x\n", event);
reboot_event = event;
state = STATE_SHUTDOWN;