Re: [PATCH] mm: page_ext: allocate page extension though first PFN is invalid

From: Jaewon Kim
Date: Wed Nov 08 2017 - 08:33:57 EST


2017-11-08 16:52 GMT+09:00 Joonsoo Kim <iamjoonsoo.kim@xxxxxxx>:
> On Tue, Nov 07, 2017 at 06:44:47PM +0900, Jaewon Kim wrote:
>> online_page_ext and page_ext_init allocate page_ext for each section, but
>> they do not allocate if the first PFN is !pfn_present(pfn) or
>> !pfn_valid(pfn).
>>
>> Though the first page is not valid, page_ext could be useful for other
>> pages in the section. But checking all PFNs in a section may be time
>> consuming job. Let's check each (section count / 16) PFN, then prepare
>> page_ext if any PFN is present or valid.
>
> I guess that this kind of section is not so many. And, this is for
> debugging so completeness would be important. It's better to check
> all pfn in the section.
Thank you for your comment.

AFAIK physical memory address depends on HW SoC.
Sometimes a SoC remains few GB address region hole between few GB DRAM
and other few GB DRAM
such as 2GB under 4GB address and 2GB beyond 4GB address and holes between them.
If SoC designs so big hole between actual mapping, I thought too much
time will be spent on just checking all the PFNs.

Anyway if we decide to check all PFNs, I can change patch to t_pfn++ like below.
Please give me comment again.


while (t_pfn < ALIGN(pfn + 1, PAGES_PER_SECTION)) {
if (pfn_valid(t_pfn)) {
valid = true;
break;
}
- t_pfn = ALIGN(pfn + 1, PAGES_PER_SECTION >> 4);
+ t_pfn++;


Thank you
Jaewon Kim

>
> Thanks.
>