aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/nmi.h
diff options
context:
space:
mode:
authorAndrew Cooper <andrew.cooper3@citrix.com>2012-03-08 09:23:27 +0000
committerAndrew Cooper <andrew.cooper3@citrix.com>2012-03-08 09:23:27 +0000
commitd4faf5a948c03ffe61b4bfd1ebcdc93343727ca4 (patch)
treefa8363186763e4dd9707edf3bdb9171bf3bd23d9 /xen/include/asm-x86/nmi.h
parent338db98dd8d2cf1a639951597880d7a2e7f3b3d6 (diff)
downloadxen-d4faf5a948c03ffe61b4bfd1ebcdc93343727ca4.tar.gz
xen-d4faf5a948c03ffe61b4bfd1ebcdc93343727ca4.tar.bz2
xen-d4faf5a948c03ffe61b4bfd1ebcdc93343727ca4.zip
NMI: Command line parameter for watchdog timeout
Introduce a command parameter to set the watchtog timeout. Manually specifying "watchdog_timeout=<seconds>" on the command line will also turn the watchdog on. For consistency, move opt_watchdog into nmi.c along with opt_watchdog_timeout. Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> Committed-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/include/asm-x86/nmi.h')
-rw-r--r--xen/include/asm-x86/nmi.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/xen/include/asm-x86/nmi.h b/xen/include/asm-x86/nmi.h
index af1ff2e008..98b5e04341 100644
--- a/xen/include/asm-x86/nmi.h
+++ b/xen/include/asm-x86/nmi.h
@@ -5,6 +5,9 @@
#include <public/nmi.h>
struct cpu_user_regs;
+
+/* Watchdog boolean from the command line */
+extern bool_t opt_watchdog;
typedef int (*nmi_callback_t)(struct cpu_user_regs *regs, int cpu);