Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 117082
b: refs/heads/master
c: f44dd16
h: refs/heads/master
v: v3
  • Loading branch information
Rusty Russell committed Oct 21, 2008
1 parent b551e87 commit 0ee00ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d0ea3d7d286aeda2a9216d76424abc285b87b7b4
refs/heads/master: f44dd164f37336f7e17fabf5740698fd10635172
17 changes: 3 additions & 14 deletions trunk/kernel/panic.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,6 @@ ATOMIC_NOTIFIER_HEAD(panic_notifier_list);

EXPORT_SYMBOL(panic_notifier_list);

static int __init panic_setup(char *str)
{
panic_timeout = simple_strtoul(str, NULL, 0);
return 1;
}
__setup("panic=", panic_setup);

static long no_blink(long time)
{
return 0;
Expand Down Expand Up @@ -218,13 +211,6 @@ void add_taint(unsigned flag)
}
EXPORT_SYMBOL(add_taint);

static int __init pause_on_oops_setup(char *str)
{
pause_on_oops = simple_strtoul(str, NULL, 0);
return 1;
}
__setup("pause_on_oops=", pause_on_oops_setup);

static void spin_msec(int msecs)
{
int i;
Expand Down Expand Up @@ -384,3 +370,6 @@ void __stack_chk_fail(void)
}
EXPORT_SYMBOL(__stack_chk_fail);
#endif

core_param(panic, panic_timeout, int, 0644);
core_param(pause_on_oops, pause_on_oops, int, 0644);

0 comments on commit 0ee00ae

Please sign in to comment.