aboutsummaryrefslogtreecommitdiffstats
path: root/mm/swapfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/swapfile.c')
-rw-r--r--mm/swapfile.c15
1 files changed, 11 insertions, 4 deletions
diff --git a/mm/swapfile.c b/mm/swapfile.c
index 214e90b94946..bfd4ee59cb88 100644
--- a/mm/swapfile.c
+++ b/mm/swapfile.c
@@ -326,17 +326,24 @@ static inline int page_swapcount(struct page *page)
326} 326}
327 327
328/* 328/*
329 * We can use this swap cache entry directly 329 * We can write to an anon page without COW if there are no other references
330 * if there are no other references to it. 330 * to it. And as a side-effect, free up its swap: because the old content
331 * on disk will never be read, and seeking back there to write new content
332 * later would only waste time away from clustering.
331 */ 333 */
332int can_share_swap_page(struct page *page) 334int reuse_swap_page(struct page *page)
333{ 335{
334 int count; 336 int count;
335 337
336 VM_BUG_ON(!PageLocked(page)); 338 VM_BUG_ON(!PageLocked(page));
337 count = page_mapcount(page); 339 count = page_mapcount(page);
338 if (count <= 1 && PageSwapCache(page)) 340 if (count <= 1 && PageSwapCache(page)) {
339 count += page_swapcount(page); 341 count += page_swapcount(page);
342 if (count == 1 && !PageWriteback(page)) {
343 delete_from_swap_cache(page);
344 SetPageDirty(page);
345 }
346 }
340 return count == 1; 347 return count == 1;
341} 348}
342 349