Re: [PATCH] mm/debug: PageAnon() is true for PageKsm() pages

From: lixinhai.lxh@xxxxxxxxx
Date: Fri Nov 15 2019 - 00:47:29 EST


On 2019-11-15Âat 10:32Âlixinhai.lxhÂwrote:
>On 2019-11-14Âat 21:59ÂMichal HockoÂwrote:
>>On Tue 12-11-19 16:06:51, Ralph Campbell wrote:
>>> PageAnon() and PageKsm() use the low two bits of the page->mapping pointer
>>> to indicate the page type. PageAnon() only checks the LSB while PageKsm()
>>> checks the least significant 2 bits are equal to 3. Therefore, PageAnon()
>>> is true for KSM pages.
>>> __dump_page() incorrectly will never print "ksm" because it checks
>>> PageAnon() first. Fix this by checking PageKsm() first.
>>
>>Thanks for spotting this
>>
>>Fixes: 1c6fb1d89e73 ("mm: print more information about mapping in __dump_page")
>>
>>> Signed-off-by: Ralph Campbell <rcampbell@xxxxxxxxxx>
>>
>>Acked-by: Michal Hocko <mhocko@xxxxxxxx>
>>
>The four values from those two lowest bits have different meaning, so PageKsm is
>trueÂdoes not mean we can consider PageAnon is also true or PageMovable is also
>true.
>Improve PageAnon() would be better, so users of those APIs do not need to
>remember this implict checking sequence at other places.
>
>- Xinhai

Looked the reference to PageAnon() again, there are many use of PageAnon() toÂ
cover cases for both Anon without KSM and Anon with KSM. Change PageAnon()Â
implementation require change those places, so keep this patch for current issue isÂ
enough.

- Xinhai