diff options
| author | Huang Ying <ying.huang@intel.com> | 2017-07-06 18:37:31 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-07-06 19:24:31 -0400 |
| commit | 747552b1e71b400fa32a221e072be2c0b7661f14 (patch) | |
| tree | 5f2e457a2b500159af4f7d98e62501ecd299c547 | |
| parent | b8f593cd0896b8b14c2b494a9776531b5cd54d98 (diff) | |
mm, THP, swap: enable THP swap optimization only if has compound map
If there is no compound map for a THP (Transparent Huge Page), it is
possible that the map count of some sub-pages of the THP is 0. So it is
better to split the THP before swapping out. In this way, the sub-pages
not mapped will be freed, and we can avoid the unnecessary swap out
operations for these sub-pages.
Link: http://lkml.kernel.org/r/20170515112522.32457-6-ying.huang@intel.com
Signed-off-by: "Huang, Ying" <ying.huang@intel.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Andrea Arcangeli <aarcange@redhat.com>
Cc: Ebru Akagunduz <ebru.akagunduz@gmail.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: Minchan Kim <minchan@kernel.org>
Cc: Rik van Riel <riel@redhat.com>
Cc: Shaohua Li <shli@kernel.org>
Cc: Tejun Heo <tj@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | mm/vmscan.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/mm/vmscan.c b/mm/vmscan.c index abaf0215a352..aebb157258f2 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c | |||
| @@ -1125,10 +1125,19 @@ static unsigned long shrink_page_list(struct list_head *page_list, | |||
| 1125 | !PageSwapCache(page)) { | 1125 | !PageSwapCache(page)) { |
| 1126 | if (!(sc->gfp_mask & __GFP_IO)) | 1126 | if (!(sc->gfp_mask & __GFP_IO)) |
| 1127 | goto keep_locked; | 1127 | goto keep_locked; |
| 1128 | /* cannot split THP, skip it */ | 1128 | if (PageTransHuge(page)) { |
| 1129 | if (PageTransHuge(page) && | 1129 | /* cannot split THP, skip it */ |
| 1130 | !can_split_huge_page(page, NULL)) | 1130 | if (!can_split_huge_page(page, NULL)) |
| 1131 | goto activate_locked; | 1131 | goto activate_locked; |
| 1132 | /* | ||
| 1133 | * Split pages without a PMD map right | ||
| 1134 | * away. Chances are some or all of the | ||
| 1135 | * tail pages can be freed without IO. | ||
| 1136 | */ | ||
| 1137 | if (!compound_mapcount(page) && | ||
| 1138 | split_huge_page_to_list(page, page_list)) | ||
| 1139 | goto activate_locked; | ||
| 1140 | } | ||
| 1132 | if (!add_to_swap(page)) { | 1141 | if (!add_to_swap(page)) { |
| 1133 | if (!PageTransHuge(page)) | 1142 | if (!PageTransHuge(page)) |
| 1134 | goto activate_locked; | 1143 | goto activate_locked; |
