[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20120511150533.GH3751@sgi.com>
Date: Fri, 11 May 2012 10:05:33 -0500
From: Robin Holt <holt@....com>
To: Peter Zijlstra <a.p.zijlstra@...llo.nl>
Cc: Robin Holt <holt@....com>, Ingo Molnar <mingo@...nel.org>,
linux-kernel@...r.kernel.org
Subject: Re: Commit cb83b62 fails to boot with a divide by zero error.
On Fri, May 11, 2012 at 04:33:10PM +0200, Peter Zijlstra wrote:
> On Fri, 2012-05-11 at 08:39 -0500, Robin Holt wrote:
>
> > We found that reverting the commit:
> > cb83b62 (x86/sched/core) sched/numa: Rewrite the CONFIG_NUMA sched domain support
> >
> > also got things working.
>
> there's a particularly stupid bug in that code
Even with that applied, I still get the divide by zero.
Robin
>
>
>
> ---
> Subject: sched, numa: Fix the new NUMA topology bits
> From: Peter Zijlstra <a.p.zijlstra@...llo.nl>
> Date: Fri May 11 00:56:20 CEST 2012
>
> There's no need to convert a node number to a node number by
> pretending its a cpu number..
>
> Reported-by: Yinghai Lu <yinghai@...nel.org>
> Reported-and-Tested-by: Greg Pearson <greg.pearson@...com>
> Signed-off-by: Peter Zijlstra <a.p.zijlstra@...llo.nl>
> ---
> kernel/sched/core.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> --- a/kernel/sched/core.c
> +++ b/kernel/sched/core.c
> @@ -6378,8 +6378,7 @@ static void sched_init_numa(void)
> sched_domains_numa_masks[i][j] = mask;
>
> for (k = 0; k < nr_node_ids; k++) {
> - if (node_distance(cpu_to_node(j), k) >
> - sched_domains_numa_distance[i])
> + if (node_distance(j, k) > sched_domains_numa_distance[i])
> continue;
>
> cpumask_or(mask, mask, cpumask_of_node(k));
--
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