Re: [patch] mm: sparsemem memory_present() memory corruption fix

From: Yinghai Lu
Date: Tue Apr 15 2008 - 20:57:19 EST


On Tue, Apr 15, 2008 at 5:44 PM, Ingo Molnar <mingo@xxxxxxx> wrote:
>
> * Yinghai Lu <yhlu.kernel@xxxxxxxxx> wrote:
>
> > > + unsigned long max_arch_pfn = 1ULL << (MAX_PHYSMEM_BITS-PAGE_SHIFT);
> > >
> > > and also check my analysis whether it is correct and whether it
> > > matches the reported bug patterns. But otherwise the fix looks like
> > > a safe fix for v2.6.25-final to me - it only filters out values
> > > from sparsemem input that are nonsensical in the sparsemem
> > > framework anyway.
> >
>
> > can you check why find_max_pfn() e820_32.c need to call
> > memory_present? wonder if it can be removed.
>
> this is the only call to memory_present() we do in 32-bit arch setup, so
> it's required.
>
> (the function find_max_pfn() is woefully misnamed, but that's a cleanup
> - i just fixed this in x86.git.)

64 bit is calling that via paging_init
==>sparse_memory_present_with_active_regions(MAX_NUMNODES).

and
void __init sparse_memory_present_with_active_regions(int nid)
{
int i;

for_each_active_range_index_in_nid(i, nid)
memory_present(early_node_map[i].nid,
early_node_map[i].start_pfn,
early_node_map[i].end_pfn);
}

that is some late than 32 bit.

YH
--
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/