]> Git Repo - linux.git/blame - mm/page_io.c
Merge tag 'spi-v6.12' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi
[linux.git] / mm / page_io.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * linux/mm/page_io.c
4 *
5 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
6 *
7 * Swap reorganised 29.12.95,
8 * Asynchronous swapping added 30.12.95. Stephen Tweedie
9 * Removed race in async swapping. 14.4.1996. Bruno Haible
10 * Add swap of shared pages through the page cache. 20.2.1998. Stephen Tweedie
11 * Always use brw_page, life becomes simpler. 12 May 1998 Eric Biederman
12 */
13
14#include <linux/mm.h>
15#include <linux/kernel_stat.h>
5a0e3ad6 16#include <linux/gfp.h>
1da177e4
LT
17#include <linux/pagemap.h>
18#include <linux/swap.h>
19#include <linux/bio.h>
20#include <linux/swapops.h>
21#include <linux/writeback.h>
b430e9d1 22#include <linux/blkdev.h>
93779069 23#include <linux/psi.h>
e2e40f2c 24#include <linux/uio.h>
b0ba2d0f 25#include <linux/sched/task.h>
a3d5dc90 26#include <linux/delayacct.h>
42c06a0e 27#include <linux/zswap.h>
014bb1de 28#include "swap.h"
1da177e4 29
3222d8c2 30static void __end_swap_bio_write(struct bio *bio)
1da177e4 31{
a3ed1e9b 32 struct folio *folio = bio_first_folio_all(bio);
1da177e4 33
4e4cbee9 34 if (bio->bi_status) {
6ddab3b9
PZ
35 /*
36 * We failed to write the page out to swap-space.
37 * Re-dirty the page in order to avoid it being reclaimed.
38 * Also print a dire warning that things will go BAD (tm)
39 * very quickly.
40 *
575ced1c 41 * Also clear PG_reclaim to avoid folio_rotate_reclaimable()
6ddab3b9 42 */
a3ed1e9b 43 folio_mark_dirty(folio);
25eaab43
GD
44 pr_alert_ratelimited("Write-error on swap-device (%u:%u:%llu)\n",
45 MAJOR(bio_dev(bio)), MINOR(bio_dev(bio)),
46 (unsigned long long)bio->bi_iter.bi_sector);
a3ed1e9b 47 folio_clear_reclaim(folio);
6ddab3b9 48 }
a3ed1e9b 49 folio_end_writeback(folio);
3222d8c2
CH
50}
51
52static void end_swap_bio_write(struct bio *bio)
53{
54 __end_swap_bio_write(bio);
1da177e4 55 bio_put(bio);
1da177e4
LT
56}
57
9b4e30bd 58static void __end_swap_bio_read(struct bio *bio)
1da177e4 59{
bc74b53f 60 struct folio *folio = bio_first_folio_all(bio);
1da177e4 61
4e4cbee9 62 if (bio->bi_status) {
25eaab43
GD
63 pr_alert_ratelimited("Read-error on swap-device (%u:%u:%llu)\n",
64 MAJOR(bio_dev(bio)), MINOR(bio_dev(bio)),
65 (unsigned long long)bio->bi_iter.bi_sector);
9b4e30bd 66 } else {
bc74b53f 67 folio_mark_uptodate(folio);
1da177e4 68 }
bc74b53f 69 folio_unlock(folio);
9b4e30bd
CH
70}
71
72static void end_swap_bio_read(struct bio *bio)
73{
74 __end_swap_bio_read(bio);
1da177e4 75 bio_put(bio);
1da177e4
LT
76}
77
a509bc1a
MG
78int generic_swapfile_activate(struct swap_info_struct *sis,
79 struct file *swap_file,
80 sector_t *span)
81{
82 struct address_space *mapping = swap_file->f_mapping;
83 struct inode *inode = mapping->host;
84 unsigned blocks_per_page;
85 unsigned long page_no;
86 unsigned blkbits;
87 sector_t probe_block;
88 sector_t last_block;
89 sector_t lowest_block = -1;
90 sector_t highest_block = 0;
91 int nr_extents = 0;
92 int ret;
93
94 blkbits = inode->i_blkbits;
95 blocks_per_page = PAGE_SIZE >> blkbits;
96
97 /*
4efaceb1 98 * Map all the blocks into the extent tree. This code doesn't try
a509bc1a
MG
99 * to be very smart.
100 */
101 probe_block = 0;
102 page_no = 0;
103 last_block = i_size_read(inode) >> blkbits;
104 while ((probe_block + blocks_per_page) <= last_block &&
105 page_no < sis->max) {
106 unsigned block_in_page;
107 sector_t first_block;
108
7e4411bf
MP
109 cond_resched();
110
30460e1e
CM
111 first_block = probe_block;
112 ret = bmap(inode, &first_block);
113 if (ret || !first_block)
a509bc1a
MG
114 goto bad_bmap;
115
116 /*
117 * It must be PAGE_SIZE aligned on-disk
118 */
119 if (first_block & (blocks_per_page - 1)) {
120 probe_block++;
121 goto reprobe;
122 }
123
124 for (block_in_page = 1; block_in_page < blocks_per_page;
125 block_in_page++) {
126 sector_t block;
127
30460e1e
CM
128 block = probe_block + block_in_page;
129 ret = bmap(inode, &block);
130 if (ret || !block)
a509bc1a 131 goto bad_bmap;
30460e1e 132
a509bc1a
MG
133 if (block != first_block + block_in_page) {
134 /* Discontiguity */
135 probe_block++;
136 goto reprobe;
137 }
138 }
139
140 first_block >>= (PAGE_SHIFT - blkbits);
141 if (page_no) { /* exclude the header page */
142 if (first_block < lowest_block)
143 lowest_block = first_block;
144 if (first_block > highest_block)
145 highest_block = first_block;
146 }
147
148 /*
149 * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
150 */
151 ret = add_swap_extent(sis, page_no, 1, first_block);
152 if (ret < 0)
153 goto out;
154 nr_extents += ret;
155 page_no++;
156 probe_block += blocks_per_page;
157reprobe:
158 continue;
159 }
160 ret = nr_extents;
161 *span = 1 + highest_block - lowest_block;
162 if (page_no == 0)
163 page_no = 1; /* force Empty message */
164 sis->max = page_no;
165 sis->pages = page_no - 1;
166 sis->highest_bit = page_no - 1;
167out:
168 return ret;
169bad_bmap:
1170532b 170 pr_err("swapon: swapfile has holes\n");
a509bc1a
MG
171 ret = -EINVAL;
172 goto out;
173}
174
1da177e4
LT
175/*
176 * We may have stale swap cache pages in memory: notice
177 * them here and get rid of the unnecessary final write.
178 */
179int swap_writepage(struct page *page, struct writeback_control *wbc)
180{
71fa1a53 181 struct folio *folio = page_folio(page);
e3e2762b 182 int ret;
1da177e4 183
71fa1a53
MWO
184 if (folio_free_swap(folio)) {
185 folio_unlock(folio);
e3e2762b 186 return 0;
1da177e4 187 }
8a84802e
SP
188 /*
189 * Arch code may have to preserve more data than just the page
190 * contents, e.g. memory tags.
191 */
f238b8c3 192 ret = arch_prepare_to_swap(folio);
8a84802e 193 if (ret) {
71fa1a53
MWO
194 folio_mark_dirty(folio);
195 folio_unlock(folio);
e3e2762b 196 return ret;
8a84802e 197 }
34f4c198 198 if (zswap_store(folio)) {
71fa1a53 199 folio_unlock(folio);
e3e2762b 200 return 0;
38b5faf4 201 }
501a06fe
NP
202 if (!mem_cgroup_zswap_writeback_enabled(folio_memcg(folio))) {
203 folio_mark_dirty(folio);
204 return AOP_WRITEPAGE_ACTIVATE;
205 }
206
b99b4e0d 207 __swap_writepage(folio, wbc);
e3e2762b 208 return 0;
2f772e6c
SJ
209}
210
9b72b134 211static inline void count_swpout_vm_event(struct folio *folio)
225311a4
YH
212{
213#ifdef CONFIG_TRANSPARENT_HUGEPAGE
811244a5
XH
214 if (unlikely(folio_test_pmd_mappable(folio))) {
215 count_memcg_folio_events(folio, THP_SWPOUT, 1);
225311a4 216 count_vm_event(THP_SWPOUT);
811244a5 217 }
0d648dd5 218 count_mthp_stat(folio_order(folio), MTHP_STAT_SWPOUT);
225311a4 219#endif
9b72b134 220 count_vm_events(PSWPOUT, folio_nr_pages(folio));
225311a4
YH
221}
222
a18b9b15 223#if defined(CONFIG_MEMCG) && defined(CONFIG_BLK_CGROUP)
98630cfd 224static void bio_associate_blkg_from_page(struct bio *bio, struct folio *folio)
a18b9b15
CH
225{
226 struct cgroup_subsys_state *css;
bcfe06bf 227 struct mem_cgroup *memcg;
a18b9b15 228
98630cfd 229 memcg = folio_memcg(folio);
bcfe06bf 230 if (!memcg)
a18b9b15
CH
231 return;
232
233 rcu_read_lock();
bcfe06bf 234 css = cgroup_e_css(memcg->css.cgroup, &io_cgrp_subsys);
a18b9b15
CH
235 bio_associate_blkg_from_css(bio, css);
236 rcu_read_unlock();
237}
238#else
98630cfd 239#define bio_associate_blkg_from_page(bio, folio) do { } while (0)
a18b9b15
CH
240#endif /* CONFIG_MEMCG && CONFIG_BLK_CGROUP */
241
e1209d3a
N
242struct swap_iocb {
243 struct kiocb iocb;
5169b844
N
244 struct bio_vec bvec[SWAP_CLUSTER_MAX];
245 int pages;
a1a0dfd5 246 int len;
e1209d3a
N
247};
248static mempool_t *sio_pool;
249
250int sio_pool_init(void)
2f772e6c 251{
e1209d3a
N
252 if (!sio_pool) {
253 mempool_t *pool = mempool_create_kmalloc_pool(
254 SWAP_CLUSTER_MAX, sizeof(struct swap_iocb));
255 if (cmpxchg(&sio_pool, NULL, pool))
256 mempool_destroy(pool);
257 }
258 if (!sio_pool)
259 return -ENOMEM;
260 return 0;
261}
62c230bc 262
7eadabc0
N
263static void sio_write_complete(struct kiocb *iocb, long ret)
264{
265 struct swap_iocb *sio = container_of(iocb, struct swap_iocb, iocb);
5169b844 266 struct page *page = sio->bvec[0].bv_page;
2282679f 267 int p;
62c230bc 268
a1a0dfd5 269 if (ret != sio->len) {
7eadabc0
N
270 /*
271 * In the case of swap-over-nfs, this can be a
272 * temporary failure if the system has limited
273 * memory for allocating transmit buffers.
274 * Mark the page dirty and avoid
275 * folio_rotate_reclaimable but rate-limit the
276 * messages but do not flag PageError like
277 * the normal direct-to-bio case as it could
278 * be temporary.
279 */
7eadabc0 280 pr_err_ratelimited("Write error %ld on dio swapfile (%llu)\n",
545ebe71 281 ret, swap_dev_pos(page_swap_entry(page)));
2282679f
N
282 for (p = 0; p < sio->pages; p++) {
283 page = sio->bvec[p].bv_page;
2d30d31e 284 set_page_dirty(page);
0cdc444a 285 ClearPageReclaim(page);
62c230bc 286 }
62c230bc
MG
287 }
288
2282679f
N
289 for (p = 0; p < sio->pages; p++)
290 end_page_writeback(sio->bvec[p].bv_page);
291
7eadabc0
N
292 mempool_free(sio, sio_pool);
293}
294
bfcd44d5 295static void swap_writepage_fs(struct folio *folio, struct writeback_control *wbc)
7eadabc0 296{
2282679f 297 struct swap_iocb *sio = NULL;
bfcd44d5 298 struct swap_info_struct *sis = swp_swap_info(folio->swap);
7eadabc0 299 struct file *swap_file = sis->swap_file;
545ebe71 300 loff_t pos = swap_dev_pos(folio->swap);
7eadabc0 301
bfcd44d5
MWO
302 count_swpout_vm_event(folio);
303 folio_start_writeback(folio);
304 folio_unlock(folio);
2282679f
N
305 if (wbc->swap_plug)
306 sio = *wbc->swap_plug;
307 if (sio) {
308 if (sio->iocb.ki_filp != swap_file ||
a1a0dfd5 309 sio->iocb.ki_pos + sio->len != pos) {
2282679f
N
310 swap_write_unplug(sio);
311 sio = NULL;
312 }
313 }
314 if (!sio) {
315 sio = mempool_alloc(sio_pool, GFP_NOIO);
316 init_sync_kiocb(&sio->iocb, swap_file);
317 sio->iocb.ki_complete = sio_write_complete;
318 sio->iocb.ki_pos = pos;
319 sio->pages = 0;
a1a0dfd5 320 sio->len = 0;
2282679f 321 }
bfcd44d5
MWO
322 bvec_set_folio(&sio->bvec[sio->pages], folio, folio_size(folio), 0);
323 sio->len += folio_size(folio);
2282679f
N
324 sio->pages += 1;
325 if (sio->pages == ARRAY_SIZE(sio->bvec) || !wbc->swap_plug) {
326 swap_write_unplug(sio);
327 sio = NULL;
328 }
329 if (wbc->swap_plug)
330 *wbc->swap_plug = sio;
7eadabc0
N
331}
332
6de62c7b 333static void swap_writepage_bdev_sync(struct folio *folio,
05cda97e 334 struct writeback_control *wbc, struct swap_info_struct *sis)
2f772e6c 335{
3222d8c2
CH
336 struct bio_vec bv;
337 struct bio bio;
62c230bc 338
3222d8c2
CH
339 bio_init(&bio, sis->bdev, &bv, 1,
340 REQ_OP_WRITE | REQ_SWAP | wbc_to_write_flags(wbc));
3a61e6f6 341 bio.bi_iter.bi_sector = swap_folio_sector(folio);
6de62c7b 342 bio_add_folio_nofail(&bio, folio, folio_size(folio), 0);
62c230bc 343
98630cfd 344 bio_associate_blkg_from_page(&bio, folio);
9b72b134 345 count_swpout_vm_event(folio);
3222d8c2 346
f54fcaab
Z
347 folio_start_writeback(folio);
348 folio_unlock(folio);
3222d8c2
CH
349
350 submit_bio_wait(&bio);
351 __end_swap_bio_write(&bio);
352}
353
ee1b1d9b 354static void swap_writepage_bdev_async(struct folio *folio,
3222d8c2
CH
355 struct writeback_control *wbc, struct swap_info_struct *sis)
356{
357 struct bio *bio;
dd6bd0d9 358
07888c66
CH
359 bio = bio_alloc(sis->bdev, 1,
360 REQ_OP_WRITE | REQ_SWAP | wbc_to_write_flags(wbc),
361 GFP_NOIO);
3a61e6f6 362 bio->bi_iter.bi_sector = swap_folio_sector(folio);
cf1e3fe4 363 bio->bi_end_io = end_swap_bio_write;
ee1b1d9b 364 bio_add_folio_nofail(bio, folio, folio_size(folio), 0);
48d15436 365
98630cfd 366 bio_associate_blkg_from_page(bio, folio);
9b72b134 367 count_swpout_vm_event(folio);
2675251d
Z
368 folio_start_writeback(folio);
369 folio_unlock(folio);
4e49ea4a 370 submit_bio(bio);
1da177e4 371}
548d9782 372
b99b4e0d 373void __swap_writepage(struct folio *folio, struct writeback_control *wbc)
05cda97e 374{
b99b4e0d 375 struct swap_info_struct *sis = swp_swap_info(folio->swap);
05cda97e 376
b99b4e0d 377 VM_BUG_ON_FOLIO(!folio_test_swapcache(folio), folio);
05cda97e
CH
378 /*
379 * ->flags can be updated non-atomicially (scan_swap_map_slots),
380 * but that will never affect SWP_FS_OPS, so the data_race
381 * is safe.
382 */
383 if (data_race(sis->flags & SWP_FS_OPS))
bfcd44d5 384 swap_writepage_fs(folio, wbc);
7b7aca6d
PL
385 /*
386 * ->flags can be updated non-atomicially (scan_swap_map_slots),
387 * but that will never affect SWP_SYNCHRONOUS_IO, so the data_race
388 * is safe.
389 */
390 else if (data_race(sis->flags & SWP_SYNCHRONOUS_IO))
6de62c7b 391 swap_writepage_bdev_sync(folio, wbc, sis);
05cda97e 392 else
ee1b1d9b 393 swap_writepage_bdev_async(folio, wbc, sis);
1da177e4
LT
394}
395
2282679f
N
396void swap_write_unplug(struct swap_iocb *sio)
397{
398 struct iov_iter from;
399 struct address_space *mapping = sio->iocb.ki_filp->f_mapping;
400 int ret;
401
de4eda9d 402 iov_iter_bvec(&from, ITER_SOURCE, sio->bvec, sio->pages, sio->len);
2282679f
N
403 ret = mapping->a_ops->swap_rw(&sio->iocb, &from);
404 if (ret != -EIOCBQUEUED)
405 sio_write_complete(&sio->iocb, ret);
406}
407
e1209d3a
N
408static void sio_read_complete(struct kiocb *iocb, long ret)
409{
410 struct swap_iocb *sio = container_of(iocb, struct swap_iocb, iocb);
5169b844 411 int p;
e1209d3a 412
a1a0dfd5 413 if (ret == sio->len) {
5169b844 414 for (p = 0; p < sio->pages; p++) {
6a8c0687 415 struct folio *folio = page_folio(sio->bvec[p].bv_page);
5169b844 416
6a8c0687
Z
417 folio_mark_uptodate(folio);
418 folio_unlock(folio);
5169b844
N
419 }
420 count_vm_events(PSWPIN, sio->pages);
e1209d3a 421 } else {
5169b844 422 for (p = 0; p < sio->pages; p++) {
6a8c0687 423 struct folio *folio = page_folio(sio->bvec[p].bv_page);
5169b844 424
6a8c0687 425 folio_unlock(folio);
5169b844
N
426 }
427 pr_alert_ratelimited("Read-error on swap-device\n");
e1209d3a 428 }
e1209d3a
N
429 mempool_free(sio, sio_pool);
430}
431
c9bdf768 432static void swap_read_folio_fs(struct folio *folio, struct swap_iocb **plug)
e1209d3a 433{
64a24e55 434 struct swap_info_struct *sis = swp_swap_info(folio->swap);
5169b844 435 struct swap_iocb *sio = NULL;
545ebe71 436 loff_t pos = swap_dev_pos(folio->swap);
e1209d3a 437
5169b844
N
438 if (plug)
439 sio = *plug;
440 if (sio) {
441 if (sio->iocb.ki_filp != sis->swap_file ||
a1a0dfd5 442 sio->iocb.ki_pos + sio->len != pos) {
5169b844
N
443 swap_read_unplug(sio);
444 sio = NULL;
445 }
446 }
447 if (!sio) {
448 sio = mempool_alloc(sio_pool, GFP_KERNEL);
449 init_sync_kiocb(&sio->iocb, sis->swap_file);
450 sio->iocb.ki_pos = pos;
451 sio->iocb.ki_complete = sio_read_complete;
452 sio->pages = 0;
a1a0dfd5 453 sio->len = 0;
5169b844 454 }
64a24e55
MWO
455 bvec_set_folio(&sio->bvec[sio->pages], folio, folio_size(folio), 0);
456 sio->len += folio_size(folio);
5169b844
N
457 sio->pages += 1;
458 if (sio->pages == ARRAY_SIZE(sio->bvec) || !plug) {
459 swap_read_unplug(sio);
460 sio = NULL;
461 }
462 if (plug)
463 *plug = sio;
e1209d3a
N
464}
465
c9bdf768 466static void swap_read_folio_bdev_sync(struct folio *folio,
14bd75f5 467 struct swap_info_struct *sis)
1da177e4 468{
9b4e30bd
CH
469 struct bio_vec bv;
470 struct bio bio;
62c230bc 471
9b4e30bd 472 bio_init(&bio, sis->bdev, &bv, 1, REQ_OP_READ);
3a61e6f6 473 bio.bi_iter.bi_sector = swap_folio_sector(folio);
2c184d82 474 bio_add_folio_nofail(&bio, folio, folio_size(folio), 0);
b0ba2d0f
TH
475 /*
476 * Keep this task valid during swap readpage because the oom killer may
477 * attempt to access it in the page fault retry time check.
478 */
9b4e30bd 479 get_task_struct(current);
f8891e5e 480 count_vm_event(PSWPIN);
9b4e30bd
CH
481 submit_bio_wait(&bio);
482 __end_swap_bio_read(&bio);
483 put_task_struct(current);
484}
485
c9bdf768 486static void swap_read_folio_bdev_async(struct folio *folio,
9b4e30bd 487 struct swap_info_struct *sis)
1da177e4
LT
488{
489 struct bio *bio;
23955622 490
9b4e30bd 491 bio = bio_alloc(sis->bdev, 1, REQ_OP_READ, GFP_KERNEL);
3a61e6f6 492 bio->bi_iter.bi_sector = swap_folio_sector(folio);
9b4e30bd 493 bio->bi_end_io = end_swap_bio_read;
3c3ebd82 494 bio_add_folio_nofail(bio, folio, folio_size(folio), 0);
9b4e30bd
CH
495 count_vm_event(PSWPIN);
496 submit_bio(bio);
14bd75f5
CH
497}
498
b2d1f38b 499void swap_read_folio(struct folio *folio, struct swap_iocb **plug)
14bd75f5 500{
c9bdf768 501 struct swap_info_struct *sis = swp_swap_info(folio->swap);
b2d1f38b 502 bool synchronous = sis->flags & SWP_SYNCHRONOUS_IO;
fbcec6a3 503 bool workingset = folio_test_workingset(folio);
93779069 504 unsigned long pflags;
3a9bb7b1 505 bool in_thrashing;
1da177e4 506
fbcec6a3
MWO
507 VM_BUG_ON_FOLIO(!folio_test_swapcache(folio) && !synchronous, folio);
508 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
509 VM_BUG_ON_FOLIO(folio_test_uptodate(folio), folio);
93779069
MK
510
511 /*
3a9bb7b1
YY
512 * Count submission time as memory stall and delay. When the device
513 * is congested, or the submitting cgroup IO-throttled, submission
514 * can be a significant part of overall IO time.
93779069 515 */
3a9bb7b1
YY
516 if (workingset) {
517 delayacct_thrashing_start(&in_thrashing);
d8c47cc7 518 psi_memstall_enter(&pflags);
3a9bb7b1 519 }
a3d5dc90 520 delayacct_swapin_start();
93779069 521
ca54f6d8 522 if (zswap_load(folio)) {
fbcec6a3 523 folio_unlock(folio);
14bd75f5 524 } else if (data_race(sis->flags & SWP_FS_OPS)) {
c9bdf768 525 swap_read_folio_fs(folio, plug);
b2d1f38b 526 } else if (synchronous) {
c9bdf768 527 swap_read_folio_bdev_sync(folio, sis);
14bd75f5 528 } else {
c9bdf768 529 swap_read_folio_bdev_async(folio, sis);
23955622 530 }
23955622 531
3a9bb7b1
YY
532 if (workingset) {
533 delayacct_thrashing_end(&in_thrashing);
d8c47cc7 534 psi_memstall_leave(&pflags);
3a9bb7b1 535 }
a3d5dc90 536 delayacct_swapin_end();
1da177e4 537}
62c230bc 538
5169b844 539void __swap_read_unplug(struct swap_iocb *sio)
62c230bc 540{
5169b844
N
541 struct iov_iter from;
542 struct address_space *mapping = sio->iocb.ki_filp->f_mapping;
543 int ret;
cc30c5d6 544
de4eda9d 545 iov_iter_bvec(&from, ITER_DEST, sio->bvec, sio->pages, sio->len);
5169b844
N
546 ret = mapping->a_ops->swap_rw(&sio->iocb, &from);
547 if (ret != -EIOCBQUEUED)
548 sio_read_complete(&sio->iocb, ret);
62c230bc 549}
This page took 1.237189 seconds and 4 git commands to generate.