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 22:07:57 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* linux/include/linux/nmi.h
|
|
|
|
*/
|
|
|
|
#ifndef LINUX_NMI_H
|
|
|
|
#define LINUX_NMI_H
|
|
|
|
|
2006-09-29 16:59:03 +08:00
|
|
|
#include <linux/sched.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <asm/irq.h>
|
2017-07-13 05:35:43 +08:00
|
|
|
#if defined(CONFIG_HAVE_NMI_WATCHDOG)
|
|
|
|
#include <asm/nmi.h>
|
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2017-02-02 18:17:23 +08:00
|
|
|
#ifdef CONFIG_LOCKUP_DETECTOR
|
2017-07-13 05:35:46 +08:00
|
|
|
void lockup_detector_init(void);
|
2017-09-13 03:36:57 +08:00
|
|
|
void lockup_detector_soft_poweroff(void);
|
2017-09-13 03:37:04 +08:00
|
|
|
void lockup_detector_cleanup(void);
|
2017-09-13 03:37:13 +08:00
|
|
|
bool is_hardlockup(void);
|
|
|
|
|
|
|
|
extern int watchdog_user_enabled;
|
2017-09-13 03:37:15 +08:00
|
|
|
extern int nmi_watchdog_user_enabled;
|
|
|
|
extern int soft_watchdog_user_enabled;
|
2017-09-13 03:37:13 +08:00
|
|
|
extern int watchdog_thresh;
|
|
|
|
extern unsigned long watchdog_enabled;
|
|
|
|
|
|
|
|
extern struct cpumask watchdog_cpumask;
|
|
|
|
extern unsigned long *watchdog_cpumask_bits;
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
extern int sysctl_softlockup_all_cpu_backtrace;
|
|
|
|
extern int sysctl_hardlockup_all_cpu_backtrace;
|
2017-07-13 05:35:46 +08:00
|
|
|
#else
|
2017-09-13 03:37:13 +08:00
|
|
|
#define sysctl_softlockup_all_cpu_backtrace 0
|
|
|
|
#define sysctl_hardlockup_all_cpu_backtrace 0
|
|
|
|
#endif /* !CONFIG_SMP */
|
|
|
|
|
|
|
|
#else /* CONFIG_LOCKUP_DETECTOR */
|
2017-09-13 03:36:57 +08:00
|
|
|
static inline void lockup_detector_init(void) { }
|
|
|
|
static inline void lockup_detector_soft_poweroff(void) { }
|
2017-09-13 03:37:04 +08:00
|
|
|
static inline void lockup_detector_cleanup(void) { }
|
2017-09-13 03:37:13 +08:00
|
|
|
#endif /* !CONFIG_LOCKUP_DETECTOR */
|
2017-07-13 05:35:46 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_SOFTLOCKUP_DETECTOR
|
2017-02-02 18:17:23 +08:00
|
|
|
extern void touch_softlockup_watchdog_sched(void);
|
|
|
|
extern void touch_softlockup_watchdog(void);
|
|
|
|
extern void touch_softlockup_watchdog_sync(void);
|
|
|
|
extern void touch_all_softlockup_watchdogs(void);
|
|
|
|
extern unsigned int softlockup_panic;
|
2018-07-10 19:42:10 +08:00
|
|
|
|
|
|
|
extern int lockup_detector_online_cpu(unsigned int cpu);
|
|
|
|
extern int lockup_detector_offline_cpu(unsigned int cpu);
|
|
|
|
#else /* CONFIG_SOFTLOCKUP_DETECTOR */
|
2017-09-13 03:37:13 +08:00
|
|
|
static inline void touch_softlockup_watchdog_sched(void) { }
|
|
|
|
static inline void touch_softlockup_watchdog(void) { }
|
|
|
|
static inline void touch_softlockup_watchdog_sync(void) { }
|
|
|
|
static inline void touch_all_softlockup_watchdogs(void) { }
|
2018-07-10 19:42:10 +08:00
|
|
|
|
|
|
|
#define lockup_detector_online_cpu NULL
|
|
|
|
#define lockup_detector_offline_cpu NULL
|
|
|
|
#endif /* CONFIG_SOFTLOCKUP_DETECTOR */
|
2017-02-02 18:17:23 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_DETECT_HUNG_TASK
|
|
|
|
void reset_hung_task_detector(void);
|
|
|
|
#else
|
2017-09-13 03:37:13 +08:00
|
|
|
static inline void reset_hung_task_detector(void) { }
|
2017-02-02 18:17:23 +08:00
|
|
|
#endif
|
|
|
|
|
2016-12-15 07:06:21 +08:00
|
|
|
/*
|
|
|
|
* The run state of the lockup detectors is controlled by the content of the
|
|
|
|
* 'watchdog_enabled' variable. Each lockup detector has its dedicated bit -
|
|
|
|
* bit 0 for the hard lockup detector and bit 1 for the soft lockup detector.
|
|
|
|
*
|
2017-09-13 03:37:15 +08:00
|
|
|
* 'watchdog_user_enabled', 'nmi_watchdog_user_enabled' and
|
|
|
|
* 'soft_watchdog_user_enabled' are variables that are only used as an
|
|
|
|
* 'interface' between the parameters in /proc/sys/kernel and the internal
|
|
|
|
* state bits in 'watchdog_enabled'. The 'watchdog_thresh' variable is
|
|
|
|
* handled differently because its value is not boolean, and the lockup
|
|
|
|
* detectors are 'suspended' while 'watchdog_thresh' is equal zero.
|
2016-12-15 07:06:21 +08:00
|
|
|
*/
|
|
|
|
#define NMI_WATCHDOG_ENABLED_BIT 0
|
|
|
|
#define SOFT_WATCHDOG_ENABLED_BIT 1
|
|
|
|
#define NMI_WATCHDOG_ENABLED (1 << NMI_WATCHDOG_ENABLED_BIT)
|
|
|
|
#define SOFT_WATCHDOG_ENABLED (1 << SOFT_WATCHDOG_ENABLED_BIT)
|
|
|
|
|
2017-07-13 05:35:43 +08:00
|
|
|
#if defined(CONFIG_HARDLOCKUP_DETECTOR)
|
|
|
|
extern void hardlockup_detector_disable(void);
|
2017-07-13 05:35:46 +08:00
|
|
|
extern unsigned int hardlockup_panic;
|
2017-07-13 05:35:43 +08:00
|
|
|
#else
|
|
|
|
static inline void hardlockup_detector_disable(void) {}
|
|
|
|
#endif
|
|
|
|
|
2017-09-13 03:37:14 +08:00
|
|
|
#if defined(CONFIG_HAVE_NMI_WATCHDOG) || defined(CONFIG_HARDLOCKUP_DETECTOR)
|
|
|
|
# define NMI_WATCHDOG_SYSCTL_PERM 0644
|
|
|
|
#else
|
|
|
|
# define NMI_WATCHDOG_SYSCTL_PERM 0444
|
|
|
|
#endif
|
|
|
|
|
2017-07-13 05:35:46 +08:00
|
|
|
#if defined(CONFIG_HARDLOCKUP_DETECTOR_PERF)
|
2017-07-13 05:35:43 +08:00
|
|
|
extern void arch_touch_nmi_watchdog(void);
|
2017-09-13 03:36:55 +08:00
|
|
|
extern void hardlockup_detector_perf_stop(void);
|
|
|
|
extern void hardlockup_detector_perf_restart(void);
|
2017-09-13 03:37:04 +08:00
|
|
|
extern void hardlockup_detector_perf_disable(void);
|
2017-09-13 03:37:20 +08:00
|
|
|
extern void hardlockup_detector_perf_enable(void);
|
2017-09-13 03:37:04 +08:00
|
|
|
extern void hardlockup_detector_perf_cleanup(void);
|
2017-09-13 03:37:18 +08:00
|
|
|
extern int hardlockup_detector_perf_init(void);
|
2017-07-13 05:35:43 +08:00
|
|
|
#else
|
2017-09-13 03:36:55 +08:00
|
|
|
static inline void hardlockup_detector_perf_stop(void) { }
|
|
|
|
static inline void hardlockup_detector_perf_restart(void) { }
|
2017-09-13 03:37:04 +08:00
|
|
|
static inline void hardlockup_detector_perf_disable(void) { }
|
2017-09-13 03:37:20 +08:00
|
|
|
static inline void hardlockup_detector_perf_enable(void) { }
|
2017-09-13 03:37:04 +08:00
|
|
|
static inline void hardlockup_detector_perf_cleanup(void) { }
|
2017-09-13 03:37:18 +08:00
|
|
|
# if !defined(CONFIG_HAVE_NMI_WATCHDOG)
|
|
|
|
static inline int hardlockup_detector_perf_init(void) { return -ENODEV; }
|
2017-07-13 05:35:43 +08:00
|
|
|
static inline void arch_touch_nmi_watchdog(void) {}
|
2017-09-13 03:37:18 +08:00
|
|
|
# else
|
|
|
|
static inline int hardlockup_detector_perf_init(void) { return 0; }
|
|
|
|
# endif
|
2017-07-13 05:35:46 +08:00
|
|
|
#endif
|
2017-07-13 05:35:43 +08:00
|
|
|
|
2017-10-02 18:34:50 +08:00
|
|
|
void watchdog_nmi_stop(void);
|
|
|
|
void watchdog_nmi_start(void);
|
2017-10-03 22:39:02 +08:00
|
|
|
int watchdog_nmi_probe(void);
|
2017-09-13 03:37:16 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/**
|
|
|
|
* touch_nmi_watchdog - restart NMI watchdog timeout.
|
2017-09-13 03:37:13 +08:00
|
|
|
*
|
2005-04-17 06:20:36 +08:00
|
|
|
* If the architecture supports the NMI watchdog, touch_nmi_watchdog()
|
|
|
|
* may be used to reset the timeout - for code which intentionally
|
|
|
|
* disables interrupts for a long time. This call is stateless.
|
|
|
|
*/
|
2007-02-13 20:26:24 +08:00
|
|
|
static inline void touch_nmi_watchdog(void)
|
|
|
|
{
|
2017-07-13 05:35:43 +08:00
|
|
|
arch_touch_nmi_watchdog();
|
2007-02-13 20:26:24 +08:00
|
|
|
touch_softlockup_watchdog();
|
|
|
|
}
|
2014-10-14 06:55:35 +08:00
|
|
|
|
2009-08-03 15:31:54 +08:00
|
|
|
/*
|
|
|
|
* Create trigger_all_cpu_backtrace() out of the arch-provided
|
|
|
|
* base function. Return whether such support was available,
|
|
|
|
* to allow calling code to fall back to some other mechanism:
|
|
|
|
*/
|
nmi_backtrace: add more trigger_*_cpu_backtrace() methods
Patch series "improvements to the nmi_backtrace code" v9.
This patch series modifies the trigger_xxx_backtrace() NMI-based remote
backtracing code to make it more flexible, and makes a few small
improvements along the way.
The motivation comes from the task isolation code, where there are
scenarios where we want to be able to diagnose a case where some cpu is
about to interrupt a task-isolated cpu. It can be helpful to see both
where the interrupting cpu is, and also an approximation of where the
cpu that is being interrupted is. The nmi_backtrace framework allows us
to discover the stack of the interrupted cpu.
I've tested that the change works as desired on tile, and build-tested
x86, arm, mips, and sparc64. For x86 I confirmed that the generic
cpuidle stuff as well as the architecture-specific routines are in the
new cpuidle section. For arm, mips, and sparc I just build-tested it
and made sure the generic cpuidle routines were in the new cpuidle
section, but I didn't attempt to figure out which the platform-specific
idle routines might be. That might be more usefully done by someone
with platform experience in follow-up patches.
This patch (of 4):
Currently you can only request a backtrace of either all cpus, or all
cpus but yourself. It can also be helpful to request a remote backtrace
of a single cpu, and since we want that, the logical extension is to
support a cpumask as the underlying primitive.
This change modifies the existing lib/nmi_backtrace.c code to take a
cpumask as its basic primitive, and modifies the linux/nmi.h code to use
the new "cpumask" method instead.
The existing clients of nmi_backtrace (arm and x86) are converted to
using the new cpumask approach in this change.
The other users of the backtracing API (sparc64 and mips) are converted
to use the cpumask approach rather than the all/allbutself approach.
The mips code ignored the "include_self" boolean but with this change it
will now also dump a local backtrace if requested.
Link: http://lkml.kernel.org/r/1472487169-14923-2-git-send-email-cmetcalf@mellanox.com
Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
Tested-by: Daniel Thompson <daniel.thompson@linaro.org> [arm]
Reviewed-by: Aaron Tomlin <atomlin@redhat.com>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-10-08 08:02:45 +08:00
|
|
|
#ifdef arch_trigger_cpumask_backtrace
|
2009-08-03 15:31:54 +08:00
|
|
|
static inline bool trigger_all_cpu_backtrace(void)
|
|
|
|
{
|
nmi_backtrace: add more trigger_*_cpu_backtrace() methods
Patch series "improvements to the nmi_backtrace code" v9.
This patch series modifies the trigger_xxx_backtrace() NMI-based remote
backtracing code to make it more flexible, and makes a few small
improvements along the way.
The motivation comes from the task isolation code, where there are
scenarios where we want to be able to diagnose a case where some cpu is
about to interrupt a task-isolated cpu. It can be helpful to see both
where the interrupting cpu is, and also an approximation of where the
cpu that is being interrupted is. The nmi_backtrace framework allows us
to discover the stack of the interrupted cpu.
I've tested that the change works as desired on tile, and build-tested
x86, arm, mips, and sparc64. For x86 I confirmed that the generic
cpuidle stuff as well as the architecture-specific routines are in the
new cpuidle section. For arm, mips, and sparc I just build-tested it
and made sure the generic cpuidle routines were in the new cpuidle
section, but I didn't attempt to figure out which the platform-specific
idle routines might be. That might be more usefully done by someone
with platform experience in follow-up patches.
This patch (of 4):
Currently you can only request a backtrace of either all cpus, or all
cpus but yourself. It can also be helpful to request a remote backtrace
of a single cpu, and since we want that, the logical extension is to
support a cpumask as the underlying primitive.
This change modifies the existing lib/nmi_backtrace.c code to take a
cpumask as its basic primitive, and modifies the linux/nmi.h code to use
the new "cpumask" method instead.
The existing clients of nmi_backtrace (arm and x86) are converted to
using the new cpumask approach in this change.
The other users of the backtracing API (sparc64 and mips) are converted
to use the cpumask approach rather than the all/allbutself approach.
The mips code ignored the "include_self" boolean but with this change it
will now also dump a local backtrace if requested.
Link: http://lkml.kernel.org/r/1472487169-14923-2-git-send-email-cmetcalf@mellanox.com
Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
Tested-by: Daniel Thompson <daniel.thompson@linaro.org> [arm]
Reviewed-by: Aaron Tomlin <atomlin@redhat.com>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-10-08 08:02:45 +08:00
|
|
|
arch_trigger_cpumask_backtrace(cpu_online_mask, false);
|
2009-08-03 15:31:54 +08:00
|
|
|
return true;
|
|
|
|
}
|
nmi_backtrace: add more trigger_*_cpu_backtrace() methods
Patch series "improvements to the nmi_backtrace code" v9.
This patch series modifies the trigger_xxx_backtrace() NMI-based remote
backtracing code to make it more flexible, and makes a few small
improvements along the way.
The motivation comes from the task isolation code, where there are
scenarios where we want to be able to diagnose a case where some cpu is
about to interrupt a task-isolated cpu. It can be helpful to see both
where the interrupting cpu is, and also an approximation of where the
cpu that is being interrupted is. The nmi_backtrace framework allows us
to discover the stack of the interrupted cpu.
I've tested that the change works as desired on tile, and build-tested
x86, arm, mips, and sparc64. For x86 I confirmed that the generic
cpuidle stuff as well as the architecture-specific routines are in the
new cpuidle section. For arm, mips, and sparc I just build-tested it
and made sure the generic cpuidle routines were in the new cpuidle
section, but I didn't attempt to figure out which the platform-specific
idle routines might be. That might be more usefully done by someone
with platform experience in follow-up patches.
This patch (of 4):
Currently you can only request a backtrace of either all cpus, or all
cpus but yourself. It can also be helpful to request a remote backtrace
of a single cpu, and since we want that, the logical extension is to
support a cpumask as the underlying primitive.
This change modifies the existing lib/nmi_backtrace.c code to take a
cpumask as its basic primitive, and modifies the linux/nmi.h code to use
the new "cpumask" method instead.
The existing clients of nmi_backtrace (arm and x86) are converted to
using the new cpumask approach in this change.
The other users of the backtracing API (sparc64 and mips) are converted
to use the cpumask approach rather than the all/allbutself approach.
The mips code ignored the "include_self" boolean but with this change it
will now also dump a local backtrace if requested.
Link: http://lkml.kernel.org/r/1472487169-14923-2-git-send-email-cmetcalf@mellanox.com
Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
Tested-by: Daniel Thompson <daniel.thompson@linaro.org> [arm]
Reviewed-by: Aaron Tomlin <atomlin@redhat.com>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-10-08 08:02:45 +08:00
|
|
|
|
2014-06-24 04:22:05 +08:00
|
|
|
static inline bool trigger_allbutself_cpu_backtrace(void)
|
|
|
|
{
|
nmi_backtrace: add more trigger_*_cpu_backtrace() methods
Patch series "improvements to the nmi_backtrace code" v9.
This patch series modifies the trigger_xxx_backtrace() NMI-based remote
backtracing code to make it more flexible, and makes a few small
improvements along the way.
The motivation comes from the task isolation code, where there are
scenarios where we want to be able to diagnose a case where some cpu is
about to interrupt a task-isolated cpu. It can be helpful to see both
where the interrupting cpu is, and also an approximation of where the
cpu that is being interrupted is. The nmi_backtrace framework allows us
to discover the stack of the interrupted cpu.
I've tested that the change works as desired on tile, and build-tested
x86, arm, mips, and sparc64. For x86 I confirmed that the generic
cpuidle stuff as well as the architecture-specific routines are in the
new cpuidle section. For arm, mips, and sparc I just build-tested it
and made sure the generic cpuidle routines were in the new cpuidle
section, but I didn't attempt to figure out which the platform-specific
idle routines might be. That might be more usefully done by someone
with platform experience in follow-up patches.
This patch (of 4):
Currently you can only request a backtrace of either all cpus, or all
cpus but yourself. It can also be helpful to request a remote backtrace
of a single cpu, and since we want that, the logical extension is to
support a cpumask as the underlying primitive.
This change modifies the existing lib/nmi_backtrace.c code to take a
cpumask as its basic primitive, and modifies the linux/nmi.h code to use
the new "cpumask" method instead.
The existing clients of nmi_backtrace (arm and x86) are converted to
using the new cpumask approach in this change.
The other users of the backtracing API (sparc64 and mips) are converted
to use the cpumask approach rather than the all/allbutself approach.
The mips code ignored the "include_self" boolean but with this change it
will now also dump a local backtrace if requested.
Link: http://lkml.kernel.org/r/1472487169-14923-2-git-send-email-cmetcalf@mellanox.com
Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
Tested-by: Daniel Thompson <daniel.thompson@linaro.org> [arm]
Reviewed-by: Aaron Tomlin <atomlin@redhat.com>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-10-08 08:02:45 +08:00
|
|
|
arch_trigger_cpumask_backtrace(cpu_online_mask, true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool trigger_cpumask_backtrace(struct cpumask *mask)
|
|
|
|
{
|
|
|
|
arch_trigger_cpumask_backtrace(mask, false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool trigger_single_cpu_backtrace(int cpu)
|
|
|
|
{
|
|
|
|
arch_trigger_cpumask_backtrace(cpumask_of(cpu), false);
|
2014-06-24 04:22:05 +08:00
|
|
|
return true;
|
|
|
|
}
|
2014-09-04 06:57:13 +08:00
|
|
|
|
|
|
|
/* generic implementation */
|
nmi_backtrace: add more trigger_*_cpu_backtrace() methods
Patch series "improvements to the nmi_backtrace code" v9.
This patch series modifies the trigger_xxx_backtrace() NMI-based remote
backtracing code to make it more flexible, and makes a few small
improvements along the way.
The motivation comes from the task isolation code, where there are
scenarios where we want to be able to diagnose a case where some cpu is
about to interrupt a task-isolated cpu. It can be helpful to see both
where the interrupting cpu is, and also an approximation of where the
cpu that is being interrupted is. The nmi_backtrace framework allows us
to discover the stack of the interrupted cpu.
I've tested that the change works as desired on tile, and build-tested
x86, arm, mips, and sparc64. For x86 I confirmed that the generic
cpuidle stuff as well as the architecture-specific routines are in the
new cpuidle section. For arm, mips, and sparc I just build-tested it
and made sure the generic cpuidle routines were in the new cpuidle
section, but I didn't attempt to figure out which the platform-specific
idle routines might be. That might be more usefully done by someone
with platform experience in follow-up patches.
This patch (of 4):
Currently you can only request a backtrace of either all cpus, or all
cpus but yourself. It can also be helpful to request a remote backtrace
of a single cpu, and since we want that, the logical extension is to
support a cpumask as the underlying primitive.
This change modifies the existing lib/nmi_backtrace.c code to take a
cpumask as its basic primitive, and modifies the linux/nmi.h code to use
the new "cpumask" method instead.
The existing clients of nmi_backtrace (arm and x86) are converted to
using the new cpumask approach in this change.
The other users of the backtracing API (sparc64 and mips) are converted
to use the cpumask approach rather than the all/allbutself approach.
The mips code ignored the "include_self" boolean but with this change it
will now also dump a local backtrace if requested.
Link: http://lkml.kernel.org/r/1472487169-14923-2-git-send-email-cmetcalf@mellanox.com
Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
Tested-by: Daniel Thompson <daniel.thompson@linaro.org> [arm]
Reviewed-by: Aaron Tomlin <atomlin@redhat.com>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-10-08 08:02:45 +08:00
|
|
|
void nmi_trigger_cpumask_backtrace(const cpumask_t *mask,
|
|
|
|
bool exclude_self,
|
2014-09-04 06:57:13 +08:00
|
|
|
void (*raise)(cpumask_t *mask));
|
|
|
|
bool nmi_cpu_backtrace(struct pt_regs *regs);
|
|
|
|
|
2009-08-03 15:31:54 +08:00
|
|
|
#else
|
|
|
|
static inline bool trigger_all_cpu_backtrace(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2014-06-24 04:22:05 +08:00
|
|
|
static inline bool trigger_allbutself_cpu_backtrace(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
nmi_backtrace: add more trigger_*_cpu_backtrace() methods
Patch series "improvements to the nmi_backtrace code" v9.
This patch series modifies the trigger_xxx_backtrace() NMI-based remote
backtracing code to make it more flexible, and makes a few small
improvements along the way.
The motivation comes from the task isolation code, where there are
scenarios where we want to be able to diagnose a case where some cpu is
about to interrupt a task-isolated cpu. It can be helpful to see both
where the interrupting cpu is, and also an approximation of where the
cpu that is being interrupted is. The nmi_backtrace framework allows us
to discover the stack of the interrupted cpu.
I've tested that the change works as desired on tile, and build-tested
x86, arm, mips, and sparc64. For x86 I confirmed that the generic
cpuidle stuff as well as the architecture-specific routines are in the
new cpuidle section. For arm, mips, and sparc I just build-tested it
and made sure the generic cpuidle routines were in the new cpuidle
section, but I didn't attempt to figure out which the platform-specific
idle routines might be. That might be more usefully done by someone
with platform experience in follow-up patches.
This patch (of 4):
Currently you can only request a backtrace of either all cpus, or all
cpus but yourself. It can also be helpful to request a remote backtrace
of a single cpu, and since we want that, the logical extension is to
support a cpumask as the underlying primitive.
This change modifies the existing lib/nmi_backtrace.c code to take a
cpumask as its basic primitive, and modifies the linux/nmi.h code to use
the new "cpumask" method instead.
The existing clients of nmi_backtrace (arm and x86) are converted to
using the new cpumask approach in this change.
The other users of the backtracing API (sparc64 and mips) are converted
to use the cpumask approach rather than the all/allbutself approach.
The mips code ignored the "include_self" boolean but with this change it
will now also dump a local backtrace if requested.
Link: http://lkml.kernel.org/r/1472487169-14923-2-git-send-email-cmetcalf@mellanox.com
Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
Tested-by: Daniel Thompson <daniel.thompson@linaro.org> [arm]
Reviewed-by: Aaron Tomlin <atomlin@redhat.com>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-10-08 08:02:45 +08:00
|
|
|
static inline bool trigger_cpumask_backtrace(struct cpumask *mask)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
static inline bool trigger_single_cpu_backtrace(int cpu)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2006-12-07 09:14:01 +08:00
|
|
|
#endif
|
|
|
|
|
2017-07-13 05:35:46 +08:00
|
|
|
#ifdef CONFIG_HARDLOCKUP_DETECTOR_PERF
|
2011-05-23 13:10:23 +08:00
|
|
|
u64 hw_nmi_get_sample_period(int watchdog_thresh);
|
2017-07-13 05:35:46 +08:00
|
|
|
#endif
|
|
|
|
|
2017-08-15 15:50:13 +08:00
|
|
|
#if defined(CONFIG_HARDLOCKUP_CHECK_TIMESTAMP) && \
|
|
|
|
defined(CONFIG_HARDLOCKUP_DETECTOR)
|
|
|
|
void watchdog_update_hrtimer_threshold(u64 period);
|
|
|
|
#else
|
|
|
|
static inline void watchdog_update_hrtimer_threshold(u64 period) { }
|
|
|
|
#endif
|
|
|
|
|
2010-02-13 06:19:19 +08:00
|
|
|
struct ctl_table;
|
2015-04-15 06:44:08 +08:00
|
|
|
extern int proc_watchdog(struct ctl_table *, int ,
|
|
|
|
void __user *, size_t *, loff_t *);
|
|
|
|
extern int proc_nmi_watchdog(struct ctl_table *, int ,
|
|
|
|
void __user *, size_t *, loff_t *);
|
|
|
|
extern int proc_soft_watchdog(struct ctl_table *, int ,
|
|
|
|
void __user *, size_t *, loff_t *);
|
|
|
|
extern int proc_watchdog_thresh(struct ctl_table *, int ,
|
|
|
|
void __user *, size_t *, loff_t *);
|
2015-06-25 07:55:45 +08:00
|
|
|
extern int proc_watchdog_cpumask(struct ctl_table *, int,
|
|
|
|
void __user *, size_t *, loff_t *);
|
2010-02-06 10:47:05 +08:00
|
|
|
|
2014-07-22 17:20:12 +08:00
|
|
|
#ifdef CONFIG_HAVE_ACPI_APEI_NMI
|
|
|
|
#include <asm/nmi.h>
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|