]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
migrate: don't account swapcache as shmem
authorAndrea Arcangeli <aarcange@redhat.com>
Thu, 16 Jun 2011 19:56:19 +0000 (12:56 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 13 Jul 2011 03:31:23 +0000 (05:31 +0200)
commitc3ce2d3992b7028a545b5dd9d25f892ef066a62f
tree023b81db7499c8c4ec93a772b3d6115569c7da96
parent0aa6e32c7cb5e80a0e381df2c6beb3e4f971d5f2
migrate: don't account swapcache as shmem

commit 99a15e21d96f6857dafab1e5167e5e8183215c9c upstream.

swapcache will reach the below code path in migrate_page_move_mapping,
and swapcache is accounted as NR_FILE_PAGES but it's not accounted as
NR_SHMEM.

Hugh pointed out we must use PageSwapCache instead of comparing
mapping to &swapper_space, to avoid build failure with CONFIG_SWAP=n.

Signed-off-by: Andrea Arcangeli <aarcange@redhat.com>
Acked-by: Hugh Dickins <hughd@google.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
mm/migrate.c