On Fri, 30 Jul 2010, Minchan Kim wrote: > The thing is valid section also have a invalid memmap. Oww... . A valid section points to a valid memmap memory block (the page structs) but the underlying memory pages may not present. So you can check the (useless) page structs for the page state of the not present pages in the memory map. If the granularity of the sparsemem mapping is not sufficient for your purpose then you can change the sparsemem config (configuration is in arch/<arch>/include/asm/sparsemem.h but does not exist for arm). > It means section 0 is an incompletely filled section. > Nontheless, current pfn_valid of sparsemem checks pfn loosely. > It checks only mem_section's validation but ARM can free mem_map on hole > to save memory space. So in above case, pfn on 0x25000000 can pass pfn_valid's > validation check. It's not what we want. IMHO ARM should not poke holes in the memmap sections. The guarantee of the full presence of the section is intentional to avoid having to do these checks that you are proposing. The page allocator typically expects to be able to check all page structs in one basic allocation unit. Also pfn_valid then does not have to touch the pag struct to perform its function as long as we guarantee the presence of the memmap section. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxxx For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>