1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
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
15 #include <linux/kernel_stat.h>
16 #include <linux/gfp.h>
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>
22 #include <linux/blkdev.h>
23 #include <linux/psi.h>
24 #include <linux/uio.h>
25 #include <linux/sched/task.h>
26 #include <linux/delayacct.h>
27 #include <linux/zswap.h>
30 static void __end_swap_bio_write(struct bio *bio)
32 struct folio *folio = bio_first_folio_all(bio);
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)
41 * Also clear PG_reclaim to avoid folio_rotate_reclaimable()
43 folio_mark_dirty(folio);
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);
47 folio_clear_reclaim(folio);
49 folio_end_writeback(folio);
52 static void end_swap_bio_write(struct bio *bio)
54 __end_swap_bio_write(bio);
58 static void __end_swap_bio_read(struct bio *bio)
60 struct folio *folio = bio_first_folio_all(bio);
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);
67 folio_mark_uptodate(folio);
72 static void end_swap_bio_read(struct bio *bio)
74 __end_swap_bio_read(bio);
78 int generic_swapfile_activate(struct swap_info_struct *sis,
79 struct file *swap_file,
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;
89 sector_t lowest_block = -1;
90 sector_t highest_block = 0;
94 blkbits = inode->i_blkbits;
95 blocks_per_page = PAGE_SIZE >> blkbits;
98 * Map all the blocks into the extent tree. This code doesn't try
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;
111 first_block = probe_block;
112 ret = bmap(inode, &first_block);
113 if (ret || !first_block)
117 * It must be PAGE_SIZE aligned on-disk
119 if (first_block & (blocks_per_page - 1)) {
124 for (block_in_page = 1; block_in_page < blocks_per_page;
128 block = probe_block + block_in_page;
129 ret = bmap(inode, &block);
133 if (block != first_block + block_in_page) {
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;
149 * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
151 ret = add_swap_extent(sis, page_no, 1, first_block);
156 probe_block += blocks_per_page;
161 *span = 1 + highest_block - lowest_block;
163 page_no = 1; /* force Empty message */
165 sis->pages = page_no - 1;
166 sis->highest_bit = page_no - 1;
170 pr_err("swapon: swapfile has holes\n");
176 * We may have stale swap cache pages in memory: notice
177 * them here and get rid of the unnecessary final write.
179 int swap_writepage(struct page *page, struct writeback_control *wbc)
181 struct folio *folio = page_folio(page);
184 if (folio_free_swap(folio)) {
189 * Arch code may have to preserve more data than just the page
190 * contents, e.g. memory tags.
192 ret = arch_prepare_to_swap(folio);
194 folio_mark_dirty(folio);
198 if (zswap_store(folio)) {
199 folio_start_writeback(folio);
201 folio_end_writeback(folio);
204 if (!mem_cgroup_zswap_writeback_enabled(folio_memcg(folio))) {
205 folio_mark_dirty(folio);
206 return AOP_WRITEPAGE_ACTIVATE;
209 __swap_writepage(folio, wbc);
213 static inline void count_swpout_vm_event(struct folio *folio)
215 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
216 if (unlikely(folio_test_pmd_mappable(folio))) {
217 count_memcg_folio_events(folio, THP_SWPOUT, 1);
218 count_vm_event(THP_SWPOUT);
220 count_mthp_stat(folio_order(folio), MTHP_STAT_SWPOUT);
222 count_vm_events(PSWPOUT, folio_nr_pages(folio));
225 #if defined(CONFIG_MEMCG) && defined(CONFIG_BLK_CGROUP)
226 static void bio_associate_blkg_from_page(struct bio *bio, struct folio *folio)
228 struct cgroup_subsys_state *css;
229 struct mem_cgroup *memcg;
231 memcg = folio_memcg(folio);
236 css = cgroup_e_css(memcg->css.cgroup, &io_cgrp_subsys);
237 bio_associate_blkg_from_css(bio, css);
241 #define bio_associate_blkg_from_page(bio, folio) do { } while (0)
242 #endif /* CONFIG_MEMCG && CONFIG_BLK_CGROUP */
246 struct bio_vec bvec[SWAP_CLUSTER_MAX];
250 static mempool_t *sio_pool;
252 int sio_pool_init(void)
255 mempool_t *pool = mempool_create_kmalloc_pool(
256 SWAP_CLUSTER_MAX, sizeof(struct swap_iocb));
257 if (cmpxchg(&sio_pool, NULL, pool))
258 mempool_destroy(pool);
265 static void sio_write_complete(struct kiocb *iocb, long ret)
267 struct swap_iocb *sio = container_of(iocb, struct swap_iocb, iocb);
268 struct page *page = sio->bvec[0].bv_page;
271 if (ret != sio->len) {
273 * In the case of swap-over-nfs, this can be a
274 * temporary failure if the system has limited
275 * memory for allocating transmit buffers.
276 * Mark the page dirty and avoid
277 * folio_rotate_reclaimable but rate-limit the
278 * messages but do not flag PageError like
279 * the normal direct-to-bio case as it could
282 pr_err_ratelimited("Write error %ld on dio swapfile (%llu)\n",
283 ret, page_file_offset(page));
284 for (p = 0; p < sio->pages; p++) {
285 page = sio->bvec[p].bv_page;
286 set_page_dirty(page);
287 ClearPageReclaim(page);
291 for (p = 0; p < sio->pages; p++)
292 end_page_writeback(sio->bvec[p].bv_page);
294 mempool_free(sio, sio_pool);
297 static void swap_writepage_fs(struct folio *folio, struct writeback_control *wbc)
299 struct swap_iocb *sio = NULL;
300 struct swap_info_struct *sis = swp_swap_info(folio->swap);
301 struct file *swap_file = sis->swap_file;
302 loff_t pos = folio_file_pos(folio);
304 count_swpout_vm_event(folio);
305 folio_start_writeback(folio);
308 sio = *wbc->swap_plug;
310 if (sio->iocb.ki_filp != swap_file ||
311 sio->iocb.ki_pos + sio->len != pos) {
312 swap_write_unplug(sio);
317 sio = mempool_alloc(sio_pool, GFP_NOIO);
318 init_sync_kiocb(&sio->iocb, swap_file);
319 sio->iocb.ki_complete = sio_write_complete;
320 sio->iocb.ki_pos = pos;
324 bvec_set_folio(&sio->bvec[sio->pages], folio, folio_size(folio), 0);
325 sio->len += folio_size(folio);
327 if (sio->pages == ARRAY_SIZE(sio->bvec) || !wbc->swap_plug) {
328 swap_write_unplug(sio);
332 *wbc->swap_plug = sio;
335 static void swap_writepage_bdev_sync(struct folio *folio,
336 struct writeback_control *wbc, struct swap_info_struct *sis)
341 bio_init(&bio, sis->bdev, &bv, 1,
342 REQ_OP_WRITE | REQ_SWAP | wbc_to_write_flags(wbc));
343 bio.bi_iter.bi_sector = swap_folio_sector(folio);
344 bio_add_folio_nofail(&bio, folio, folio_size(folio), 0);
346 bio_associate_blkg_from_page(&bio, folio);
347 count_swpout_vm_event(folio);
349 folio_start_writeback(folio);
352 submit_bio_wait(&bio);
353 __end_swap_bio_write(&bio);
356 static void swap_writepage_bdev_async(struct folio *folio,
357 struct writeback_control *wbc, struct swap_info_struct *sis)
361 bio = bio_alloc(sis->bdev, 1,
362 REQ_OP_WRITE | REQ_SWAP | wbc_to_write_flags(wbc),
364 bio->bi_iter.bi_sector = swap_folio_sector(folio);
365 bio->bi_end_io = end_swap_bio_write;
366 bio_add_folio_nofail(bio, folio, folio_size(folio), 0);
368 bio_associate_blkg_from_page(bio, folio);
369 count_swpout_vm_event(folio);
370 folio_start_writeback(folio);
375 void __swap_writepage(struct folio *folio, struct writeback_control *wbc)
377 struct swap_info_struct *sis = swp_swap_info(folio->swap);
379 VM_BUG_ON_FOLIO(!folio_test_swapcache(folio), folio);
381 * ->flags can be updated non-atomicially (scan_swap_map_slots),
382 * but that will never affect SWP_FS_OPS, so the data_race
385 if (data_race(sis->flags & SWP_FS_OPS))
386 swap_writepage_fs(folio, wbc);
387 else if (sis->flags & SWP_SYNCHRONOUS_IO)
388 swap_writepage_bdev_sync(folio, wbc, sis);
390 swap_writepage_bdev_async(folio, wbc, sis);
393 void swap_write_unplug(struct swap_iocb *sio)
395 struct iov_iter from;
396 struct address_space *mapping = sio->iocb.ki_filp->f_mapping;
399 iov_iter_bvec(&from, ITER_SOURCE, sio->bvec, sio->pages, sio->len);
400 ret = mapping->a_ops->swap_rw(&sio->iocb, &from);
401 if (ret != -EIOCBQUEUED)
402 sio_write_complete(&sio->iocb, ret);
405 static void sio_read_complete(struct kiocb *iocb, long ret)
407 struct swap_iocb *sio = container_of(iocb, struct swap_iocb, iocb);
410 if (ret == sio->len) {
411 for (p = 0; p < sio->pages; p++) {
412 struct folio *folio = page_folio(sio->bvec[p].bv_page);
414 folio_mark_uptodate(folio);
417 count_vm_events(PSWPIN, sio->pages);
419 for (p = 0; p < sio->pages; p++) {
420 struct folio *folio = page_folio(sio->bvec[p].bv_page);
424 pr_alert_ratelimited("Read-error on swap-device\n");
426 mempool_free(sio, sio_pool);
429 static void swap_read_folio_fs(struct folio *folio, struct swap_iocb **plug)
431 struct swap_info_struct *sis = swp_swap_info(folio->swap);
432 struct swap_iocb *sio = NULL;
433 loff_t pos = folio_file_pos(folio);
438 if (sio->iocb.ki_filp != sis->swap_file ||
439 sio->iocb.ki_pos + sio->len != pos) {
440 swap_read_unplug(sio);
445 sio = mempool_alloc(sio_pool, GFP_KERNEL);
446 init_sync_kiocb(&sio->iocb, sis->swap_file);
447 sio->iocb.ki_pos = pos;
448 sio->iocb.ki_complete = sio_read_complete;
452 bvec_set_folio(&sio->bvec[sio->pages], folio, folio_size(folio), 0);
453 sio->len += folio_size(folio);
455 if (sio->pages == ARRAY_SIZE(sio->bvec) || !plug) {
456 swap_read_unplug(sio);
463 static void swap_read_folio_bdev_sync(struct folio *folio,
464 struct swap_info_struct *sis)
469 bio_init(&bio, sis->bdev, &bv, 1, REQ_OP_READ);
470 bio.bi_iter.bi_sector = swap_folio_sector(folio);
471 bio_add_folio_nofail(&bio, folio, folio_size(folio), 0);
473 * Keep this task valid during swap readpage because the oom killer may
474 * attempt to access it in the page fault retry time check.
476 get_task_struct(current);
477 count_vm_event(PSWPIN);
478 submit_bio_wait(&bio);
479 __end_swap_bio_read(&bio);
480 put_task_struct(current);
483 static void swap_read_folio_bdev_async(struct folio *folio,
484 struct swap_info_struct *sis)
488 bio = bio_alloc(sis->bdev, 1, REQ_OP_READ, GFP_KERNEL);
489 bio->bi_iter.bi_sector = swap_folio_sector(folio);
490 bio->bi_end_io = end_swap_bio_read;
491 bio_add_folio_nofail(bio, folio, folio_size(folio), 0);
492 count_vm_event(PSWPIN);
496 void swap_read_folio(struct folio *folio, bool synchronous,
497 struct swap_iocb **plug)
499 struct swap_info_struct *sis = swp_swap_info(folio->swap);
500 bool workingset = folio_test_workingset(folio);
501 unsigned long pflags;
504 VM_BUG_ON_FOLIO(!folio_test_swapcache(folio) && !synchronous, folio);
505 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
506 VM_BUG_ON_FOLIO(folio_test_uptodate(folio), folio);
509 * Count submission time as memory stall and delay. When the device
510 * is congested, or the submitting cgroup IO-throttled, submission
511 * can be a significant part of overall IO time.
514 delayacct_thrashing_start(&in_thrashing);
515 psi_memstall_enter(&pflags);
517 delayacct_swapin_start();
519 if (zswap_load(folio)) {
520 folio_mark_uptodate(folio);
522 } else if (data_race(sis->flags & SWP_FS_OPS)) {
523 swap_read_folio_fs(folio, plug);
524 } else if (synchronous || (sis->flags & SWP_SYNCHRONOUS_IO)) {
525 swap_read_folio_bdev_sync(folio, sis);
527 swap_read_folio_bdev_async(folio, sis);
531 delayacct_thrashing_end(&in_thrashing);
532 psi_memstall_leave(&pflags);
534 delayacct_swapin_end();
537 void __swap_read_unplug(struct swap_iocb *sio)
539 struct iov_iter from;
540 struct address_space *mapping = sio->iocb.ki_filp->f_mapping;
543 iov_iter_bvec(&from, ITER_DEST, sio->bvec, sio->pages, sio->len);
544 ret = mapping->a_ops->swap_rw(&sio->iocb, &from);
545 if (ret != -EIOCBQUEUED)
546 sio_read_complete(&sio->iocb, ret);