2005-09-07 00:16:27 +02:00
|
|
|
/*
|
|
|
|
* Detect Soft Lockups
|
|
|
|
*
|
2006-03-24 12:18:41 +01:00
|
|
|
* started by Ingo Molnar, Copyright (C) 2005, 2006 Red Hat, Inc.
|
2005-09-07 00:16:27 +02:00
|
|
|
*
|
|
|
|
* this code detects soft lockups: incidents in where on a CPU
|
|
|
|
* the kernel does not reschedule for 10 seconds or more.
|
|
|
|
*/
|
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/cpu.h>
|
2008-01-25 21:08:02 +01:00
|
|
|
#include <linux/nmi.h>
|
2005-09-07 00:16:27 +02:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/delay.h>
|
2007-07-17 13:03:35 +02:00
|
|
|
#include <linux/freezer.h>
|
2005-09-07 00:16:27 +02:00
|
|
|
#include <linux/kthread.h>
|
2008-06-25 08:50:10 +02:00
|
|
|
#include <linux/lockdep.h>
|
2005-09-07 00:16:27 +02:00
|
|
|
#include <linux/notifier.h>
|
|
|
|
#include <linux/module.h>
|
2009-01-13 06:15:17 +01:00
|
|
|
#include <linux/sysctl.h>
|
2005-09-07 00:16:27 +02:00
|
|
|
|
2007-10-17 08:26:08 +02:00
|
|
|
#include <asm/irq_regs.h>
|
|
|
|
|
2005-09-07 00:16:27 +02:00
|
|
|
static DEFINE_SPINLOCK(print_lock);
|
|
|
|
|
2009-10-29 14:34:13 +01:00
|
|
|
static DEFINE_PER_CPU(unsigned long, softlockup_touch_ts); /* touch timestamp */
|
|
|
|
static DEFINE_PER_CPU(unsigned long, softlockup_print_ts); /* print timestamp */
|
|
|
|
static DEFINE_PER_CPU(struct task_struct *, softlockup_watchdog);
|
2010-01-27 23:25:22 +01:00
|
|
|
static DEFINE_PER_CPU(bool, softlock_touch_sync);
|
2005-09-07 00:16:27 +02:00
|
|
|
|
2008-01-25 21:08:34 +01:00
|
|
|
static int __read_mostly did_panic;
|
2008-05-12 21:21:14 +02:00
|
|
|
int __read_mostly softlockup_thresh = 60;
|
2006-03-24 12:18:41 +01:00
|
|
|
|
2008-05-12 21:21:04 +02:00
|
|
|
/*
|
|
|
|
* Should we panic (and reboot, if panic_timeout= is set) when a
|
|
|
|
* soft-lockup occurs:
|
|
|
|
*/
|
|
|
|
unsigned int __read_mostly softlockup_panic =
|
|
|
|
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE;
|
|
|
|
|
|
|
|
static int __init softlockup_panic_setup(char *str)
|
|
|
|
{
|
|
|
|
softlockup_panic = simple_strtoul(str, NULL, 0);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
__setup("softlockup_panic=", softlockup_panic_setup);
|
|
|
|
|
2006-03-24 12:18:41 +01:00
|
|
|
static int
|
|
|
|
softlock_panic(struct notifier_block *this, unsigned long event, void *ptr)
|
2005-09-07 00:16:27 +02:00
|
|
|
{
|
|
|
|
did_panic = 1;
|
|
|
|
|
|
|
|
return NOTIFY_DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct notifier_block panic_block = {
|
|
|
|
.notifier_call = softlock_panic,
|
|
|
|
};
|
|
|
|
|
2007-05-08 09:28:02 +02:00
|
|
|
/*
|
|
|
|
* Returns seconds, approximately. We don't need nanosecond
|
|
|
|
* resolution, and we don't need to waste time with a big divide when
|
|
|
|
* 2^30ns == 1.074s.
|
|
|
|
*/
|
2007-10-17 08:26:06 +02:00
|
|
|
static unsigned long get_timestamp(int this_cpu)
|
2007-05-08 09:28:02 +02:00
|
|
|
{
|
2008-01-25 21:08:02 +01:00
|
|
|
return cpu_clock(this_cpu) >> 30LL; /* 2^30 ~= 10^9 */
|
2007-05-08 09:28:02 +02:00
|
|
|
}
|
|
|
|
|
2008-05-27 19:23:29 +02:00
|
|
|
static void __touch_softlockup_watchdog(void)
|
2005-09-07 00:16:27 +02:00
|
|
|
{
|
2007-10-17 08:26:06 +02:00
|
|
|
int this_cpu = raw_smp_processor_id();
|
|
|
|
|
2009-10-29 14:34:13 +01:00
|
|
|
__raw_get_cpu_var(softlockup_touch_ts) = get_timestamp(this_cpu);
|
2005-09-07 00:16:27 +02:00
|
|
|
}
|
2008-05-27 19:23:29 +02:00
|
|
|
|
|
|
|
void touch_softlockup_watchdog(void)
|
|
|
|
{
|
2009-10-29 14:34:13 +01:00
|
|
|
__raw_get_cpu_var(softlockup_touch_ts) = 0;
|
2008-05-27 19:23:29 +02:00
|
|
|
}
|
2005-09-07 00:16:27 +02:00
|
|
|
EXPORT_SYMBOL(touch_softlockup_watchdog);
|
|
|
|
|
2010-01-27 23:25:22 +01:00
|
|
|
void touch_softlockup_watchdog_sync(void)
|
|
|
|
{
|
|
|
|
__raw_get_cpu_var(softlock_touch_sync) = true;
|
|
|
|
__raw_get_cpu_var(softlockup_touch_ts) = 0;
|
|
|
|
}
|
|
|
|
|
2007-05-08 09:28:05 +02:00
|
|
|
void touch_all_softlockup_watchdogs(void)
|
|
|
|
{
|
|
|
|
int cpu;
|
|
|
|
|
|
|
|
/* Cause each CPU to re-update its timestamp rather than complain */
|
|
|
|
for_each_online_cpu(cpu)
|
2009-10-29 14:34:13 +01:00
|
|
|
per_cpu(softlockup_touch_ts, cpu) = 0;
|
2007-05-08 09:28:05 +02:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(touch_all_softlockup_watchdogs);
|
|
|
|
|
2009-01-13 06:15:17 +01:00
|
|
|
int proc_dosoftlockup_thresh(struct ctl_table *table, int write,
|
2009-09-24 00:57:19 +02:00
|
|
|
void __user *buffer,
|
2009-01-13 06:15:17 +01:00
|
|
|
size_t *lenp, loff_t *ppos)
|
|
|
|
{
|
|
|
|
touch_all_softlockup_watchdogs();
|
2009-09-24 00:57:19 +02:00
|
|
|
return proc_dointvec_minmax(table, write, buffer, lenp, ppos);
|
2009-01-13 06:15:17 +01:00
|
|
|
}
|
|
|
|
|
2005-09-07 00:16:27 +02:00
|
|
|
/*
|
|
|
|
* This callback runs from the timer interrupt, and checks
|
|
|
|
* whether the watchdog thread has hung or not:
|
|
|
|
*/
|
2006-03-24 12:18:41 +01:00
|
|
|
void softlockup_tick(void)
|
2005-09-07 00:16:27 +02:00
|
|
|
{
|
|
|
|
int this_cpu = smp_processor_id();
|
2009-10-29 14:34:13 +01:00
|
|
|
unsigned long touch_ts = per_cpu(softlockup_touch_ts, this_cpu);
|
|
|
|
unsigned long print_ts;
|
2007-10-17 08:26:08 +02:00
|
|
|
struct pt_regs *regs = get_irq_regs();
|
2007-05-08 09:28:02 +02:00
|
|
|
unsigned long now;
|
2005-09-07 00:16:27 +02:00
|
|
|
|
2008-05-12 21:21:14 +02:00
|
|
|
/* Is detection switched off? */
|
2009-10-29 14:34:13 +01:00
|
|
|
if (!per_cpu(softlockup_watchdog, this_cpu) || softlockup_thresh <= 0) {
|
2008-05-12 21:21:14 +02:00
|
|
|
/* Be sure we don't false trigger if switched back on */
|
2009-10-29 14:34:13 +01:00
|
|
|
if (touch_ts)
|
|
|
|
per_cpu(softlockup_touch_ts, this_cpu) = 0;
|
2008-05-12 21:21:14 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-10-29 14:34:13 +01:00
|
|
|
if (touch_ts == 0) {
|
2010-01-27 23:25:22 +01:00
|
|
|
if (unlikely(per_cpu(softlock_touch_sync, this_cpu))) {
|
|
|
|
/*
|
|
|
|
* If the time stamp was touched atomically
|
|
|
|
* make sure the scheduler tick is up to date.
|
|
|
|
*/
|
|
|
|
per_cpu(softlock_touch_sync, this_cpu) = false;
|
|
|
|
sched_clock_tick();
|
|
|
|
}
|
2008-05-27 19:23:29 +02:00
|
|
|
__touch_softlockup_watchdog();
|
2007-05-08 09:28:02 +02:00
|
|
|
return;
|
2007-05-08 09:28:05 +02:00
|
|
|
}
|
2007-05-08 09:28:02 +02:00
|
|
|
|
2009-10-29 14:34:13 +01:00
|
|
|
print_ts = per_cpu(softlockup_print_ts, this_cpu);
|
2007-05-08 09:28:02 +02:00
|
|
|
|
|
|
|
/* report at most once a second */
|
2009-10-29 14:34:13 +01:00
|
|
|
if (print_ts == touch_ts || did_panic)
|
2005-09-07 00:16:27 +02:00
|
|
|
return;
|
|
|
|
|
2006-03-24 12:18:41 +01:00
|
|
|
/* do not print during early bootup: */
|
|
|
|
if (unlikely(system_state != SYSTEM_RUNNING)) {
|
2008-05-27 19:23:29 +02:00
|
|
|
__touch_softlockup_watchdog();
|
2005-09-07 00:16:27 +02:00
|
|
|
return;
|
2006-03-24 12:18:41 +01:00
|
|
|
}
|
2005-09-07 00:16:27 +02:00
|
|
|
|
2007-10-17 08:26:06 +02:00
|
|
|
now = get_timestamp(this_cpu);
|
2007-05-08 09:28:02 +02:00
|
|
|
|
2008-06-27 15:07:21 +02:00
|
|
|
/*
|
|
|
|
* Wake up the high-prio watchdog task twice per
|
|
|
|
* threshold timespan.
|
|
|
|
*/
|
2010-03-19 11:28:02 +01:00
|
|
|
if (time_after(now - softlockup_thresh/2, touch_ts))
|
2009-10-29 14:34:13 +01:00
|
|
|
wake_up_process(per_cpu(softlockup_watchdog, this_cpu));
|
2008-02-02 00:23:08 +01:00
|
|
|
|
2008-01-25 21:08:02 +01:00
|
|
|
/* Warn about unreasonable delays: */
|
2010-03-19 11:28:02 +01:00
|
|
|
if (time_before_eq(now - softlockup_thresh, touch_ts))
|
2007-10-17 08:26:08 +02:00
|
|
|
return;
|
2005-09-07 00:16:27 +02:00
|
|
|
|
2009-10-29 14:34:13 +01:00
|
|
|
per_cpu(softlockup_print_ts, this_cpu) = touch_ts;
|
2007-10-17 08:26:08 +02:00
|
|
|
|
|
|
|
spin_lock(&print_lock);
|
2007-10-17 08:26:09 +02:00
|
|
|
printk(KERN_ERR "BUG: soft lockup - CPU#%d stuck for %lus! [%s:%d]\n",
|
2009-10-29 14:34:13 +01:00
|
|
|
this_cpu, now - touch_ts,
|
2007-10-19 08:40:40 +02:00
|
|
|
current->comm, task_pid_nr(current));
|
2008-06-17 00:51:08 +02:00
|
|
|
print_modules();
|
2008-06-25 08:50:10 +02:00
|
|
|
print_irqtrace_events(current);
|
2007-10-17 08:26:08 +02:00
|
|
|
if (regs)
|
|
|
|
show_regs(regs);
|
|
|
|
else
|
2006-03-24 12:18:41 +01:00
|
|
|
dump_stack();
|
2007-10-17 08:26:08 +02:00
|
|
|
spin_unlock(&print_lock);
|
2008-05-12 21:21:04 +02:00
|
|
|
|
|
|
|
if (softlockup_panic)
|
|
|
|
panic("softlockup: hung tasks");
|
2005-09-07 00:16:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The watchdog thread - runs every second and touches the timestamp.
|
|
|
|
*/
|
2007-10-17 08:26:08 +02:00
|
|
|
static int watchdog(void *__bind_cpu)
|
2005-09-07 00:16:27 +02:00
|
|
|
{
|
2007-05-08 09:24:03 +02:00
|
|
|
struct sched_param param = { .sched_priority = MAX_RT_PRIO-1 };
|
2005-09-07 00:16:27 +02:00
|
|
|
|
|
|
|
sched_setscheduler(current, SCHED_FIFO, ¶m);
|
|
|
|
|
2007-05-08 09:28:02 +02:00
|
|
|
/* initialize timestamp */
|
2008-05-27 19:23:29 +02:00
|
|
|
__touch_softlockup_watchdog();
|
2007-05-08 09:28:02 +02:00
|
|
|
|
2008-02-08 15:41:13 +01:00
|
|
|
set_current_state(TASK_INTERRUPTIBLE);
|
2005-09-07 00:16:27 +02:00
|
|
|
/*
|
2006-03-24 12:18:41 +01:00
|
|
|
* Run briefly once per second to reset the softlockup timestamp.
|
2008-01-25 21:08:02 +01:00
|
|
|
* If this gets delayed for more than 60 seconds then the
|
2006-03-24 12:18:41 +01:00
|
|
|
* debug-printout triggers in softlockup_tick().
|
2005-09-07 00:16:27 +02:00
|
|
|
*/
|
|
|
|
while (!kthread_should_stop()) {
|
2008-05-27 19:23:29 +02:00
|
|
|
__touch_softlockup_watchdog();
|
2008-02-02 00:23:08 +01:00
|
|
|
schedule();
|
|
|
|
|
|
|
|
if (kthread_should_stop())
|
|
|
|
break;
|
2008-01-25 21:08:02 +01:00
|
|
|
|
2008-02-08 15:41:13 +01:00
|
|
|
set_current_state(TASK_INTERRUPTIBLE);
|
2005-09-07 00:16:27 +02:00
|
|
|
}
|
2008-02-08 15:41:13 +01:00
|
|
|
__set_current_state(TASK_RUNNING);
|
2005-09-07 00:16:27 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create/destroy watchdog threads as CPUs come and go:
|
|
|
|
*/
|
2006-07-30 12:03:35 +02:00
|
|
|
static int __cpuinit
|
2005-09-07 00:16:27 +02:00
|
|
|
cpu_callback(struct notifier_block *nfb, unsigned long action, void *hcpu)
|
|
|
|
{
|
|
|
|
int hotcpu = (unsigned long)hcpu;
|
|
|
|
struct task_struct *p;
|
|
|
|
|
|
|
|
switch (action) {
|
|
|
|
case CPU_UP_PREPARE:
|
2007-05-09 11:35:10 +02:00
|
|
|
case CPU_UP_PREPARE_FROZEN:
|
2009-10-29 14:34:13 +01:00
|
|
|
BUG_ON(per_cpu(softlockup_watchdog, hotcpu));
|
2005-09-07 00:16:27 +02:00
|
|
|
p = kthread_create(watchdog, hcpu, "watchdog/%d", hotcpu);
|
|
|
|
if (IS_ERR(p)) {
|
2007-10-17 08:26:08 +02:00
|
|
|
printk(KERN_ERR "watchdog for %i failed\n", hotcpu);
|
2005-09-07 00:16:27 +02:00
|
|
|
return NOTIFY_BAD;
|
|
|
|
}
|
2009-10-29 14:34:13 +01:00
|
|
|
per_cpu(softlockup_touch_ts, hotcpu) = 0;
|
|
|
|
per_cpu(softlockup_watchdog, hotcpu) = p;
|
2005-09-07 00:16:27 +02:00
|
|
|
kthread_bind(p, hotcpu);
|
2007-10-17 08:26:08 +02:00
|
|
|
break;
|
2005-09-07 00:16:27 +02:00
|
|
|
case CPU_ONLINE:
|
2007-05-09 11:35:10 +02:00
|
|
|
case CPU_ONLINE_FROZEN:
|
2009-10-29 14:34:13 +01:00
|
|
|
wake_up_process(per_cpu(softlockup_watchdog, hotcpu));
|
2005-09-07 00:16:27 +02:00
|
|
|
break;
|
|
|
|
#ifdef CONFIG_HOTPLUG_CPU
|
2008-02-02 00:23:08 +01:00
|
|
|
case CPU_UP_CANCELED:
|
|
|
|
case CPU_UP_CANCELED_FROZEN:
|
2009-10-29 14:34:13 +01:00
|
|
|
if (!per_cpu(softlockup_watchdog, hotcpu))
|
2008-02-02 00:23:08 +01:00
|
|
|
break;
|
|
|
|
/* Unbind so it can run. Fall thru. */
|
2009-10-29 14:34:13 +01:00
|
|
|
kthread_bind(per_cpu(softlockup_watchdog, hotcpu),
|
2009-01-01 00:42:23 +01:00
|
|
|
cpumask_any(cpu_online_mask));
|
2005-09-07 00:16:27 +02:00
|
|
|
case CPU_DEAD:
|
2007-05-09 11:35:10 +02:00
|
|
|
case CPU_DEAD_FROZEN:
|
2009-10-29 14:34:13 +01:00
|
|
|
p = per_cpu(softlockup_watchdog, hotcpu);
|
|
|
|
per_cpu(softlockup_watchdog, hotcpu) = NULL;
|
2005-09-07 00:16:27 +02:00
|
|
|
kthread_stop(p);
|
|
|
|
break;
|
|
|
|
#endif /* CONFIG_HOTPLUG_CPU */
|
2007-10-17 08:26:08 +02:00
|
|
|
}
|
2005-09-07 00:16:27 +02:00
|
|
|
return NOTIFY_OK;
|
|
|
|
}
|
|
|
|
|
2006-07-30 12:03:35 +02:00
|
|
|
static struct notifier_block __cpuinitdata cpu_nfb = {
|
2005-09-07 00:16:27 +02:00
|
|
|
.notifier_call = cpu_callback
|
|
|
|
};
|
|
|
|
|
2008-07-26 04:45:11 +02:00
|
|
|
static int __initdata nosoftlockup;
|
|
|
|
|
|
|
|
static int __init nosoftlockup_setup(char *str)
|
|
|
|
{
|
|
|
|
nosoftlockup = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
__setup("nosoftlockup", nosoftlockup_setup);
|
|
|
|
|
|
|
|
static int __init spawn_softlockup_task(void)
|
2005-09-07 00:16:27 +02:00
|
|
|
{
|
|
|
|
void *cpu = (void *)(long)smp_processor_id();
|
2008-07-26 04:45:11 +02:00
|
|
|
int err;
|
2005-09-07 00:16:27 +02:00
|
|
|
|
2008-07-26 04:45:11 +02:00
|
|
|
if (nosoftlockup)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err = cpu_callback(&cpu_nfb, CPU_UP_PREPARE, cpu);
|
|
|
|
if (err == NOTIFY_BAD) {
|
|
|
|
BUG();
|
|
|
|
return 1;
|
|
|
|
}
|
2005-09-07 00:16:27 +02:00
|
|
|
cpu_callback(&cpu_nfb, CPU_ONLINE, cpu);
|
|
|
|
register_cpu_notifier(&cpu_nfb);
|
|
|
|
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 11:16:30 +02:00
|
|
|
atomic_notifier_chain_register(&panic_notifier_list, &panic_block);
|
2008-07-26 04:45:11 +02:00
|
|
|
|
|
|
|
return 0;
|
2005-09-07 00:16:27 +02:00
|
|
|
}
|
2008-07-26 04:45:11 +02:00
|
|
|
early_initcall(spawn_softlockup_task);
|