License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 17:07:57 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2017-07-13 00:35:52 +03:00
|
|
|
/*
|
|
|
|
* Watchdog support on powerpc systems.
|
|
|
|
*
|
|
|
|
* Copyright 2017, IBM Corporation.
|
|
|
|
*
|
|
|
|
* This uses code from arch/sparc/kernel/nmi.c and kernel/watchdog.c
|
|
|
|
*/
|
2017-10-12 07:44:32 +03:00
|
|
|
|
|
|
|
#define pr_fmt(fmt) "watchdog: " fmt
|
|
|
|
|
2017-07-13 00:35:52 +03:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/param.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/percpu.h>
|
|
|
|
#include <linux/cpu.h>
|
|
|
|
#include <linux/nmi.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/export.h>
|
|
|
|
#include <linux/kprobes.h>
|
|
|
|
#include <linux/hardirq.h>
|
|
|
|
#include <linux/reboot.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/kdebug.h>
|
|
|
|
#include <linux/sched/debug.h>
|
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/smp.h>
|
|
|
|
|
2021-01-30 16:08:38 +03:00
|
|
|
#include <asm/interrupt.h>
|
2017-07-13 00:35:52 +03:00
|
|
|
#include <asm/paca.h>
|
2021-01-04 17:32:00 +03:00
|
|
|
#include <asm/nmi.h>
|
2017-07-13 00:35:52 +03:00
|
|
|
|
|
|
|
/*
|
2017-11-01 03:27:33 +03:00
|
|
|
* The powerpc watchdog ensures that each CPU is able to service timers.
|
|
|
|
* The watchdog sets up a simple timer on each CPU to run once per timer
|
|
|
|
* period, and updates a per-cpu timestamp and a "pending" cpumask. This is
|
|
|
|
* the heartbeat.
|
2017-07-13 00:35:52 +03:00
|
|
|
*
|
2017-11-01 03:27:33 +03:00
|
|
|
* Then there are two systems to check that the heartbeat is still running.
|
|
|
|
* The local soft-NMI, and the SMP checker.
|
2017-07-13 00:35:52 +03:00
|
|
|
*
|
2017-11-01 03:27:33 +03:00
|
|
|
* The soft-NMI checker can detect lockups on the local CPU. When interrupts
|
|
|
|
* are disabled with local_irq_disable(), platforms that use soft-masking
|
|
|
|
* can leave hardware interrupts enabled and handle them with a masked
|
|
|
|
* interrupt handler. The masked handler can send the timer interrupt to the
|
|
|
|
* watchdog's soft_nmi_interrupt(), which appears to Linux as an NMI
|
|
|
|
* interrupt, and can be used to detect CPUs stuck with IRQs disabled.
|
|
|
|
*
|
|
|
|
* The soft-NMI checker will compare the heartbeat timestamp for this CPU
|
|
|
|
* with the current time, and take action if the difference exceeds the
|
|
|
|
* watchdog threshold.
|
|
|
|
*
|
|
|
|
* The limitation of the soft-NMI watchdog is that it does not work when
|
|
|
|
* interrupts are hard disabled or otherwise not being serviced. This is
|
|
|
|
* solved by also having a SMP watchdog where all CPUs check all other
|
|
|
|
* CPUs heartbeat.
|
|
|
|
*
|
|
|
|
* The SMP checker can detect lockups on other CPUs. A gobal "pending"
|
|
|
|
* cpumask is kept, containing all CPUs which enable the watchdog. Each
|
|
|
|
* CPU clears their pending bit in their heartbeat timer. When the bitmask
|
|
|
|
* becomes empty, the last CPU to clear its pending bit updates a global
|
|
|
|
* timestamp and refills the pending bitmask.
|
|
|
|
*
|
|
|
|
* In the heartbeat timer, if any CPU notices that the global timestamp has
|
|
|
|
* not been updated for a period exceeding the watchdog threshold, then it
|
|
|
|
* means the CPU(s) with their bit still set in the pending mask have had
|
|
|
|
* their heartbeat stop, and action is taken.
|
|
|
|
*
|
2018-05-06 14:23:46 +03:00
|
|
|
* Some platforms implement true NMI IPIs, which can be used by the SMP
|
2017-11-01 03:27:33 +03:00
|
|
|
* watchdog to detect an unresponsive CPU and pull it out of its stuck
|
|
|
|
* state with the NMI IPI, to get crash/debug data from it. This way the
|
|
|
|
* SMP watchdog can detect hardware interrupts off lockups.
|
2017-07-13 00:35:52 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
static cpumask_t wd_cpus_enabled __read_mostly;
|
|
|
|
|
|
|
|
static u64 wd_panic_timeout_tb __read_mostly; /* timebase ticks until panic */
|
|
|
|
static u64 wd_smp_panic_timeout_tb __read_mostly; /* panic other CPUs */
|
|
|
|
|
|
|
|
static u64 wd_timer_period_ms __read_mostly; /* interval between heartbeat */
|
|
|
|
|
2019-04-09 07:40:05 +03:00
|
|
|
static DEFINE_PER_CPU(struct hrtimer, wd_hrtimer);
|
2017-07-13 00:35:52 +03:00
|
|
|
static DEFINE_PER_CPU(u64, wd_timer_tb);
|
|
|
|
|
2017-11-01 03:27:33 +03:00
|
|
|
/* SMP checker bits */
|
2017-07-13 00:35:52 +03:00
|
|
|
static unsigned long __wd_smp_lock;
|
|
|
|
static cpumask_t wd_smp_cpus_pending;
|
|
|
|
static cpumask_t wd_smp_cpus_stuck;
|
|
|
|
static u64 wd_smp_last_reset_tb;
|
|
|
|
|
|
|
|
static inline void wd_smp_lock(unsigned long *flags)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Avoid locking layers if possible.
|
|
|
|
* This may be called from low level interrupt handlers at some
|
|
|
|
* point in future.
|
|
|
|
*/
|
2017-08-09 15:41:22 +03:00
|
|
|
raw_local_irq_save(*flags);
|
|
|
|
hard_irq_disable(); /* Make it soft-NMI safe */
|
|
|
|
while (unlikely(test_and_set_bit_lock(0, &__wd_smp_lock))) {
|
|
|
|
raw_local_irq_restore(*flags);
|
|
|
|
spin_until_cond(!test_bit(0, &__wd_smp_lock));
|
|
|
|
raw_local_irq_save(*flags);
|
|
|
|
hard_irq_disable();
|
|
|
|
}
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void wd_smp_unlock(unsigned long *flags)
|
|
|
|
{
|
|
|
|
clear_bit_unlock(0, &__wd_smp_lock);
|
2017-08-09 15:41:22 +03:00
|
|
|
raw_local_irq_restore(*flags);
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wd_lockup_ipi(struct pt_regs *regs)
|
|
|
|
{
|
2018-05-05 10:26:00 +03:00
|
|
|
int cpu = raw_smp_processor_id();
|
|
|
|
u64 tb = get_tb();
|
|
|
|
|
|
|
|
pr_emerg("CPU %d Hard LOCKUP\n", cpu);
|
|
|
|
pr_emerg("CPU %d TB:%lld, last heartbeat TB:%lld (%lldms ago)\n",
|
|
|
|
cpu, tb, per_cpu(wd_timer_tb, cpu),
|
|
|
|
tb_to_ns(tb - per_cpu(wd_timer_tb, cpu)) / 1000000);
|
2017-07-13 00:35:52 +03:00
|
|
|
print_modules();
|
|
|
|
print_irqtrace_events(current);
|
|
|
|
if (regs)
|
|
|
|
show_regs(regs);
|
|
|
|
else
|
|
|
|
dump_stack();
|
|
|
|
|
2017-09-29 06:29:37 +03:00
|
|
|
/* Do not panic from here because that can recurse into NMI IPI layer */
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
|
2017-08-09 15:41:25 +03:00
|
|
|
static void set_cpumask_stuck(const struct cpumask *cpumask, u64 tb)
|
2017-07-13 00:35:52 +03:00
|
|
|
{
|
2017-08-09 15:41:25 +03:00
|
|
|
cpumask_or(&wd_smp_cpus_stuck, &wd_smp_cpus_stuck, cpumask);
|
|
|
|
cpumask_andnot(&wd_smp_cpus_pending, &wd_smp_cpus_pending, cpumask);
|
2017-07-13 00:35:52 +03:00
|
|
|
if (cpumask_empty(&wd_smp_cpus_pending)) {
|
|
|
|
wd_smp_last_reset_tb = tb;
|
|
|
|
cpumask_andnot(&wd_smp_cpus_pending,
|
|
|
|
&wd_cpus_enabled,
|
|
|
|
&wd_smp_cpus_stuck);
|
|
|
|
}
|
|
|
|
}
|
2017-08-09 15:41:25 +03:00
|
|
|
static void set_cpu_stuck(int cpu, u64 tb)
|
|
|
|
{
|
|
|
|
set_cpumask_stuck(cpumask_of(cpu), tb);
|
|
|
|
}
|
2017-07-13 00:35:52 +03:00
|
|
|
|
|
|
|
static void watchdog_smp_panic(int cpu, u64 tb)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
wd_smp_lock(&flags);
|
|
|
|
/* Double check some things under lock */
|
|
|
|
if ((s64)(tb - wd_smp_last_reset_tb) < (s64)wd_smp_panic_timeout_tb)
|
|
|
|
goto out;
|
|
|
|
if (cpumask_test_cpu(cpu, &wd_smp_cpus_pending))
|
|
|
|
goto out;
|
|
|
|
if (cpumask_weight(&wd_smp_cpus_pending) == 0)
|
|
|
|
goto out;
|
|
|
|
|
2017-10-12 07:44:32 +03:00
|
|
|
pr_emerg("CPU %d detected hard LOCKUP on other CPUs %*pbl\n",
|
|
|
|
cpu, cpumask_pr_args(&wd_smp_cpus_pending));
|
2018-05-05 10:26:00 +03:00
|
|
|
pr_emerg("CPU %d TB:%lld, last SMP heartbeat TB:%lld (%lldms ago)\n",
|
|
|
|
cpu, tb, wd_smp_last_reset_tb,
|
|
|
|
tb_to_ns(tb - wd_smp_last_reset_tb) / 1000000);
|
2017-07-13 00:35:52 +03:00
|
|
|
|
2017-09-29 06:29:38 +03:00
|
|
|
if (!sysctl_hardlockup_all_cpu_backtrace) {
|
|
|
|
/*
|
|
|
|
* Try to trigger the stuck CPUs, unless we are going to
|
|
|
|
* get a backtrace on all of them anyway.
|
|
|
|
*/
|
|
|
|
for_each_cpu(c, &wd_smp_cpus_pending) {
|
|
|
|
if (c == cpu)
|
|
|
|
continue;
|
|
|
|
smp_send_nmi_ipi(c, wd_lockup_ipi, 1000000);
|
|
|
|
}
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
|
2017-08-09 15:41:25 +03:00
|
|
|
/* Take the stuck CPUs out of the watch group */
|
|
|
|
set_cpumask_stuck(&wd_smp_cpus_pending, tb);
|
2017-07-13 00:35:52 +03:00
|
|
|
|
|
|
|
wd_smp_unlock(&flags);
|
|
|
|
|
|
|
|
printk_safe_flush();
|
|
|
|
/*
|
|
|
|
* printk_safe_flush() seems to require another print
|
|
|
|
* before anything actually goes out to console.
|
|
|
|
*/
|
|
|
|
if (sysctl_hardlockup_all_cpu_backtrace)
|
|
|
|
trigger_allbutself_cpu_backtrace();
|
|
|
|
|
|
|
|
if (hardlockup_panic)
|
|
|
|
nmi_panic(NULL, "Hard LOCKUP");
|
2017-08-09 15:41:24 +03:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
out:
|
|
|
|
wd_smp_unlock(&flags);
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void wd_smp_clear_cpu_pending(int cpu, u64 tb)
|
|
|
|
{
|
|
|
|
if (!cpumask_test_cpu(cpu, &wd_smp_cpus_pending)) {
|
|
|
|
if (unlikely(cpumask_test_cpu(cpu, &wd_smp_cpus_stuck))) {
|
2018-05-05 10:26:00 +03:00
|
|
|
struct pt_regs *regs = get_irq_regs();
|
2017-07-13 00:35:52 +03:00
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
wd_smp_lock(&flags);
|
2018-05-05 10:26:00 +03:00
|
|
|
|
|
|
|
pr_emerg("CPU %d became unstuck TB:%lld\n",
|
|
|
|
cpu, tb);
|
|
|
|
print_irqtrace_events(current);
|
|
|
|
if (regs)
|
|
|
|
show_regs(regs);
|
|
|
|
else
|
|
|
|
dump_stack();
|
|
|
|
|
2017-07-13 00:35:52 +03:00
|
|
|
cpumask_clear_cpu(cpu, &wd_smp_cpus_stuck);
|
|
|
|
wd_smp_unlock(&flags);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
cpumask_clear_cpu(cpu, &wd_smp_cpus_pending);
|
|
|
|
if (cpumask_empty(&wd_smp_cpus_pending)) {
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
wd_smp_lock(&flags);
|
|
|
|
if (cpumask_empty(&wd_smp_cpus_pending)) {
|
|
|
|
wd_smp_last_reset_tb = tb;
|
|
|
|
cpumask_andnot(&wd_smp_cpus_pending,
|
|
|
|
&wd_cpus_enabled,
|
|
|
|
&wd_smp_cpus_stuck);
|
|
|
|
}
|
|
|
|
wd_smp_unlock(&flags);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void watchdog_timer_interrupt(int cpu)
|
|
|
|
{
|
|
|
|
u64 tb = get_tb();
|
|
|
|
|
|
|
|
per_cpu(wd_timer_tb, cpu) = tb;
|
|
|
|
|
|
|
|
wd_smp_clear_cpu_pending(cpu, tb);
|
|
|
|
|
|
|
|
if ((s64)(tb - wd_smp_last_reset_tb) >= (s64)wd_smp_panic_timeout_tb)
|
|
|
|
watchdog_smp_panic(cpu, tb);
|
|
|
|
}
|
|
|
|
|
2021-01-30 16:08:38 +03:00
|
|
|
DEFINE_INTERRUPT_HANDLER_NMI(soft_nmi_interrupt)
|
2017-07-13 00:35:52 +03:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
int cpu = raw_smp_processor_id();
|
|
|
|
u64 tb;
|
|
|
|
|
2021-01-30 16:08:49 +03:00
|
|
|
/* should only arrive from kernel, with irqs disabled */
|
|
|
|
WARN_ON_ONCE(!arch_irq_disabled_regs(regs));
|
|
|
|
|
2017-07-13 00:35:52 +03:00
|
|
|
if (!cpumask_test_cpu(cpu, &wd_cpus_enabled))
|
2021-01-30 16:08:38 +03:00
|
|
|
return 0;
|
2017-07-13 00:35:52 +03:00
|
|
|
|
2017-08-01 15:00:54 +03:00
|
|
|
__this_cpu_inc(irq_stat.soft_nmi_irqs);
|
|
|
|
|
2017-07-13 00:35:52 +03:00
|
|
|
tb = get_tb();
|
|
|
|
if (tb - per_cpu(wd_timer_tb, cpu) >= wd_panic_timeout_tb) {
|
|
|
|
wd_smp_lock(&flags);
|
|
|
|
if (cpumask_test_cpu(cpu, &wd_smp_cpus_stuck)) {
|
|
|
|
wd_smp_unlock(&flags);
|
2021-01-30 16:08:49 +03:00
|
|
|
return 0;
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
set_cpu_stuck(cpu, tb);
|
|
|
|
|
2018-05-05 10:26:00 +03:00
|
|
|
pr_emerg("CPU %d self-detected hard LOCKUP @ %pS\n",
|
|
|
|
cpu, (void *)regs->nip);
|
|
|
|
pr_emerg("CPU %d TB:%lld, last heartbeat TB:%lld (%lldms ago)\n",
|
|
|
|
cpu, tb, per_cpu(wd_timer_tb, cpu),
|
|
|
|
tb_to_ns(tb - per_cpu(wd_timer_tb, cpu)) / 1000000);
|
2017-07-13 00:35:52 +03:00
|
|
|
print_modules();
|
|
|
|
print_irqtrace_events(current);
|
2017-10-12 07:44:33 +03:00
|
|
|
show_regs(regs);
|
2017-07-13 00:35:52 +03:00
|
|
|
|
|
|
|
wd_smp_unlock(&flags);
|
|
|
|
|
|
|
|
if (sysctl_hardlockup_all_cpu_backtrace)
|
|
|
|
trigger_allbutself_cpu_backtrace();
|
|
|
|
|
|
|
|
if (hardlockup_panic)
|
|
|
|
nmi_panic(regs, "Hard LOCKUP");
|
|
|
|
}
|
|
|
|
if (wd_panic_timeout_tb < 0x7fffffff)
|
|
|
|
mtspr(SPRN_DEC, wd_panic_timeout_tb);
|
|
|
|
|
2021-01-30 16:08:38 +03:00
|
|
|
return 0;
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
|
2019-04-09 07:40:05 +03:00
|
|
|
static enum hrtimer_restart watchdog_timer_fn(struct hrtimer *hrtimer)
|
2017-07-13 00:35:52 +03:00
|
|
|
{
|
|
|
|
int cpu = smp_processor_id();
|
|
|
|
|
2019-04-09 07:40:05 +03:00
|
|
|
if (!(watchdog_enabled & NMI_WATCHDOG_ENABLED))
|
|
|
|
return HRTIMER_NORESTART;
|
|
|
|
|
|
|
|
if (!cpumask_test_cpu(cpu, &watchdog_cpumask))
|
|
|
|
return HRTIMER_NORESTART;
|
|
|
|
|
2017-07-13 00:35:52 +03:00
|
|
|
watchdog_timer_interrupt(cpu);
|
|
|
|
|
2019-04-09 07:40:05 +03:00
|
|
|
hrtimer_forward_now(hrtimer, ms_to_ktime(wd_timer_period_ms));
|
|
|
|
|
|
|
|
return HRTIMER_RESTART;
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void arch_touch_nmi_watchdog(void)
|
|
|
|
{
|
2017-08-09 15:41:23 +03:00
|
|
|
unsigned long ticks = tb_ticks_per_usec * wd_timer_period_ms * 1000;
|
2017-07-13 00:35:52 +03:00
|
|
|
int cpu = smp_processor_id();
|
2017-09-29 06:29:39 +03:00
|
|
|
u64 tb = get_tb();
|
2017-07-13 00:35:52 +03:00
|
|
|
|
2017-09-29 06:29:39 +03:00
|
|
|
if (tb - per_cpu(wd_timer_tb, cpu) >= ticks) {
|
|
|
|
per_cpu(wd_timer_tb, cpu) = tb;
|
|
|
|
wd_smp_clear_cpu_pending(cpu, tb);
|
|
|
|
}
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(arch_touch_nmi_watchdog);
|
|
|
|
|
2019-04-09 07:40:05 +03:00
|
|
|
static void start_watchdog(void *arg)
|
2017-07-13 00:35:52 +03:00
|
|
|
{
|
2019-04-09 07:40:05 +03:00
|
|
|
struct hrtimer *hrtimer = this_cpu_ptr(&wd_hrtimer);
|
|
|
|
int cpu = smp_processor_id();
|
2017-08-09 15:41:26 +03:00
|
|
|
unsigned long flags;
|
|
|
|
|
2017-07-13 00:35:52 +03:00
|
|
|
if (cpumask_test_cpu(cpu, &wd_cpus_enabled)) {
|
|
|
|
WARN_ON(1);
|
2019-04-09 07:40:05 +03:00
|
|
|
return;
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(watchdog_enabled & NMI_WATCHDOG_ENABLED))
|
2019-04-09 07:40:05 +03:00
|
|
|
return;
|
2017-07-13 00:35:52 +03:00
|
|
|
|
|
|
|
if (!cpumask_test_cpu(cpu, &watchdog_cpumask))
|
2019-04-09 07:40:05 +03:00
|
|
|
return;
|
2017-07-13 00:35:52 +03:00
|
|
|
|
2017-08-09 15:41:26 +03:00
|
|
|
wd_smp_lock(&flags);
|
2017-07-13 00:35:52 +03:00
|
|
|
cpumask_set_cpu(cpu, &wd_cpus_enabled);
|
|
|
|
if (cpumask_weight(&wd_cpus_enabled) == 1) {
|
|
|
|
cpumask_set_cpu(cpu, &wd_smp_cpus_pending);
|
|
|
|
wd_smp_last_reset_tb = get_tb();
|
|
|
|
}
|
2017-08-09 15:41:26 +03:00
|
|
|
wd_smp_unlock(&flags);
|
|
|
|
|
2019-04-09 07:40:05 +03:00
|
|
|
*this_cpu_ptr(&wd_timer_tb) = get_tb();
|
2017-07-13 00:35:52 +03:00
|
|
|
|
2019-04-09 07:40:05 +03:00
|
|
|
hrtimer_init(hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
|
|
|
|
hrtimer->function = watchdog_timer_fn;
|
|
|
|
hrtimer_start(hrtimer, ms_to_ktime(wd_timer_period_ms),
|
|
|
|
HRTIMER_MODE_REL_PINNED);
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
|
2019-04-09 07:40:05 +03:00
|
|
|
static int start_watchdog_on_cpu(unsigned int cpu)
|
2017-07-13 00:35:52 +03:00
|
|
|
{
|
2019-04-09 07:40:05 +03:00
|
|
|
return smp_call_function_single(cpu, start_watchdog, NULL, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void stop_watchdog(void *arg)
|
|
|
|
{
|
|
|
|
struct hrtimer *hrtimer = this_cpu_ptr(&wd_hrtimer);
|
|
|
|
int cpu = smp_processor_id();
|
2017-08-09 15:41:26 +03:00
|
|
|
unsigned long flags;
|
|
|
|
|
2017-07-13 00:35:52 +03:00
|
|
|
if (!cpumask_test_cpu(cpu, &wd_cpus_enabled))
|
2019-04-09 07:40:05 +03:00
|
|
|
return; /* Can happen in CPU unplug case */
|
2017-07-13 00:35:52 +03:00
|
|
|
|
2019-04-09 07:40:05 +03:00
|
|
|
hrtimer_cancel(hrtimer);
|
2017-07-13 00:35:52 +03:00
|
|
|
|
2017-08-09 15:41:26 +03:00
|
|
|
wd_smp_lock(&flags);
|
2017-07-13 00:35:52 +03:00
|
|
|
cpumask_clear_cpu(cpu, &wd_cpus_enabled);
|
2017-08-09 15:41:26 +03:00
|
|
|
wd_smp_unlock(&flags);
|
|
|
|
|
2017-07-13 00:35:52 +03:00
|
|
|
wd_smp_clear_cpu_pending(cpu, get_tb());
|
2019-04-09 07:40:05 +03:00
|
|
|
}
|
2017-07-13 00:35:52 +03:00
|
|
|
|
2019-04-09 07:40:05 +03:00
|
|
|
static int stop_watchdog_on_cpu(unsigned int cpu)
|
|
|
|
{
|
|
|
|
return smp_call_function_single(cpu, stop_watchdog, NULL, true);
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void watchdog_calc_timeouts(void)
|
|
|
|
{
|
|
|
|
wd_panic_timeout_tb = watchdog_thresh * ppc_tb_freq;
|
|
|
|
|
|
|
|
/* Have the SMP detector trigger a bit later */
|
|
|
|
wd_smp_panic_timeout_tb = wd_panic_timeout_tb * 3 / 2;
|
|
|
|
|
|
|
|
/* 2/5 is the factor that the perf based detector uses */
|
|
|
|
wd_timer_period_ms = watchdog_thresh * 1000 * 2 / 5;
|
|
|
|
}
|
|
|
|
|
2017-10-02 13:34:50 +03:00
|
|
|
void watchdog_nmi_stop(void)
|
2017-07-13 00:35:52 +03:00
|
|
|
{
|
|
|
|
int cpu;
|
|
|
|
|
2017-10-02 13:34:50 +03:00
|
|
|
for_each_cpu(cpu, &wd_cpus_enabled)
|
2019-04-09 07:40:05 +03:00
|
|
|
stop_watchdog_on_cpu(cpu);
|
2017-10-02 13:34:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void watchdog_nmi_start(void)
|
|
|
|
{
|
|
|
|
int cpu;
|
|
|
|
|
|
|
|
watchdog_calc_timeouts();
|
|
|
|
for_each_cpu_and(cpu, cpu_online_mask, &watchdog_cpumask)
|
2019-04-09 07:40:05 +03:00
|
|
|
start_watchdog_on_cpu(cpu);
|
2017-07-13 00:35:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2017-10-03 17:39:02 +03:00
|
|
|
* Invoked from core watchdog init.
|
2017-07-13 00:35:52 +03:00
|
|
|
*/
|
2017-10-03 17:39:02 +03:00
|
|
|
int __init watchdog_nmi_probe(void)
|
2017-07-13 00:35:52 +03:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2017-10-03 17:39:02 +03:00
|
|
|
err = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
|
|
|
|
"powerpc/watchdog:online",
|
2019-04-09 07:40:05 +03:00
|
|
|
start_watchdog_on_cpu,
|
|
|
|
stop_watchdog_on_cpu);
|
2017-10-03 17:39:02 +03:00
|
|
|
if (err < 0) {
|
2017-10-12 07:44:32 +03:00
|
|
|
pr_warn("could not be initialized");
|
2017-10-03 17:39:02 +03:00
|
|
|
return err;
|
|
|
|
}
|
2017-07-13 00:35:52 +03:00
|
|
|
return 0;
|
|
|
|
}
|