mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
mm/zsmalloc.c: fix the migrated zspage statistics.
commitac8f05da51
upstream. When zspage is migrated to the other zone, the zone page state should be updated as well, otherwise the NR_ZSPAGE for each zone shows wrong counts including proc/zoneinfo in practice. Link: http://lkml.kernel.org/r/1575434841-48009-1-git-send-email-chanho.min@lge.com Fixes:91537fee00
("mm: add NR_ZSMALLOC to vmstat") Signed-off-by: Chanho Min <chanho.min@lge.com> Signed-off-by: Jinsuk Choi <jjinsuk.choi@lge.com> Reviewed-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com> Acked-by: Minchan Kim <minchan@kernel.org> Cc: <stable@vger.kernel.org> [4.9+] Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
26e5eab93d
commit
1501713aee
@ -2088,6 +2088,11 @@ int zs_page_migrate(struct address_space *mapping, struct page *newpage,
|
||||
zs_pool_dec_isolated(pool);
|
||||
}
|
||||
|
||||
if (page_zone(newpage) != page_zone(page)) {
|
||||
dec_zone_page_state(page, NR_ZSPAGES);
|
||||
inc_zone_page_state(newpage, NR_ZSPAGES);
|
||||
}
|
||||
|
||||
reset_page(page);
|
||||
put_page(page);
|
||||
page = newpage;
|
||||
|
Loading…
Reference in New Issue
Block a user