Re: [LKML] Re: Infinite loop on boot in free_early_partial due tostart==end on tip/master

From: Ian Campbell
Date: Fri Mar 19 2010 - 17:37:35 EST


On Fri, 2010-03-19 at 21:17 +0000, Yinghai Lu wrote:
> > index ef6370b..89a3205 100644
> > --- a/arch/x86/kernel/setup_percpu.c
> > +++ b/arch/x86/kernel/setup_percpu.c
> > @@ -140,7 +140,8 @@ static void __init pcpu_fc_free(void *ptr, size_t
> > size)
> > #ifdef CONFIG_NO_BOOTMEM
> > u64 start = __pa(ptr);
> > u64 end = start + size;
> > - free_early_partial(start, end);
> > + if (start < end)
> > + free_early_partial(start, end);
>
> it seems we could remove this line

> Tejun, how this could happen? free zero range ?

I was seeing start==end although I never fully understood why. It
happened somewhere within pcpu_embed_first_chunk and/or
pcpu_build_alloc_info. My original posting (in
https://patchwork.kernel.org/patch/83756/) has some speculation.

Ian.

>
> YH
>
> > #else
> > free_bootmem(__pa(ptr), size);
> > #endif
> > diff --git a/kernel/early_res.c b/kernel/early_res.c
> > index 3cb2c66..f3a861b 100644
> > --- a/kernel/early_res.c
> > +++ b/kernel/early_res.c
> > @@ -333,6 +333,11 @@ void __init free_early_partial(u64 start, u64 end)
> > struct early_res *r;
> > int i;
> >
> > + if (WARN_ONCE(start >= end,
> > + "free_early_partial got wrong start/end
> > %#llx/%#llx\n",
> > + start, end))
> > + return;
> > +
> > try_next:
> > i = find_overlapped_early(start, end);
> > if (i >= max_early_res)
> >


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