Hi Yinghai,

On 09/03/2013 02:41 AM, Yinghai Lu wrote:
......

Nak, you can not move that.

min_pfn_mapped should not be updated before init_range_memory_mapping
is returned. as it need to refer old min_pfn_mapped.
and init_range_memory_mapping still init mapping from low to high locally.
min_pfn_mapped can not be updated too early.

The current code is like this:

init_mem_mapping()
{
        while (from high to low) {
                init_range_memory_mapping()
                {
                        /* Here is from low to high */
                        for (from low to high) {
                                init_memory_mapping()
                                {
                                        for () {
                                                /* Need to refer min_pfn_mapped 
here */
                                                kernel_physical_mapping_init();
                                        }
                                        /* So if updating min_pfn_mapped here, 
it is too low */
                                        add_pfn_range_mapped();
                                }
                        }
                }               
        }
}

How about change the "for (from low to high)" in init_range_memory_mapping() to
"for_rev(from high to low)" ?
Then we can update min_pfn_mapped in add_pfn_range_mapped().

And also, the outer loop is from high to low, we can change the inner loop to be from high
to low too.

I think updating min_pfn_mapped in init_mem_mapping() is less readable. And min_pfn_mapped
and max_pfn_mapped should be updated together.

Thanks.

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

Reply via email to