blob: abf445bd77211f659996076e0f56943219f3420c [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/mm/swap.c
4 *
5 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
6 */
7
8/*
Simon Arlott183ff222007-10-20 01:27:18 +02009 * This file contains the default values for the operation of the
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Linux VM subsystem. Fine-tuning documentation can be found in
Mauro Carvalho Chehab57043242019-04-22 16:48:00 -030011 * Documentation/admin-guide/sysctl/vm.rst.
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Started 18.12.91
13 * Swap aging added 23.2.95, Stephen Tweedie.
14 * Buffermem limits added 12.3.98, Rik van Riel.
15 */
16
17#include <linux/mm.h>
18#include <linux/sched.h>
19#include <linux/kernel_stat.h>
20#include <linux/swap.h>
21#include <linux/mman.h>
22#include <linux/pagemap.h>
23#include <linux/pagevec.h>
24#include <linux/init.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040025#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/mm_inline.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/percpu_counter.h>
Dan Williams3565fce2016-01-15 16:56:55 -080028#include <linux/memremap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/percpu.h>
30#include <linux/cpu.h>
31#include <linux/notifier.h>
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070032#include <linux/backing-dev.h>
Balbir Singh66e17072008-02-07 00:13:56 -080033#include <linux/memcontrol.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/gfp.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070035#include <linux/uio.h>
Naoya Horiguchi822fc612015-04-15 16:14:35 -070036#include <linux/hugetlb.h>
Vladimir Davydov33c3fc72015-09-09 15:35:45 -070037#include <linux/page_idle.h>
Ingo Molnarb01b2142020-05-27 22:11:15 +020038#include <linux/local_lock.h>
Minchan Kima0a0b3f2021-03-19 12:49:41 -070039#include <linux/buffer_head.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Lee Schermerhorn64d65192008-10-18 20:26:52 -070041#include "internal.h"
42
Mel Gormanc6286c92013-07-03 15:02:26 -070043#define CREATE_TRACE_POINTS
44#include <trace/events/pagemap.h>
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/* How many pages do we try to swap or page in/out together? */
47int page_cluster;
48
Ingo Molnarb01b2142020-05-27 22:11:15 +020049/* Protecting only lru_rotate.pvec which requires disabling interrupts */
50struct lru_rotate {
51 local_lock_t lock;
52 struct pagevec pvec;
53};
54static DEFINE_PER_CPU(struct lru_rotate, lru_rotate) = {
55 .lock = INIT_LOCAL_LOCK(lock),
56};
57
58/*
59 * The following struct pagevec are grouped together because they are protected
60 * by disabling preemption (and interrupts remain enabled).
61 */
62struct lru_pvecs {
63 local_lock_t lock;
64 struct pagevec lru_add;
65 struct pagevec lru_deactivate_file;
66 struct pagevec lru_deactivate;
67 struct pagevec lru_lazyfree;
Vinayak Menon9975da52021-03-18 16:49:18 +053068 struct pagevec lru_lazyfree_movetail;
Ming Lia4a921a2016-05-20 16:57:56 -070069#ifdef CONFIG_SMP
Ingo Molnarb01b2142020-05-27 22:11:15 +020070 struct pagevec activate_page;
Ming Lia4a921a2016-05-20 16:57:56 -070071#endif
Ingo Molnarb01b2142020-05-27 22:11:15 +020072};
73static DEFINE_PER_CPU(struct lru_pvecs, lru_pvecs) = {
74 .lock = INIT_LOCAL_LOCK(lock),
75};
Hisashi Hifumi902aaed2007-10-16 01:24:52 -070076
Adrian Bunkb2213852006-09-25 23:31:02 -070077/*
78 * This path almost never happens for VM activity - pages are normally
79 * freed via pagevecs. But it gets used by networking.
80 */
Harvey Harrison920c7a52008-02-04 22:29:26 -080081static void __page_cache_release(struct page *page)
Adrian Bunkb2213852006-09-25 23:31:02 -070082{
83 if (PageLRU(page)) {
Andrey Ryabininf4b7e272019-03-05 15:49:39 -080084 pg_data_t *pgdat = page_pgdat(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070085 struct lruvec *lruvec;
86 unsigned long flags;
Adrian Bunkb2213852006-09-25 23:31:02 -070087
Andrey Ryabininf4b7e272019-03-05 15:49:39 -080088 spin_lock_irqsave(&pgdat->lru_lock, flags);
89 lruvec = mem_cgroup_page_lruvec(page, pgdat);
Sasha Levin309381fea2014-01-23 15:52:54 -080090 VM_BUG_ON_PAGE(!PageLRU(page), page);
Adrian Bunkb2213852006-09-25 23:31:02 -070091 __ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070092 del_page_from_lru_list(page, lruvec, page_off_lru(page));
Andrey Ryabininf4b7e272019-03-05 15:49:39 -080093 spin_unlock_irqrestore(&pgdat->lru_lock, flags);
Adrian Bunkb2213852006-09-25 23:31:02 -070094 }
Nicholas Piggin62906022016-12-25 13:00:30 +100095 __ClearPageWaiters(page);
Andrea Arcangeli91807062011-01-13 15:46:32 -080096}
97
98static void __put_single_page(struct page *page)
99{
100 __page_cache_release(page);
Yang Shi7ae88532019-09-23 15:38:09 -0700101 mem_cgroup_uncharge(page);
Mel Gorman2d4894b2017-11-15 17:37:59 -0800102 free_unref_page(page);
Adrian Bunkb2213852006-09-25 23:31:02 -0700103}
104
Andrea Arcangeli91807062011-01-13 15:46:32 -0800105static void __put_compound_page(struct page *page)
106{
Naoya Horiguchi822fc612015-04-15 16:14:35 -0700107 /*
108 * __page_cache_release() is supposed to be called for thp, not for
109 * hugetlb. This is because hugetlb page does never have PageLRU set
110 * (it's never listed to any LRU lists) and no memcg routines should
111 * be called for hugetlb (it has a separate hugetlb_cgroup.)
112 */
113 if (!PageHuge(page))
114 __page_cache_release(page);
Matthew Wilcox (Oracle)ff45fc32020-06-03 16:01:09 -0700115 destroy_compound_page(page);
Andrea Arcangeli91807062011-01-13 15:46:32 -0800116}
117
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -0800118void __put_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Dan Williams71389702017-04-28 10:23:37 -0700120 if (is_zone_device_page(page)) {
121 put_dev_pagemap(page->pgmap);
122
123 /*
124 * The page belongs to the device that created pgmap. Do
125 * not return it to page allocator.
126 */
127 return;
128 }
129
Nick Piggin8519fb32006-02-07 12:58:52 -0800130 if (unlikely(PageCompound(page)))
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -0800131 __put_compound_page(page);
132 else
Andrea Arcangeli91807062011-01-13 15:46:32 -0800133 __put_single_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134}
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -0800135EXPORT_SYMBOL(__put_page);
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700136
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700137/**
Randy Dunlap76824862008-03-19 17:00:40 -0700138 * put_pages_list() - release a list of pages
139 * @pages: list of pages threaded on page->lru
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700140 *
141 * Release a list of pages which are strung together on page.lru. Currently
142 * used by read_cache_pages() and related error recovery code.
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700143 */
144void put_pages_list(struct list_head *pages)
145{
146 while (!list_empty(pages)) {
147 struct page *victim;
148
Nikolay Borisovf86196e2019-01-03 15:29:02 -0800149 victim = lru_to_page(pages);
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700150 list_del(&victim->lru);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300151 put_page(victim);
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700152 }
153}
154EXPORT_SYMBOL(put_pages_list);
155
Mel Gorman18022c52012-07-31 16:44:51 -0700156/*
157 * get_kernel_pages() - pin kernel pages in memory
158 * @kiov: An array of struct kvec structures
159 * @nr_segs: number of segments to pin
160 * @write: pinning for read/write, currently ignored
161 * @pages: array that receives pointers to the pages pinned.
162 * Should be at least nr_segs long.
163 *
164 * Returns number of pages pinned. This may be fewer than the number
165 * requested. If nr_pages is 0 or negative, returns 0. If no pages
166 * were pinned, returns -errno. Each page returned must be released
167 * with a put_page() call when it is finished with.
168 */
169int get_kernel_pages(const struct kvec *kiov, int nr_segs, int write,
170 struct page **pages)
171{
172 int seg;
173
174 for (seg = 0; seg < nr_segs; seg++) {
175 if (WARN_ON(kiov[seg].iov_len != PAGE_SIZE))
176 return seg;
177
Mel Gorman5a178112012-07-31 16:45:02 -0700178 pages[seg] = kmap_to_page(kiov[seg].iov_base);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300179 get_page(pages[seg]);
Mel Gorman18022c52012-07-31 16:44:51 -0700180 }
181
182 return seg;
183}
184EXPORT_SYMBOL_GPL(get_kernel_pages);
185
186/*
187 * get_kernel_page() - pin a kernel page in memory
188 * @start: starting kernel address
189 * @write: pinning for read/write, currently ignored
190 * @pages: array that receives pointer to the page pinned.
191 * Must be at least nr_segs long.
192 *
193 * Returns 1 if page is pinned. If the page was not pinned, returns
194 * -errno. The page returned must be released with a put_page() call
195 * when it is finished with.
196 */
197int get_kernel_page(unsigned long start, int write, struct page **pages)
198{
199 const struct kvec kiov = {
200 .iov_base = (void *)start,
201 .iov_len = PAGE_SIZE
202 };
203
204 return get_kernel_pages(&kiov, 1, write, pages);
205}
206EXPORT_SYMBOL_GPL(get_kernel_page);
207
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700208static void pagevec_lru_move_fn(struct pagevec *pvec,
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700209 void (*move_fn)(struct page *page, struct lruvec *lruvec, void *arg),
210 void *arg)
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700211{
212 int i;
Mel Gorman68eb0732016-07-28 15:47:11 -0700213 struct pglist_data *pgdat = NULL;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700214 struct lruvec *lruvec;
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700215 unsigned long flags = 0;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700216
217 for (i = 0; i < pagevec_count(pvec); i++) {
218 struct page *page = pvec->pages[i];
Mel Gorman68eb0732016-07-28 15:47:11 -0700219 struct pglist_data *pagepgdat = page_pgdat(page);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700220
Mel Gorman68eb0732016-07-28 15:47:11 -0700221 if (pagepgdat != pgdat) {
222 if (pgdat)
223 spin_unlock_irqrestore(&pgdat->lru_lock, flags);
224 pgdat = pagepgdat;
225 spin_lock_irqsave(&pgdat->lru_lock, flags);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700226 }
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700227
Mel Gorman68eb0732016-07-28 15:47:11 -0700228 lruvec = mem_cgroup_page_lruvec(page, pgdat);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700229 (*move_fn)(page, lruvec, arg);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700230 }
Mel Gorman68eb0732016-07-28 15:47:11 -0700231 if (pgdat)
232 spin_unlock_irqrestore(&pgdat->lru_lock, flags);
Mel Gormanc6f92f92017-11-15 17:37:55 -0800233 release_pages(pvec->pages, pvec->nr);
Linus Torvalds83896fb2011-01-17 14:42:34 -0800234 pagevec_reinit(pvec);
Shaohua Lid8505de2011-01-13 15:47:33 -0800235}
236
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700237static void pagevec_move_tail_fn(struct page *page, struct lruvec *lruvec,
238 void *arg)
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700239{
240 int *pgmoved = arg;
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700241
Johannes Weinerc55e8d02017-02-24 14:56:23 -0800242 if (PageLRU(page) && !PageUnevictable(page)) {
243 del_page_from_lru_list(page, lruvec, page_lru(page));
244 ClearPageActive(page);
245 add_page_to_lru_list_tail(page, lruvec, page_lru(page));
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700246 (*pgmoved) += thp_nr_pages(page);
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700247 }
248}
249
250/*
251 * pagevec_move_tail() must be called with IRQ disabled.
252 * Otherwise this may cause nasty races.
253 */
254static void pagevec_move_tail(struct pagevec *pvec)
255{
256 int pgmoved = 0;
257
258 pagevec_lru_move_fn(pvec, pagevec_move_tail_fn, &pgmoved);
259 __count_vm_events(PGROTATED, pgmoved);
260}
261
Minchan Kim68a47312021-03-19 12:39:51 -0700262/* return true if pagevec needs to drain */
263static bool pagevec_add_and_need_flush(struct pagevec *pvec, struct page *page)
264{
265 bool ret = false;
266
267 if (!pagevec_add(pvec, page) || PageCompound(page) ||
268 lru_cache_disabled())
269 ret = true;
270
271 return ret;
272}
273
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700274/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * Writeback is about to end against a page which has been marked for immediate
276 * reclaim. If it still appears to be reclaimable, move it to the tail of the
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700277 * inactive list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 */
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700279void rotate_reclaimable_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Johannes Weinerc55e8d02017-02-24 14:56:23 -0800281 if (!PageLocked(page) && !PageDirty(page) &&
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700282 !PageUnevictable(page) && PageLRU(page)) {
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700283 struct pagevec *pvec;
284 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300286 get_page(page);
Ingo Molnarb01b2142020-05-27 22:11:15 +0200287 local_lock_irqsave(&lru_rotate.lock, flags);
288 pvec = this_cpu_ptr(&lru_rotate.pvec);
Minchan Kim68a47312021-03-19 12:39:51 -0700289 if (pagevec_add_and_need_flush(pvec, page))
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700290 pagevec_move_tail(pvec);
Ingo Molnarb01b2142020-05-27 22:11:15 +0200291 local_unlock_irqrestore(&lru_rotate.lock, flags);
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Johannes Weiner96f8bf42020-06-03 16:03:09 -0700295void lru_note_cost(struct lruvec *lruvec, bool file, unsigned int nr_pages)
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800296{
Johannes Weiner7cf111b2020-06-03 16:03:06 -0700297 do {
298 unsigned long lrusize;
299
300 /* Record cost event */
Johannes Weiner96f8bf42020-06-03 16:03:09 -0700301 if (file)
302 lruvec->file_cost += nr_pages;
Johannes Weiner7cf111b2020-06-03 16:03:06 -0700303 else
Johannes Weiner96f8bf42020-06-03 16:03:09 -0700304 lruvec->anon_cost += nr_pages;
Johannes Weiner7cf111b2020-06-03 16:03:06 -0700305
306 /*
307 * Decay previous events
308 *
309 * Because workloads change over time (and to avoid
310 * overflow) we keep these statistics as a floating
311 * average, which ends up weighing recent refaults
312 * more than old ones.
313 */
314 lrusize = lruvec_page_state(lruvec, NR_INACTIVE_ANON) +
315 lruvec_page_state(lruvec, NR_ACTIVE_ANON) +
316 lruvec_page_state(lruvec, NR_INACTIVE_FILE) +
317 lruvec_page_state(lruvec, NR_ACTIVE_FILE);
318
319 if (lruvec->file_cost + lruvec->anon_cost > lrusize / 4) {
320 lruvec->file_cost /= 2;
321 lruvec->anon_cost /= 2;
322 }
323 } while ((lruvec = parent_lruvec(lruvec)));
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800324}
325
Johannes Weiner96f8bf42020-06-03 16:03:09 -0700326void lru_note_cost_page(struct page *page)
327{
328 lru_note_cost(mem_cgroup_page_lruvec(page, page_pgdat(page)),
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700329 page_is_file_lru(page), thp_nr_pages(page));
Johannes Weiner96f8bf42020-06-03 16:03:09 -0700330}
331
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700332static void __activate_page(struct page *page, struct lruvec *lruvec,
333 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Linus Torvalds7a608572011-01-17 14:42:19 -0800335 if (PageLRU(page) && !PageActive(page) && !PageUnevictable(page)) {
Linus Torvalds7a608572011-01-17 14:42:19 -0800336 int lru = page_lru_base_type(page);
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700337 int nr_pages = thp_nr_pages(page);
Linus Torvalds7a608572011-01-17 14:42:19 -0800338
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700339 del_page_from_lru_list(page, lruvec, lru);
Linus Torvalds7a608572011-01-17 14:42:19 -0800340 SetPageActive(page);
341 lru += LRU_ACTIVE;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700342 add_page_to_lru_list(page, lruvec, lru);
Mel Gorman24b7e582014-08-06 16:07:11 -0700343 trace_mm_lru_activate(page);
Linus Torvalds7a608572011-01-17 14:42:19 -0800344
Shakeel Butt21e330f2020-06-03 16:03:19 -0700345 __count_vm_events(PGACTIVATE, nr_pages);
346 __count_memcg_events(lruvec_memcg(lruvec), PGACTIVATE,
347 nr_pages);
Linus Torvalds7a608572011-01-17 14:42:19 -0800348 }
Shaohua Lieb709b02011-05-24 17:12:55 -0700349}
350
351#ifdef CONFIG_SMP
Shaohua Lieb709b02011-05-24 17:12:55 -0700352static void activate_page_drain(int cpu)
353{
Ingo Molnarb01b2142020-05-27 22:11:15 +0200354 struct pagevec *pvec = &per_cpu(lru_pvecs.activate_page, cpu);
Shaohua Lieb709b02011-05-24 17:12:55 -0700355
356 if (pagevec_count(pvec))
357 pagevec_lru_move_fn(pvec, __activate_page, NULL);
358}
359
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700360static bool need_activate_page_drain(int cpu)
361{
Ingo Molnarb01b2142020-05-27 22:11:15 +0200362 return pagevec_count(&per_cpu(lru_pvecs.activate_page, cpu)) != 0;
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700363}
364
Yu Zhaocc2828b2020-10-13 16:52:08 -0700365static void activate_page(struct page *page)
Shaohua Lieb709b02011-05-24 17:12:55 -0700366{
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700367 page = compound_head(page);
Shaohua Lieb709b02011-05-24 17:12:55 -0700368 if (PageLRU(page) && !PageActive(page) && !PageUnevictable(page)) {
Ingo Molnarb01b2142020-05-27 22:11:15 +0200369 struct pagevec *pvec;
Shaohua Lieb709b02011-05-24 17:12:55 -0700370
Ingo Molnarb01b2142020-05-27 22:11:15 +0200371 local_lock(&lru_pvecs.lock);
372 pvec = this_cpu_ptr(&lru_pvecs.activate_page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300373 get_page(page);
Minchan Kim68a47312021-03-19 12:39:51 -0700374 if (pagevec_add_and_need_flush(pvec, page))
Shaohua Lieb709b02011-05-24 17:12:55 -0700375 pagevec_lru_move_fn(pvec, __activate_page, NULL);
Ingo Molnarb01b2142020-05-27 22:11:15 +0200376 local_unlock(&lru_pvecs.lock);
Shaohua Lieb709b02011-05-24 17:12:55 -0700377 }
378}
379
380#else
381static inline void activate_page_drain(int cpu)
382{
383}
384
Yu Zhaocc2828b2020-10-13 16:52:08 -0700385static void activate_page(struct page *page)
Shaohua Lieb709b02011-05-24 17:12:55 -0700386{
Andrey Ryabininf4b7e272019-03-05 15:49:39 -0800387 pg_data_t *pgdat = page_pgdat(page);
Shaohua Lieb709b02011-05-24 17:12:55 -0700388
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -0700389 page = compound_head(page);
Andrey Ryabininf4b7e272019-03-05 15:49:39 -0800390 spin_lock_irq(&pgdat->lru_lock);
391 __activate_page(page, mem_cgroup_page_lruvec(page, pgdat), NULL);
392 spin_unlock_irq(&pgdat->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
Shaohua Lieb709b02011-05-24 17:12:55 -0700394#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Mel Gorman059285a2013-07-03 15:02:30 -0700396static void __lru_cache_activate_page(struct page *page)
397{
Ingo Molnarb01b2142020-05-27 22:11:15 +0200398 struct pagevec *pvec;
Mel Gorman059285a2013-07-03 15:02:30 -0700399 int i;
400
Ingo Molnarb01b2142020-05-27 22:11:15 +0200401 local_lock(&lru_pvecs.lock);
402 pvec = this_cpu_ptr(&lru_pvecs.lru_add);
403
Mel Gorman059285a2013-07-03 15:02:30 -0700404 /*
405 * Search backwards on the optimistic assumption that the page being
406 * activated has just been added to this pagevec. Note that only
407 * the local pagevec is examined as a !PageLRU page could be in the
408 * process of being released, reclaimed, migrated or on a remote
409 * pagevec that is currently being drained. Furthermore, marking
410 * a remote pagevec's page PageActive potentially hits a race where
411 * a page is marked PageActive just after it is added to the inactive
412 * list causing accounting errors and BUG_ON checks to trigger.
413 */
414 for (i = pagevec_count(pvec) - 1; i >= 0; i--) {
415 struct page *pagevec_page = pvec->pages[i];
416
417 if (pagevec_page == page) {
418 SetPageActive(page);
419 break;
420 }
421 }
422
Ingo Molnarb01b2142020-05-27 22:11:15 +0200423 local_unlock(&lru_pvecs.lock);
Mel Gorman059285a2013-07-03 15:02:30 -0700424}
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426/*
427 * Mark a page as having seen activity.
428 *
429 * inactive,unreferenced -> inactive,referenced
430 * inactive,referenced -> active,unreferenced
431 * active,unreferenced -> active,referenced
Hugh Dickinseb39d612014-08-06 16:06:43 -0700432 *
433 * When a newly allocated page is not yet visible, so safe for non-atomic ops,
434 * __SetPageReferenced(page) may be substituted for mark_page_accessed(page).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800436void mark_page_accessed(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Kirill A. Shutemove90309c2016-01-15 16:54:33 -0800438 page = compound_head(page);
Mel Gorman059285a2013-07-03 15:02:30 -0700439
Fengguang Wua1100a72019-11-30 17:50:00 -0800440 if (!PageReferenced(page)) {
441 SetPageReferenced(page);
442 } else if (PageUnevictable(page)) {
443 /*
444 * Unevictable pages are on the "LRU_UNEVICTABLE" list. But,
445 * this list is never rotated or maintained, so marking an
446 * evictable page accessed has no effect.
447 */
448 } else if (!PageActive(page)) {
Mel Gorman059285a2013-07-03 15:02:30 -0700449 /*
450 * If the page is on the LRU, queue it for activation via
Ingo Molnarb01b2142020-05-27 22:11:15 +0200451 * lru_pvecs.activate_page. Otherwise, assume the page is on a
Mel Gorman059285a2013-07-03 15:02:30 -0700452 * pagevec, mark it active and it'll be moved to the active
453 * LRU on the next drain.
454 */
455 if (PageLRU(page))
456 activate_page(page);
457 else
458 __lru_cache_activate_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 ClearPageReferenced(page);
Joonsoo Kimcb686882020-06-25 20:30:34 -0700460 workingset_activation(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
Vladimir Davydov33c3fc72015-09-09 15:35:45 -0700462 if (page_is_idle(page))
463 clear_page_idle(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465EXPORT_SYMBOL(mark_page_accessed);
466
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700467/**
Mel Gormanc53954a2013-07-03 15:02:34 -0700468 * lru_cache_add - add a page to a page list
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700469 * @page: the page to be added to the LRU.
Jianyu Zhan2329d372014-06-04 16:07:31 -0700470 *
471 * Queue the page for addition to the LRU via pagevec. The decision on whether
472 * to add the page to the [in]active [file|anon] list is deferred until the
473 * pagevec is drained. This gives a chance for the caller of lru_cache_add()
474 * have the page added to the active list using mark_page_accessed().
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700475 */
Mel Gormanc53954a2013-07-03 15:02:34 -0700476void lru_cache_add(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
Johannes Weiner6058eae2020-06-03 16:02:40 -0700478 struct pagevec *pvec;
479
Sasha Levin309381fea2014-01-23 15:52:54 -0800480 VM_BUG_ON_PAGE(PageActive(page) && PageUnevictable(page), page);
481 VM_BUG_ON_PAGE(PageLRU(page), page);
Johannes Weiner6058eae2020-06-03 16:02:40 -0700482
483 get_page(page);
484 local_lock(&lru_pvecs.lock);
485 pvec = this_cpu_ptr(&lru_pvecs.lru_add);
Minchan Kim68a47312021-03-19 12:39:51 -0700486 if (pagevec_add_and_need_flush(pvec, page))
Johannes Weiner6058eae2020-06-03 16:02:40 -0700487 __pagevec_lru_add(pvec);
488 local_unlock(&lru_pvecs.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
Johannes Weiner6058eae2020-06-03 16:02:40 -0700490EXPORT_SYMBOL(lru_cache_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700492/**
Joonsoo Kimb5181542020-08-11 18:30:40 -0700493 * lru_cache_add_inactive_or_unevictable
Johannes Weiner00501b52014-08-08 14:19:20 -0700494 * @page: the page to be added to LRU
495 * @vma: vma in which page is mapped for determining reclaimability
496 *
Joonsoo Kimb5181542020-08-11 18:30:40 -0700497 * Place @page on the inactive or unevictable LRU list, depending on its
Miaohe Lin12eab422020-10-13 16:52:24 -0700498 * evictability.
Johannes Weiner00501b52014-08-08 14:19:20 -0700499 */
Laurent Dufourcbff8f32018-04-17 16:33:20 +0200500void __lru_cache_add_inactive_or_unevictable(struct page *page,
501 unsigned long vma_flags)
Johannes Weiner00501b52014-08-08 14:19:20 -0700502{
Joonsoo Kimb5181542020-08-11 18:30:40 -0700503 bool unevictable;
504
Johannes Weiner00501b52014-08-08 14:19:20 -0700505 VM_BUG_ON_PAGE(PageLRU(page), page);
506
Laurent Dufourcbff8f32018-04-17 16:33:20 +0200507 unevictable = (vma_flags & (VM_LOCKED | VM_SPECIAL)) == VM_LOCKED;
Joonsoo Kimb5181542020-08-11 18:30:40 -0700508 if (unlikely(unevictable) && !TestSetPageMlocked(page)) {
Hugh Dickins09647302020-09-18 21:20:15 -0700509 int nr_pages = thp_nr_pages(page);
Johannes Weiner00501b52014-08-08 14:19:20 -0700510 /*
511 * We use the irq-unsafe __mod_zone_page_stat because this
512 * counter is not modified from interrupt context, and the pte
513 * lock is held(spinlock), which implies preemption disabled.
514 */
Hugh Dickins09647302020-09-18 21:20:15 -0700515 __mod_zone_page_state(page_zone(page), NR_MLOCK, nr_pages);
516 count_vm_events(UNEVICTABLE_PGMLOCKED, nr_pages);
Johannes Weiner00501b52014-08-08 14:19:20 -0700517 }
Shakeel Butt9c4e6b12018-02-21 14:45:28 -0800518 lru_cache_add(page);
Johannes Weiner00501b52014-08-08 14:19:20 -0700519}
520
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700521/*
Minchan Kim31560182011-03-22 16:32:52 -0700522 * If the page can not be invalidated, it is moved to the
523 * inactive list to speed up its reclaim. It is moved to the
524 * head of the list, rather than the tail, to give the flusher
525 * threads some time to write it out, as this is much more
526 * effective than the single-page writeout from reclaim.
Minchan Kim278df9f2011-03-22 16:32:54 -0700527 *
528 * If the page isn't page_mapped and dirty/writeback, the page
529 * could reclaim asap using PG_reclaim.
530 *
531 * 1. active, mapped page -> none
532 * 2. active, dirty/writeback page -> inactive, head, PG_reclaim
533 * 3. inactive, mapped page -> none
534 * 4. inactive, dirty/writeback page -> inactive, head, PG_reclaim
535 * 5. inactive, clean -> inactive, tail
536 * 6. Others -> none
537 *
538 * In 4, why it moves inactive's head, the VM expects the page would
539 * be write it out by flusher threads as this is much more effective
540 * than the single-page writeout from reclaim.
Minchan Kim31560182011-03-22 16:32:52 -0700541 */
Minchan Kimcc5993b2015-04-15 16:13:26 -0700542static void lru_deactivate_file_fn(struct page *page, struct lruvec *lruvec,
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700543 void *arg)
Minchan Kim31560182011-03-22 16:32:52 -0700544{
Johannes Weinerfbbb6022020-06-03 16:02:57 -0700545 int lru;
Minchan Kim278df9f2011-03-22 16:32:54 -0700546 bool active;
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700547 int nr_pages = thp_nr_pages(page);
Minchan Kim31560182011-03-22 16:32:52 -0700548
Minchan Kim278df9f2011-03-22 16:32:54 -0700549 if (!PageLRU(page))
Minchan Kim31560182011-03-22 16:32:52 -0700550 return;
551
Minchan Kimbad49d92011-05-11 15:13:30 -0700552 if (PageUnevictable(page))
553 return;
554
Minchan Kim31560182011-03-22 16:32:52 -0700555 /* Some processes are using the page */
556 if (page_mapped(page))
557 return;
558
Minchan Kim278df9f2011-03-22 16:32:54 -0700559 active = PageActive(page);
Minchan Kim31560182011-03-22 16:32:52 -0700560 lru = page_lru_base_type(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700561
562 del_page_from_lru_list(page, lruvec, lru + active);
Minchan Kim31560182011-03-22 16:32:52 -0700563 ClearPageActive(page);
564 ClearPageReferenced(page);
Minchan Kim31560182011-03-22 16:32:52 -0700565
Minchan Kim278df9f2011-03-22 16:32:54 -0700566 if (PageWriteback(page) || PageDirty(page)) {
567 /*
568 * PG_reclaim could be raced with end_page_writeback
569 * It can make readahead confusing. But race window
570 * is _really_ small and it's non-critical problem.
571 */
Yu Zhaoe7a1aaf2019-09-23 15:34:33 -0700572 add_page_to_lru_list(page, lruvec, lru);
Minchan Kim278df9f2011-03-22 16:32:54 -0700573 SetPageReclaim(page);
574 } else {
575 /*
576 * The page's writeback ends up during pagevec
577 * We moves tha page into tail of inactive.
578 */
Yu Zhaoe7a1aaf2019-09-23 15:34:33 -0700579 add_page_to_lru_list_tail(page, lruvec, lru);
Shakeel Butt5d91f312020-06-03 16:03:16 -0700580 __count_vm_events(PGROTATED, nr_pages);
Minchan Kim278df9f2011-03-22 16:32:54 -0700581 }
582
Shakeel Butt21e330f2020-06-03 16:03:19 -0700583 if (active) {
Shakeel Butt5d91f312020-06-03 16:03:16 -0700584 __count_vm_events(PGDEACTIVATE, nr_pages);
Shakeel Butt21e330f2020-06-03 16:03:19 -0700585 __count_memcg_events(lruvec_memcg(lruvec), PGDEACTIVATE,
586 nr_pages);
587 }
Minchan Kim31560182011-03-22 16:32:52 -0700588}
589
Minchan Kim9c276cc2019-09-25 16:49:08 -0700590static void lru_deactivate_fn(struct page *page, struct lruvec *lruvec,
591 void *arg)
592{
593 if (PageLRU(page) && PageActive(page) && !PageUnevictable(page)) {
Minchan Kim9c276cc2019-09-25 16:49:08 -0700594 int lru = page_lru_base_type(page);
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700595 int nr_pages = thp_nr_pages(page);
Minchan Kim9c276cc2019-09-25 16:49:08 -0700596
597 del_page_from_lru_list(page, lruvec, lru + LRU_ACTIVE);
598 ClearPageActive(page);
599 ClearPageReferenced(page);
600 add_page_to_lru_list(page, lruvec, lru);
601
Shakeel Butt21e330f2020-06-03 16:03:19 -0700602 __count_vm_events(PGDEACTIVATE, nr_pages);
603 __count_memcg_events(lruvec_memcg(lruvec), PGDEACTIVATE,
604 nr_pages);
Minchan Kim9c276cc2019-09-25 16:49:08 -0700605 }
606}
Minchan Kim10853a02016-01-15 16:55:11 -0800607
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700608static void lru_lazyfree_fn(struct page *page, struct lruvec *lruvec,
Minchan Kim10853a02016-01-15 16:55:11 -0800609 void *arg)
610{
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700611 if (PageLRU(page) && PageAnon(page) && PageSwapBacked(page) &&
Shaohua Li24c92eb2017-10-03 16:15:29 -0700612 !PageSwapCache(page) && !PageUnevictable(page)) {
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700613 bool active = PageActive(page);
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700614 int nr_pages = thp_nr_pages(page);
Minchan Kim10853a02016-01-15 16:55:11 -0800615
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700616 del_page_from_lru_list(page, lruvec,
617 LRU_INACTIVE_ANON + active);
Minchan Kim10853a02016-01-15 16:55:11 -0800618 ClearPageActive(page);
619 ClearPageReferenced(page);
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700620 /*
Huang Ying9de4f222020-04-06 20:04:41 -0700621 * Lazyfree pages are clean anonymous pages. They have
622 * PG_swapbacked flag cleared, to distinguish them from normal
623 * anonymous pages
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700624 */
625 ClearPageSwapBacked(page);
626 add_page_to_lru_list(page, lruvec, LRU_INACTIVE_FILE);
Minchan Kim10853a02016-01-15 16:55:11 -0800627
Shakeel Butt21e330f2020-06-03 16:03:19 -0700628 __count_vm_events(PGLAZYFREE, nr_pages);
629 __count_memcg_events(lruvec_memcg(lruvec), PGLAZYFREE,
630 nr_pages);
Minchan Kim10853a02016-01-15 16:55:11 -0800631 }
632}
633
Vinayak Menon9975da52021-03-18 16:49:18 +0530634static void lru_lazyfree_movetail_fn(struct page *page, struct lruvec *lruvec,
635 void *arg)
636{
Charan Teja Reddy8011eb22021-06-25 12:30:50 +0530637 bool *add_to_tail = (bool *)arg;
638
Vinayak Menon9975da52021-03-18 16:49:18 +0530639 if (PageLRU(page) && !PageUnevictable(page) && PageSwapBacked(page) &&
640 !PageSwapCache(page)) {
641 bool active = PageActive(page);
642
643 del_page_from_lru_list(page, lruvec,
644 LRU_INACTIVE_ANON + active);
645 ClearPageActive(page);
646 ClearPageReferenced(page);
Charan Teja Reddy8011eb22021-06-25 12:30:50 +0530647 if (add_to_tail && *add_to_tail)
648 add_page_to_lru_list_tail(page, lruvec, LRU_INACTIVE_FILE);
649 else
650 add_page_to_lru_list(page, lruvec, LRU_INACTIVE_FILE);
Vinayak Menon9975da52021-03-18 16:49:18 +0530651 }
652}
653
Minchan Kim31560182011-03-22 16:32:52 -0700654/*
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700655 * Drain pages out of the cpu's pagevecs.
656 * Either "cpu" is the current CPU, and preemption has already been
657 * disabled; or "cpu" is being hot-unplugged, and is already dead.
658 */
Konstantin Khlebnikovf0cb3c72012-03-21 16:34:06 -0700659void lru_add_drain_cpu(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Ingo Molnarb01b2142020-05-27 22:11:15 +0200661 struct pagevec *pvec = &per_cpu(lru_pvecs.lru_add, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Mel Gorman13f7f782013-07-03 15:02:28 -0700663 if (pagevec_count(pvec))
Mel Gormana0b8cab32013-07-03 15:02:32 -0700664 __pagevec_lru_add(pvec);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700665
Ingo Molnarb01b2142020-05-27 22:11:15 +0200666 pvec = &per_cpu(lru_rotate.pvec, cpu);
Qian Cai7e0cc012020-08-14 17:31:50 -0700667 /* Disabling interrupts below acts as a compiler barrier. */
668 if (data_race(pagevec_count(pvec))) {
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700669 unsigned long flags;
670
671 /* No harm done if a racing interrupt already did this */
Ingo Molnarb01b2142020-05-27 22:11:15 +0200672 local_lock_irqsave(&lru_rotate.lock, flags);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700673 pagevec_move_tail(pvec);
Ingo Molnarb01b2142020-05-27 22:11:15 +0200674 local_unlock_irqrestore(&lru_rotate.lock, flags);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700675 }
Minchan Kim31560182011-03-22 16:32:52 -0700676
Ingo Molnarb01b2142020-05-27 22:11:15 +0200677 pvec = &per_cpu(lru_pvecs.lru_deactivate_file, cpu);
Minchan Kim31560182011-03-22 16:32:52 -0700678 if (pagevec_count(pvec))
Minchan Kimcc5993b2015-04-15 16:13:26 -0700679 pagevec_lru_move_fn(pvec, lru_deactivate_file_fn, NULL);
Shaohua Lieb709b02011-05-24 17:12:55 -0700680
Ingo Molnarb01b2142020-05-27 22:11:15 +0200681 pvec = &per_cpu(lru_pvecs.lru_deactivate, cpu);
Minchan Kim9c276cc2019-09-25 16:49:08 -0700682 if (pagevec_count(pvec))
683 pagevec_lru_move_fn(pvec, lru_deactivate_fn, NULL);
684
Ingo Molnarb01b2142020-05-27 22:11:15 +0200685 pvec = &per_cpu(lru_pvecs.lru_lazyfree, cpu);
Minchan Kim10853a02016-01-15 16:55:11 -0800686 if (pagevec_count(pvec))
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700687 pagevec_lru_move_fn(pvec, lru_lazyfree_fn, NULL);
Minchan Kim10853a02016-01-15 16:55:11 -0800688
Vinayak Menon9975da52021-03-18 16:49:18 +0530689 pvec = &per_cpu(lru_pvecs.lru_lazyfree_movetail, cpu);
690 if (pagevec_count(pvec))
691 pagevec_lru_move_fn(pvec, lru_lazyfree_movetail_fn, NULL);
692
Shaohua Lieb709b02011-05-24 17:12:55 -0700693 activate_page_drain(cpu);
Minchan Kim31560182011-03-22 16:32:52 -0700694}
695
696/**
Minchan Kimcc5993b2015-04-15 16:13:26 -0700697 * deactivate_file_page - forcefully deactivate a file page
Minchan Kim31560182011-03-22 16:32:52 -0700698 * @page: page to deactivate
699 *
700 * This function hints the VM that @page is a good reclaim candidate,
701 * for example if its invalidation fails due to the page being dirty
702 * or under writeback.
703 */
Minchan Kimcc5993b2015-04-15 16:13:26 -0700704void deactivate_file_page(struct page *page)
Minchan Kim31560182011-03-22 16:32:52 -0700705{
Minchan Kim821ed6b2011-05-24 17:12:31 -0700706 /*
Minchan Kimcc5993b2015-04-15 16:13:26 -0700707 * In a workload with many unevictable page such as mprotect,
708 * unevictable page deactivation for accelerating reclaim is pointless.
Minchan Kim821ed6b2011-05-24 17:12:31 -0700709 */
710 if (PageUnevictable(page))
711 return;
712
Minchan Kim31560182011-03-22 16:32:52 -0700713 if (likely(get_page_unless_zero(page))) {
Ingo Molnarb01b2142020-05-27 22:11:15 +0200714 struct pagevec *pvec;
715
716 local_lock(&lru_pvecs.lock);
717 pvec = this_cpu_ptr(&lru_pvecs.lru_deactivate_file);
Minchan Kim31560182011-03-22 16:32:52 -0700718
Minchan Kim68a47312021-03-19 12:39:51 -0700719 if (pagevec_add_and_need_flush(pvec, page))
Minchan Kimcc5993b2015-04-15 16:13:26 -0700720 pagevec_lru_move_fn(pvec, lru_deactivate_file_fn, NULL);
Ingo Molnarb01b2142020-05-27 22:11:15 +0200721 local_unlock(&lru_pvecs.lock);
Minchan Kim31560182011-03-22 16:32:52 -0700722 }
Andrew Morton80bfed92006-01-06 00:11:14 -0800723}
724
Minchan Kim9c276cc2019-09-25 16:49:08 -0700725/*
726 * deactivate_page - deactivate a page
727 * @page: page to deactivate
728 *
729 * deactivate_page() moves @page to the inactive list if @page was on the active
730 * list and was not an unevictable page. This is done to accelerate the reclaim
731 * of @page.
732 */
733void deactivate_page(struct page *page)
734{
735 if (PageLRU(page) && PageActive(page) && !PageUnevictable(page)) {
Ingo Molnarb01b2142020-05-27 22:11:15 +0200736 struct pagevec *pvec;
Minchan Kim9c276cc2019-09-25 16:49:08 -0700737
Ingo Molnarb01b2142020-05-27 22:11:15 +0200738 local_lock(&lru_pvecs.lock);
739 pvec = this_cpu_ptr(&lru_pvecs.lru_deactivate);
Minchan Kim9c276cc2019-09-25 16:49:08 -0700740 get_page(page);
Minchan Kim68a47312021-03-19 12:39:51 -0700741 if (pagevec_add_and_need_flush(pvec, page))
Minchan Kim9c276cc2019-09-25 16:49:08 -0700742 pagevec_lru_move_fn(pvec, lru_deactivate_fn, NULL);
Ingo Molnarb01b2142020-05-27 22:11:15 +0200743 local_unlock(&lru_pvecs.lock);
Minchan Kim9c276cc2019-09-25 16:49:08 -0700744 }
745}
746
Minchan Kim10853a02016-01-15 16:55:11 -0800747/**
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700748 * mark_page_lazyfree - make an anon page lazyfree
Minchan Kim10853a02016-01-15 16:55:11 -0800749 * @page: page to deactivate
750 *
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700751 * mark_page_lazyfree() moves @page to the inactive file list.
752 * This is done to accelerate the reclaim of @page.
Minchan Kim10853a02016-01-15 16:55:11 -0800753 */
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700754void mark_page_lazyfree(struct page *page)
Minchan Kim10853a02016-01-15 16:55:11 -0800755{
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700756 if (PageLRU(page) && PageAnon(page) && PageSwapBacked(page) &&
Shaohua Li24c92eb2017-10-03 16:15:29 -0700757 !PageSwapCache(page) && !PageUnevictable(page)) {
Ingo Molnarb01b2142020-05-27 22:11:15 +0200758 struct pagevec *pvec;
Minchan Kim10853a02016-01-15 16:55:11 -0800759
Ingo Molnarb01b2142020-05-27 22:11:15 +0200760 local_lock(&lru_pvecs.lock);
761 pvec = this_cpu_ptr(&lru_pvecs.lru_lazyfree);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300762 get_page(page);
Minchan Kim68a47312021-03-19 12:39:51 -0700763 if (pagevec_add_and_need_flush(pvec, page))
Shaohua Lif7ad2a62017-05-03 14:52:29 -0700764 pagevec_lru_move_fn(pvec, lru_lazyfree_fn, NULL);
Ingo Molnarb01b2142020-05-27 22:11:15 +0200765 local_unlock(&lru_pvecs.lock);
Minchan Kim10853a02016-01-15 16:55:11 -0800766 }
767}
768
Vinayak Menon9975da52021-03-18 16:49:18 +0530769/**
770 * mark_page_lazyfree_movetail - make a swapbacked page lazyfree
771 * @page: page to deactivate
772 *
773 * mark_page_lazyfree_movetail() moves @page to the tail of inactive file list.
774 * This is done to accelerate the reclaim of @page.
775 */
Charan Teja Reddy8011eb22021-06-25 12:30:50 +0530776void mark_page_lazyfree_movetail(struct page *page, bool tail)
Vinayak Menon9975da52021-03-18 16:49:18 +0530777{
778 if (PageLRU(page) && !PageUnevictable(page) && PageSwapBacked(page) &&
779 !PageSwapCache(page)) {
780 struct pagevec *pvec;
781
782 local_lock(&lru_pvecs.lock);
783 pvec = this_cpu_ptr(&lru_pvecs.lru_lazyfree_movetail);
784 get_page(page);
785 if (pagevec_add_and_need_flush(pvec, page))
786 pagevec_lru_move_fn(pvec,
Charan Teja Reddy8011eb22021-06-25 12:30:50 +0530787 lru_lazyfree_movetail_fn, &tail);
Vinayak Menon9975da52021-03-18 16:49:18 +0530788 local_unlock(&lru_pvecs.lock);
789 }
790}
791
Andrew Morton80bfed92006-01-06 00:11:14 -0800792void lru_add_drain(void)
793{
Ingo Molnarb01b2142020-05-27 22:11:15 +0200794 local_lock(&lru_pvecs.lock);
795 lru_add_drain_cpu(smp_processor_id());
796 local_unlock(&lru_pvecs.lock);
797}
798
Minchan Kima9ac6ae2021-09-24 18:19:40 -0700799/*
800 * It's called from per-cpu workqueue context in SMP case so
801 * lru_add_drain_cpu and invalidate_bh_lrus_cpu should run on
802 * the same cpu. It shouldn't be a problem in !SMP case since
803 * the core is only one and the locks will disable preemption.
804 */
805static void lru_add_and_bh_lrus_drain(void)
806{
807 local_lock(&lru_pvecs.lock);
808 lru_add_drain_cpu(smp_processor_id());
809 local_unlock(&lru_pvecs.lock);
810 invalidate_bh_lrus_cpu();
811}
812
Ingo Molnarb01b2142020-05-27 22:11:15 +0200813void lru_add_drain_cpu_zone(struct zone *zone)
814{
815 local_lock(&lru_pvecs.lock);
816 lru_add_drain_cpu(smp_processor_id());
817 drain_local_pages(zone);
818 local_unlock(&lru_pvecs.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819}
820
Michal Hocko6ea183d2019-02-20 22:19:54 -0800821#ifdef CONFIG_SMP
822
823static DEFINE_PER_CPU(struct work_struct, lru_add_drain_work);
824
David Howellsc4028952006-11-22 14:57:56 +0000825static void lru_add_drain_per_cpu(struct work_struct *dummy)
Nick Piggin053837f2006-01-18 17:42:27 -0800826{
Minchan Kima9ac6ae2021-09-24 18:19:40 -0700827 lru_add_and_bh_lrus_drain();
Nick Piggin053837f2006-01-18 17:42:27 -0800828}
829
Michal Hocko9852a722018-01-31 16:16:19 -0800830/*
831 * Doesn't need any cpu hotplug locking because we do rely on per-cpu
832 * kworkers being shut down before our page_alloc_cpu_dead callback is
833 * executed on the offlined cpu.
834 * Calling this function with cpu hotplug locks held can actually lead
835 * to obscure indirect dependencies via WQ context.
836 */
Minchan Kim68a47312021-03-19 12:39:51 -0700837inline void __lru_add_drain_all(bool force_all_cpus)
Nick Piggin053837f2006-01-18 17:42:27 -0800838{
Ahmed S. Darwish6446a512020-08-27 13:40:38 +0200839 /*
840 * lru_drain_gen - Global pages generation number
841 *
842 * (A) Definition: global lru_drain_gen = x implies that all generations
843 * 0 < n <= x are already *scheduled* for draining.
844 *
845 * This is an optimization for the highly-contended use case where a
846 * user space workload keeps constantly generating a flow of pages for
847 * each CPU.
848 */
849 static unsigned int lru_drain_gen;
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700850 static struct cpumask has_work;
Ahmed S. Darwish6446a512020-08-27 13:40:38 +0200851 static DEFINE_MUTEX(lock);
852 unsigned cpu, this_gen;
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700853
Michal Hockoce612872017-04-07 16:05:05 -0700854 /*
855 * Make sure nobody triggers this path before mm_percpu_wq is fully
856 * initialized.
857 */
858 if (WARN_ON(!mm_percpu_wq))
859 return;
860
Ahmed S. Darwish6446a512020-08-27 13:40:38 +0200861 /*
862 * Guarantee pagevec counter stores visible by this CPU are visible to
863 * other CPUs before loading the current drain generation.
864 */
865 smp_mb();
866
867 /*
868 * (B) Locally cache global LRU draining generation number
869 *
870 * The read barrier ensures that the counter is loaded before the mutex
871 * is taken. It pairs with smp_mb() inside the mutex critical section
872 * at (D).
873 */
874 this_gen = smp_load_acquire(&lru_drain_gen);
Konstantin Khlebnikoveef1a422019-11-30 17:50:40 -0800875
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700876 mutex_lock(&lock);
Konstantin Khlebnikoveef1a422019-11-30 17:50:40 -0800877
878 /*
Ahmed S. Darwish6446a512020-08-27 13:40:38 +0200879 * (C) Exit the draining operation if a newer generation, from another
880 * lru_add_drain_all(), was already scheduled for draining. Check (A).
Konstantin Khlebnikoveef1a422019-11-30 17:50:40 -0800881 */
Minchan Kim68a47312021-03-19 12:39:51 -0700882 if (unlikely(this_gen != lru_drain_gen && !force_all_cpus))
Konstantin Khlebnikoveef1a422019-11-30 17:50:40 -0800883 goto done;
884
Ahmed S. Darwish6446a512020-08-27 13:40:38 +0200885 /*
886 * (D) Increment global generation number
887 *
888 * Pairs with smp_load_acquire() at (B), outside of the critical
889 * section. Use a full memory barrier to guarantee that the new global
890 * drain generation number is stored before loading pagevec counters.
891 *
892 * This pairing must be done here, before the for_each_online_cpu loop
893 * below which drains the page vectors.
894 *
895 * Let x, y, and z represent some system CPU numbers, where x < y < z.
896 * Assume CPU #z is is in the middle of the for_each_online_cpu loop
897 * below and has already reached CPU #y's per-cpu data. CPU #x comes
898 * along, adds some pages to its per-cpu vectors, then calls
899 * lru_add_drain_all().
900 *
901 * If the paired barrier is done at any later step, e.g. after the
902 * loop, CPU #x will just exit at (C) and miss flushing out all of its
903 * added pages.
904 */
905 WRITE_ONCE(lru_drain_gen, lru_drain_gen + 1);
906 smp_mb();
Konstantin Khlebnikoveef1a422019-11-30 17:50:40 -0800907
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700908 cpumask_clear(&has_work);
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700909 for_each_online_cpu(cpu) {
910 struct work_struct *work = &per_cpu(lru_add_drain_work, cpu);
911
Minchan Kim68a47312021-03-19 12:39:51 -0700912 if (force_all_cpus ||
913 pagevec_count(&per_cpu(lru_pvecs.lru_add, cpu)) ||
Qian Cai7e0cc012020-08-14 17:31:50 -0700914 data_race(pagevec_count(&per_cpu(lru_rotate.pvec, cpu))) ||
Ingo Molnarb01b2142020-05-27 22:11:15 +0200915 pagevec_count(&per_cpu(lru_pvecs.lru_deactivate_file, cpu)) ||
916 pagevec_count(&per_cpu(lru_pvecs.lru_deactivate, cpu)) ||
917 pagevec_count(&per_cpu(lru_pvecs.lru_lazyfree, cpu)) ||
Vinayak Menon9975da52021-03-18 16:49:18 +0530918 pagevec_count(&per_cpu(lru_pvecs.lru_lazyfree_movetail, cpu)) ||
Minchan Kima0a0b3f2021-03-19 12:49:41 -0700919 need_activate_page_drain(cpu) ||
920 has_bh_in_lru(cpu, NULL)) {
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700921 INIT_WORK(work, lru_add_drain_per_cpu);
Michal Hockoce612872017-04-07 16:05:05 -0700922 queue_work_on(cpu, mm_percpu_wq, work);
Ahmed S. Darwish6446a512020-08-27 13:40:38 +0200923 __cpumask_set_cpu(cpu, &has_work);
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700924 }
925 }
926
927 for_each_cpu(cpu, &has_work)
928 flush_work(&per_cpu(lru_add_drain_work, cpu));
929
Konstantin Khlebnikoveef1a422019-11-30 17:50:40 -0800930done:
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700931 mutex_unlock(&lock);
Nick Piggin053837f2006-01-18 17:42:27 -0800932}
Minchan Kim68a47312021-03-19 12:39:51 -0700933
934void lru_add_drain_all(void)
935{
936 __lru_add_drain_all(false);
937}
Michal Hocko6ea183d2019-02-20 22:19:54 -0800938#else
939void lru_add_drain_all(void)
940{
941 lru_add_drain();
942}
Ahmed S. Darwish6446a512020-08-27 13:40:38 +0200943#endif /* CONFIG_SMP */
Nick Piggin053837f2006-01-18 17:42:27 -0800944
Minchan Kimc8578a32021-07-13 12:24:14 -0700945static atomic_t lru_disable_count = ATOMIC_INIT(0);
946
947bool lru_cache_disabled(void)
948{
949 return atomic_read(&lru_disable_count) != 0;
950}
951
952void lru_cache_enable(void)
953{
954 atomic_dec(&lru_disable_count);
955}
956EXPORT_SYMBOL_GPL(lru_cache_enable);
Minchan Kim68a47312021-03-19 12:39:51 -0700957
958/*
959 * lru_cache_disable() needs to be called before we start compiling
960 * a list of pages to be migrated using isolate_lru_page().
961 * It drains pages on LRU cache and then disable on all cpus until
962 * lru_cache_enable is called.
963 *
964 * Must be paired with a call to lru_cache_enable().
965 */
966void lru_cache_disable(void)
967{
Minchan Kimc8578a32021-07-13 12:24:14 -0700968 /*
969 * If someone is already disabled lru_cache, just return with
970 * increasing the lru_disable_count.
971 */
972 if (atomic_inc_not_zero(&lru_disable_count))
973 return;
Minchan Kim68a47312021-03-19 12:39:51 -0700974#ifdef CONFIG_SMP
975 /*
976 * lru_add_drain_all in the force mode will schedule draining on
977 * all online CPUs so any calls of lru_cache_disabled wrapped by
978 * local_lock or preemption disabled would be ordered by that.
979 * The atomic operation doesn't need to have stronger ordering
980 * requirements because that is enforeced by the scheduling
981 * guarantees.
982 */
983 __lru_add_drain_all(true);
984#else
Minchan Kima9ac6ae2021-09-24 18:19:40 -0700985 lru_add_and_bh_lrus_drain();
Minchan Kim68a47312021-03-19 12:39:51 -0700986#endif
Minchan Kimc8578a32021-07-13 12:24:14 -0700987 atomic_inc(&lru_disable_count);
Minchan Kim68a47312021-03-19 12:39:51 -0700988}
Minchan Kimc8578a32021-07-13 12:24:14 -0700989EXPORT_SYMBOL_GPL(lru_cache_disable);
Minchan Kim68a47312021-03-19 12:39:51 -0700990
Michal Hockoaabfb572014-10-09 15:28:52 -0700991/**
Kirill A. Shutemovea1754a2016-04-01 15:29:48 +0300992 * release_pages - batched put_page()
Michal Hockoaabfb572014-10-09 15:28:52 -0700993 * @pages: array of pages to release
994 * @nr: number of pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 *
Michal Hockoaabfb572014-10-09 15:28:52 -0700996 * Decrement the reference count on all the pages in @pages. If it
997 * fell to zero, remove the page from the LRU and free it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 */
Mel Gormanc6f92f92017-11-15 17:37:55 -0800999void release_pages(struct page **pages, int nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
1001 int i;
Konstantin Khlebnikovcc598502012-01-10 15:07:04 -08001002 LIST_HEAD(pages_to_free);
Mel Gorman599d0c92016-07-28 15:45:31 -07001003 struct pglist_data *locked_pgdat = NULL;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001004 struct lruvec *lruvec;
Kees Cook3f649ab2020-06-03 13:09:38 -07001005 unsigned long flags;
1006 unsigned int lock_batch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 for (i = 0; i < nr; i++) {
1009 struct page *page = pages[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Michal Hockoaabfb572014-10-09 15:28:52 -07001011 /*
1012 * Make sure the IRQ-safe lock-holding time does not get
1013 * excessive with a continuous string of pages from the
Mel Gorman599d0c92016-07-28 15:45:31 -07001014 * same pgdat. The lock is held only if pgdat != NULL.
Michal Hockoaabfb572014-10-09 15:28:52 -07001015 */
Mel Gorman599d0c92016-07-28 15:45:31 -07001016 if (locked_pgdat && ++lock_batch == SWAP_CLUSTER_MAX) {
1017 spin_unlock_irqrestore(&locked_pgdat->lru_lock, flags);
1018 locked_pgdat = NULL;
Michal Hockoaabfb572014-10-09 15:28:52 -07001019 }
1020
Ralph Campbella9b576f2020-10-13 16:56:00 -07001021 page = compound_head(page);
Aaron Lu6fcb52a2016-10-07 17:00:08 -07001022 if (is_huge_zero_page(page))
Kirill A. Shutemovaa88b682016-04-28 16:18:27 -07001023 continue;
Kirill A. Shutemovaa88b682016-04-28 16:18:27 -07001024
Ira Weinyc5d6c452019-06-05 14:49:22 -07001025 if (is_zone_device_page(page)) {
Jérôme Glissedf6ad692017-09-08 16:12:24 -07001026 if (locked_pgdat) {
1027 spin_unlock_irqrestore(&locked_pgdat->lru_lock,
1028 flags);
1029 locked_pgdat = NULL;
1030 }
Ira Weinyc5d6c452019-06-05 14:49:22 -07001031 /*
1032 * ZONE_DEVICE pages that return 'false' from
Miaohe Lina3e7bea2020-10-13 16:52:15 -07001033 * page_is_devmap_managed() do not require special
Ira Weinyc5d6c452019-06-05 14:49:22 -07001034 * processing, and instead, expect a call to
1035 * put_page_testzero().
1036 */
John Hubbard07d80262020-01-30 22:12:28 -08001037 if (page_is_devmap_managed(page)) {
1038 put_devmap_managed_page(page);
Ira Weinyc5d6c452019-06-05 14:49:22 -07001039 continue;
John Hubbard07d80262020-01-30 22:12:28 -08001040 }
Jérôme Glissedf6ad692017-09-08 16:12:24 -07001041 }
1042
Nick Pigginb5810032005-10-29 18:16:12 -07001043 if (!put_page_testzero(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 continue;
1045
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -08001046 if (PageCompound(page)) {
Mel Gorman599d0c92016-07-28 15:45:31 -07001047 if (locked_pgdat) {
1048 spin_unlock_irqrestore(&locked_pgdat->lru_lock, flags);
1049 locked_pgdat = NULL;
Kirill A. Shutemovddc58f22016-01-15 16:52:56 -08001050 }
1051 __put_compound_page(page);
1052 continue;
1053 }
1054
Nick Piggin46453a62006-03-22 00:07:58 -08001055 if (PageLRU(page)) {
Mel Gorman599d0c92016-07-28 15:45:31 -07001056 struct pglist_data *pgdat = page_pgdat(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001057
Mel Gorman599d0c92016-07-28 15:45:31 -07001058 if (pgdat != locked_pgdat) {
1059 if (locked_pgdat)
1060 spin_unlock_irqrestore(&locked_pgdat->lru_lock,
Hisashi Hifumi902aaed2007-10-16 01:24:52 -07001061 flags);
Michal Hockoaabfb572014-10-09 15:28:52 -07001062 lock_batch = 0;
Mel Gorman599d0c92016-07-28 15:45:31 -07001063 locked_pgdat = pgdat;
1064 spin_lock_irqsave(&locked_pgdat->lru_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 }
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001066
Mel Gorman599d0c92016-07-28 15:45:31 -07001067 lruvec = mem_cgroup_page_lruvec(page, locked_pgdat);
Sasha Levin309381fea2014-01-23 15:52:54 -08001068 VM_BUG_ON_PAGE(!PageLRU(page), page);
Nick Piggin67453912006-03-22 00:08:00 -08001069 __ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001070 del_page_from_lru_list(page, lruvec, page_off_lru(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 }
Nick Piggin46453a62006-03-22 00:07:58 -08001072
Nicholas Piggin62906022016-12-25 13:00:30 +10001073 __ClearPageWaiters(page);
Mel Gormanc53954a2013-07-03 15:02:34 -07001074
Konstantin Khlebnikovcc598502012-01-10 15:07:04 -08001075 list_add(&page->lru, &pages_to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
Mel Gorman599d0c92016-07-28 15:45:31 -07001077 if (locked_pgdat)
1078 spin_unlock_irqrestore(&locked_pgdat->lru_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Johannes Weiner747db952014-08-08 14:19:24 -07001080 mem_cgroup_uncharge_list(&pages_to_free);
Mel Gorman2d4894b2017-11-15 17:37:59 -08001081 free_unref_page_list(&pages_to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
Miklos Szeredi0be85572010-10-27 15:34:46 -07001083EXPORT_SYMBOL(release_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085/*
1086 * The pages which we're about to release may be in the deferred lru-addition
1087 * queues. That would prevent them from really being freed right now. That's
1088 * OK from a correctness point of view but is inefficient - those pages may be
1089 * cache-warm and we want to give them back to the page allocator ASAP.
1090 *
1091 * So __pagevec_release() will drain those queues here. __pagevec_lru_add()
1092 * and __pagevec_lru_add_active() call release_pages() directly to avoid
1093 * mutual recursion.
1094 */
1095void __pagevec_release(struct pagevec *pvec)
1096{
Mel Gorman7f0b5fb2017-11-15 17:38:10 -08001097 if (!pvec->percpu_pvec_drained) {
Mel Gormand9ed0d02017-11-15 17:37:48 -08001098 lru_add_drain();
Mel Gorman7f0b5fb2017-11-15 17:38:10 -08001099 pvec->percpu_pvec_drained = true;
Mel Gormand9ed0d02017-11-15 17:37:48 -08001100 }
Mel Gormanc6f92f92017-11-15 17:37:55 -08001101 release_pages(pvec->pages, pagevec_count(pvec));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 pagevec_reinit(pvec);
1103}
Steve French7f285702005-11-01 10:22:55 -08001104EXPORT_SYMBOL(__pagevec_release);
1105
Hugh Dickins12d27102012-01-12 17:19:52 -08001106#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001107/* used by __split_huge_page_refcount() */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001108void lru_add_page_tail(struct page *page, struct page *page_tail,
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001109 struct lruvec *lruvec, struct list_head *list)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001110{
Sasha Levin309381fea2014-01-23 15:52:54 -08001111 VM_BUG_ON_PAGE(!PageHead(page), page);
1112 VM_BUG_ON_PAGE(PageCompound(page_tail), page);
1113 VM_BUG_ON_PAGE(PageLRU(page_tail), page);
Lance Roy35f3aa32018-10-04 23:45:47 -07001114 lockdep_assert_held(&lruvec_pgdat(lruvec)->lru_lock);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001115
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001116 if (!list)
1117 SetPageLRU(page_tail);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001118
Hugh Dickins12d27102012-01-12 17:19:52 -08001119 if (likely(PageLRU(page)))
1120 list_add_tail(&page_tail->lru, &page->lru);
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001121 else if (list) {
1122 /* page reclaim is reclaiming a huge page */
1123 get_page(page_tail);
1124 list_add_tail(&page_tail->lru, list);
1125 } else {
Hugh Dickins12d27102012-01-12 17:19:52 -08001126 /*
1127 * Head page has not yet been counted, as an hpage,
1128 * so we must account for each subpage individually.
1129 *
Yu Zhaoe7a1aaf2019-09-23 15:34:33 -07001130 * Put page_tail on the list at the correct position
1131 * so they all end up in order.
Hugh Dickins12d27102012-01-12 17:19:52 -08001132 */
Yu Zhaoe7a1aaf2019-09-23 15:34:33 -07001133 add_page_to_lru_list_tail(page_tail, lruvec,
1134 page_lru(page_tail));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001135 }
1136}
Hugh Dickins12d27102012-01-12 17:19:52 -08001137#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001138
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001139static void __pagevec_lru_add_fn(struct page *page, struct lruvec *lruvec,
1140 void *arg)
Shaohua Li3dd7ae82011-03-22 16:33:45 -07001141{
Shakeel Butt9c4e6b12018-02-21 14:45:28 -08001142 enum lru_list lru;
1143 int was_unevictable = TestClearPageUnevictable(page);
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001144 int nr_pages = thp_nr_pages(page);
Shaohua Li3dd7ae82011-03-22 16:33:45 -07001145
Sasha Levin309381fea2014-01-23 15:52:54 -08001146 VM_BUG_ON_PAGE(PageLRU(page), page);
Shaohua Li3dd7ae82011-03-22 16:33:45 -07001147
Shakeel Butt9c4e6b12018-02-21 14:45:28 -08001148 /*
1149 * Page becomes evictable in two ways:
Peng Fandae966d2019-05-13 17:19:26 -07001150 * 1) Within LRU lock [munlock_vma_page() and __munlock_pagevec()].
Shakeel Butt9c4e6b12018-02-21 14:45:28 -08001151 * 2) Before acquiring LRU lock to put the page to correct LRU and then
1152 * a) do PageLRU check with lock [check_move_unevictable_pages]
1153 * b) do PageLRU check before lock [clear_page_mlock]
1154 *
1155 * (1) & (2a) are ok as LRU lock will serialize them. For (2b), we need
1156 * following strict ordering:
1157 *
1158 * #0: __pagevec_lru_add_fn #1: clear_page_mlock
1159 *
1160 * SetPageLRU() TestClearPageMlocked()
1161 * smp_mb() // explicit ordering // above provides strict
1162 * // ordering
1163 * PageMlocked() PageLRU()
1164 *
1165 *
1166 * if '#1' does not observe setting of PG_lru by '#0' and fails
1167 * isolation, the explicit barrier will make sure that page_evictable
1168 * check will put the page in correct LRU. Without smp_mb(), SetPageLRU
1169 * can be reordered after PageMlocked check and can make '#1' to fail
1170 * the isolation of the page whose Mlocked bit is cleared (#0 is also
1171 * looking at the same page) and the evictable page will be stranded
1172 * in an unevictable LRU.
1173 */
Yang Shi9a9b6cc2020-04-01 21:06:23 -07001174 SetPageLRU(page);
1175 smp_mb__after_atomic();
Shakeel Butt9c4e6b12018-02-21 14:45:28 -08001176
1177 if (page_evictable(page)) {
1178 lru = page_lru(page);
Shakeel Butt9c4e6b12018-02-21 14:45:28 -08001179 if (was_unevictable)
Shakeel Butt5d91f312020-06-03 16:03:16 -07001180 __count_vm_events(UNEVICTABLE_PGRESCUED, nr_pages);
Shakeel Butt9c4e6b12018-02-21 14:45:28 -08001181 } else {
1182 lru = LRU_UNEVICTABLE;
1183 ClearPageActive(page);
1184 SetPageUnevictable(page);
1185 if (!was_unevictable)
Shakeel Butt5d91f312020-06-03 16:03:16 -07001186 __count_vm_events(UNEVICTABLE_PGCULLED, nr_pages);
Shakeel Butt9c4e6b12018-02-21 14:45:28 -08001187 }
1188
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001189 add_page_to_lru_list(page, lruvec, lru);
Mel Gorman24b7e582014-08-06 16:07:11 -07001190 trace_mm_lru_insertion(page, lru);
Shaohua Li3dd7ae82011-03-22 16:33:45 -07001191}
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 * Add the passed pages to the LRU, then drop the caller's refcount
1195 * on them. Reinitialises the caller's pagevec.
1196 */
Mel Gormana0b8cab32013-07-03 15:02:32 -07001197void __pagevec_lru_add(struct pagevec *pvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Mel Gormana0b8cab32013-07-03 15:02:32 -07001199 pagevec_lru_move_fn(pvec, __pagevec_lru_add_fn, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001203 * pagevec_lookup_entries - gang pagecache lookup
1204 * @pvec: Where the resulting entries are placed
1205 * @mapping: The address_space to search
1206 * @start: The starting entry index
Mike Rapoportcb6f0f32018-02-21 14:45:50 -08001207 * @nr_entries: The maximum number of pages
Johannes Weiner0cd61442014-04-03 14:47:46 -07001208 * @indices: The cache indices corresponding to the entries in @pvec
1209 *
1210 * pagevec_lookup_entries() will search for and return a group of up
Mike Rapoportf144c392018-02-06 15:42:16 -08001211 * to @nr_pages pages and shadow entries in the mapping. All
Johannes Weiner0cd61442014-04-03 14:47:46 -07001212 * entries are placed in @pvec. pagevec_lookup_entries() takes a
1213 * reference against actual pages in @pvec.
1214 *
1215 * The search returns a group of mapping-contiguous entries with
1216 * ascending indexes. There may be holes in the indices due to
1217 * not-present entries.
1218 *
Hugh Dickins71725ed2020-04-06 20:07:57 -07001219 * Only one subpage of a Transparent Huge Page is returned in one call:
1220 * allowing truncate_inode_pages_range() to evict the whole THP without
1221 * cycling through a pagevec of extra references.
1222 *
Johannes Weiner0cd61442014-04-03 14:47:46 -07001223 * pagevec_lookup_entries() returns the number of entries which were
1224 * found.
1225 */
1226unsigned pagevec_lookup_entries(struct pagevec *pvec,
1227 struct address_space *mapping,
Randy Dunlape02a9f02018-01-31 16:21:19 -08001228 pgoff_t start, unsigned nr_entries,
Johannes Weiner0cd61442014-04-03 14:47:46 -07001229 pgoff_t *indices)
1230{
Randy Dunlape02a9f02018-01-31 16:21:19 -08001231 pvec->nr = find_get_entries(mapping, start, nr_entries,
Johannes Weiner0cd61442014-04-03 14:47:46 -07001232 pvec->pages, indices);
1233 return pagevec_count(pvec);
1234}
1235
1236/**
1237 * pagevec_remove_exceptionals - pagevec exceptionals pruning
1238 * @pvec: The pagevec to prune
1239 *
1240 * pagevec_lookup_entries() fills both pages and exceptional radix
1241 * tree entries into the pagevec. This function prunes all
1242 * exceptionals from @pvec without leaving holes, so that it can be
1243 * passed on to page-only pagevec operations.
1244 */
1245void pagevec_remove_exceptionals(struct pagevec *pvec)
1246{
1247 int i, j;
1248
1249 for (i = 0, j = 0; i < pagevec_count(pvec); i++) {
1250 struct page *page = pvec->pages[i];
Matthew Wilcox3159f942017-11-03 13:30:42 -04001251 if (!xa_is_value(page))
Johannes Weiner0cd61442014-04-03 14:47:46 -07001252 pvec->pages[j++] = page;
1253 }
1254 pvec->nr = j;
1255}
1256
1257/**
Jan Karab947cee2017-09-06 16:21:21 -07001258 * pagevec_lookup_range - gang pagecache lookup
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 * @pvec: Where the resulting pages are placed
1260 * @mapping: The address_space to search
1261 * @start: The starting page index
Jan Karab947cee2017-09-06 16:21:21 -07001262 * @end: The final page index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 *
Randy Dunlape02a9f02018-01-31 16:21:19 -08001264 * pagevec_lookup_range() will search for & return a group of up to PAGEVEC_SIZE
Jan Karab947cee2017-09-06 16:21:21 -07001265 * pages in the mapping starting from index @start and upto index @end
1266 * (inclusive). The pages are placed in @pvec. pagevec_lookup() takes a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 * reference against the pages in @pvec.
1268 *
1269 * The search returns a group of mapping-contiguous pages with ascending
Jan Karad72dc8a2017-09-06 16:21:18 -07001270 * indexes. There may be holes in the indices due to not-present pages. We
1271 * also update @start to index the next page for the traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 *
Jan Karab947cee2017-09-06 16:21:21 -07001273 * pagevec_lookup_range() returns the number of pages which were found. If this
Randy Dunlape02a9f02018-01-31 16:21:19 -08001274 * number is smaller than PAGEVEC_SIZE, the end of specified range has been
Jan Karab947cee2017-09-06 16:21:21 -07001275 * reached.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 */
Jan Karab947cee2017-09-06 16:21:21 -07001277unsigned pagevec_lookup_range(struct pagevec *pvec,
Jan Kara397162f2017-09-06 16:21:43 -07001278 struct address_space *mapping, pgoff_t *start, pgoff_t end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279{
Jan Kara397162f2017-09-06 16:21:43 -07001280 pvec->nr = find_get_pages_range(mapping, start, end, PAGEVEC_SIZE,
Jan Karab947cee2017-09-06 16:21:21 -07001281 pvec->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 return pagevec_count(pvec);
1283}
Jan Karab947cee2017-09-06 16:21:21 -07001284EXPORT_SYMBOL(pagevec_lookup_range);
Christoph Hellwig78539fd2006-01-11 20:47:41 +11001285
Jan Kara72b045a2017-11-15 17:34:33 -08001286unsigned pagevec_lookup_range_tag(struct pagevec *pvec,
1287 struct address_space *mapping, pgoff_t *index, pgoff_t end,
Matthew Wilcox10bbd232017-12-05 17:30:38 -05001288 xa_mark_t tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
Jan Kara72b045a2017-11-15 17:34:33 -08001290 pvec->nr = find_get_pages_range_tag(mapping, index, end, tag,
Jan Kara67fd7072017-11-15 17:35:19 -08001291 PAGEVEC_SIZE, pvec->pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return pagevec_count(pvec);
1293}
Jan Kara72b045a2017-11-15 17:34:33 -08001294EXPORT_SYMBOL(pagevec_lookup_range_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Jan Kara93d3b712017-11-15 17:35:12 -08001296unsigned pagevec_lookup_range_nr_tag(struct pagevec *pvec,
1297 struct address_space *mapping, pgoff_t *index, pgoff_t end,
Matthew Wilcox10bbd232017-12-05 17:30:38 -05001298 xa_mark_t tag, unsigned max_pages)
Jan Kara93d3b712017-11-15 17:35:12 -08001299{
1300 pvec->nr = find_get_pages_range_tag(mapping, index, end, tag,
1301 min_t(unsigned int, max_pages, PAGEVEC_SIZE), pvec->pages);
1302 return pagevec_count(pvec);
1303}
1304EXPORT_SYMBOL(pagevec_lookup_range_nr_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305/*
1306 * Perform any setup for the swap system
1307 */
1308void __init swap_setup(void)
1309{
Arun KSca79b0c2018-12-28 00:34:29 -08001310 unsigned long megs = totalram_pages() >> (20 - PAGE_SHIFT);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07001311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 /* Use a smaller cluster for small-memory machines */
1313 if (megs < 16)
1314 page_cluster = 2;
1315 else
1316 page_cluster = 3;
1317 /*
1318 * Right now other parts of the system means that we
1319 * _really_ don't want to cluster much more
1320 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}
John Hubbard07d80262020-01-30 22:12:28 -08001322
1323#ifdef CONFIG_DEV_PAGEMAP_OPS
1324void put_devmap_managed_page(struct page *page)
1325{
1326 int count;
1327
1328 if (WARN_ON_ONCE(!page_is_devmap_managed(page)))
1329 return;
1330
1331 count = page_ref_dec_return(page);
1332
1333 /*
1334 * devmap page refcounts are 1-based, rather than 0-based: if
1335 * refcount is 1, then the page is free and the refcount is
1336 * stable because nobody holds a reference on the page.
1337 */
1338 if (count == 1)
1339 free_devmap_managed_page(page);
1340 else if (!count)
1341 __put_page(page);
1342}
1343EXPORT_SYMBOL(put_devmap_managed_page);
1344#endif