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

From: lixinhai.lxh@xxxxxxxxx
Date: Thu Nov 14 2019 - 21:32:21 EST


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