diff options
-rw-r--r-- | Documentation/kernel-parameters.txt | 4 | ||||
-rw-r--r-- | kernel/panic.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt index a70e43edcb65..4ca93898fbd3 100644 --- a/Documentation/kernel-parameters.txt +++ b/Documentation/kernel-parameters.txt | |||
@@ -1846,7 +1846,9 @@ bytes respectively. Such letter suffixes can also be entirely omitted. | |||
1846 | See Documentation/sound/oss/oss-parameters.txt | 1846 | See Documentation/sound/oss/oss-parameters.txt |
1847 | 1847 | ||
1848 | panic= [KNL] Kernel behaviour on panic: delay <timeout> | 1848 | panic= [KNL] Kernel behaviour on panic: delay <timeout> |
1849 | seconds before rebooting | 1849 | timeout > 0: seconds before rebooting |
1850 | timeout = 0: wait forever | ||
1851 | timeout < 0: reboot immediately | ||
1850 | Format: <timeout> | 1852 | Format: <timeout> |
1851 | 1853 | ||
1852 | parkbd.port= [HW] Parallel port number the keyboard adapter is | 1854 | parkbd.port= [HW] Parallel port number the keyboard adapter is |
diff --git a/kernel/panic.c b/kernel/panic.c index 69231670eb95..d7bb6974efb5 100644 --- a/kernel/panic.c +++ b/kernel/panic.c | |||
@@ -119,6 +119,8 @@ NORET_TYPE void panic(const char * fmt, ...) | |||
119 | } | 119 | } |
120 | mdelay(PANIC_TIMER_STEP); | 120 | mdelay(PANIC_TIMER_STEP); |
121 | } | 121 | } |
122 | } | ||
123 | if (panic_timeout != 0) { | ||
122 | /* | 124 | /* |
123 | * This will not be a clean reboot, with everything | 125 | * This will not be a clean reboot, with everything |
124 | * shutting down. But if there is a chance of | 126 | * shutting down. But if there is a chance of |