lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 29 Oct 2008 09:05:32 -0700
From:	Randy Dunlap <randy.dunlap@...cle.com>
To:	Aristeu Rozanski <aris@...hat.com>
Cc:	"Maciej W. Rozycki" <macro@...ux-mips.org>,
	linux-kernel@...r.kernel.org, Ingo Molnar <mingo@...e.hu>
Subject: Re: [PATCH 1/2] NMI watchdog: add support to enable and disable
 IOAPIC NMI

On Mon, 27 Oct 2008 12:42:34 -0400 Aristeu Rozanski wrote:

> This patch adds support to enable/disable IOAPIC NMI watchdog in runtime via
> procfs.

Some info on how to use this, what to write(?) to what file(?) in procfs
would be Very Good to have.


> Signed-off-by: Aristeu Rozanski <aris@...hat.com>
> 
> ---
>  arch/x86/kernel/nmi.c |   25 +++++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
> 
> --- linus-2.6.orig/arch/x86/kernel/nmi.c	2008-10-27 11:31:56.000000000 -0400
> +++ linus-2.6/arch/x86/kernel/nmi.c	2008-10-27 11:43:49.000000000 -0400
> @@ -340,6 +340,8 @@ void stop_apic_nmi_watchdog(void *unused
>  		return;
>  	if (nmi_watchdog == NMI_LOCAL_APIC)
>  		lapic_watchdog_stop();
> +	else
> +		__acpi_nmi_disable(NULL);
>  	__get_cpu_var(wd_enabled) = 0;
>  	atomic_dec(&nmi_active);
>  }
> @@ -465,6 +467,24 @@ nmi_watchdog_tick(struct pt_regs *regs, 
>  
>  #ifdef CONFIG_SYSCTL
>  
> +static void enable_ioapic_nmi_watchdog_single(void *unused)
> +{
> +	__get_cpu_var(wd_enabled) = 1;
> +	atomic_inc(&nmi_active);
> +	__acpi_nmi_enable(NULL);
> +}
> +
> +static void enable_ioapic_nmi_watchdog(void)
> +{
> +	on_each_cpu(enable_ioapic_nmi_watchdog_single, NULL, 1);
> +	touch_nmi_watchdog();
> +}
> +
> +static void disable_ioapic_nmi_watchdog(void)
> +{
> +	on_each_cpu(stop_apic_nmi_watchdog, NULL, 1);
> +}
> +
>  static int __init setup_unknown_nmi_panic(char *str)
>  {
>  	unknown_nmi_panic = 1;
> @@ -507,6 +527,11 @@ int proc_nmi_enabled(struct ctl_table *t
>  			enable_lapic_nmi_watchdog();
>  		else
>  			disable_lapic_nmi_watchdog();
> +	} else if (nmi_watchdog == NMI_IO_APIC) {
> +		if (nmi_watchdog_enabled)
> +			enable_ioapic_nmi_watchdog();
> +		else
> +			disable_ioapic_nmi_watchdog();
>  	} else {
>  		printk(KERN_WARNING
>  			"NMI watchdog doesn't know what hardware to touch\n");
> 
> -- 

---
~Randy
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ