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:	Fri, 3 May 2013 22:03:11 -0700
From:	Yinghai Lu <yinghai@...nel.org>
To:	Thomas Gleixner <tglx@...utronix.de>
Cc:	Dave Jones <davej@...hat.com>,
	Linux Kernel <linux-kernel@...r.kernel.org>
Subject: Re: clockevents_program_event WARN_ON preventing boot.

On Fri, May 3, 2013 at 11:32 AM, Thomas Gleixner <tglx@...utronix.de> wrote:
> Subject: tick: Use zalloc_cpumask_var for allocating offstack cpumasks
> From: Thomas Gleixner <tglx@...utronix.de>
> Date: Fri, 03 May 2013 20:22:36 +0200
>
> commit b352bc1cbc (tick: Convert broadcast cpu bitmaps to
> cpumask_var_t) broke CONFIG_CPUMASK_OFFSTACK in a very subtle way.
>
> Instead of allocating the cpumasks with zalloc_cpumask_var it uses
> alloc_cpumask_var, so we can get random data there, which of course
> confuses the logic completely and causes random failures.
>
> Reported-by: Dave Jones <davej@...hat.com>
> Reported-by: Yinghai Lu <yinghai@...nel.org>
> Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
> ---
>  kernel/time/tick-broadcast.c |   10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> Index: linux-2.6/kernel/time/tick-broadcast.c
> ===================================================================
> --- linux-2.6.orig/kernel/time/tick-broadcast.c
> +++ linux-2.6/kernel/time/tick-broadcast.c
> @@ -785,11 +785,11 @@ bool tick_broadcast_oneshot_available(vo
>
>  void __init tick_broadcast_init(void)
>  {
> -       alloc_cpumask_var(&tick_broadcast_mask, GFP_NOWAIT);
> -       alloc_cpumask_var(&tmpmask, GFP_NOWAIT);
> +       zalloc_cpumask_var(&tick_broadcast_mask, GFP_NOWAIT);
> +       zalloc_cpumask_var(&tmpmask, GFP_NOWAIT);
>  #ifdef CONFIG_TICK_ONESHOT
> -       alloc_cpumask_var(&tick_broadcast_oneshot_mask, GFP_NOWAIT);
> -       alloc_cpumask_var(&tick_broadcast_pending_mask, GFP_NOWAIT);
> -       alloc_cpumask_var(&tick_broadcast_force_mask, GFP_NOWAIT);
> +       zalloc_cpumask_var(&tick_broadcast_oneshot_mask, GFP_NOWAIT);
> +       zalloc_cpumask_var(&tick_broadcast_pending_mask, GFP_NOWAIT);
> +       zalloc_cpumask_var(&tick_broadcast_force_mask, GFP_NOWAIT);
>  #endif
>  }

Yes, it works on Nehalem-EX 8 socket system now.

Tested-by: Yinghai Lu <yinghai@...nel.org>
--
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