1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 1994-1999 Linus Torvalds
9 * This file handles the generic file mmap semantics used by
10 * most "normal" filesystems (but you don't /have/ to use this:
11 * the NFS filesystem used to do this differently, for example)
13 #include <linux/export.h>
14 #include <linux/compiler.h>
15 #include <linux/dax.h>
17 #include <linux/sched/signal.h>
18 #include <linux/uaccess.h>
19 #include <linux/capability.h>
20 #include <linux/kernel_stat.h>
21 #include <linux/gfp.h>
23 #include <linux/swap.h>
24 #include <linux/swapops.h>
25 #include <linux/syscalls.h>
26 #include <linux/mman.h>
27 #include <linux/pagemap.h>
28 #include <linux/file.h>
29 #include <linux/uio.h>
30 #include <linux/error-injection.h>
31 #include <linux/hash.h>
32 #include <linux/writeback.h>
33 #include <linux/backing-dev.h>
34 #include <linux/pagevec.h>
35 #include <linux/security.h>
36 #include <linux/cpuset.h>
37 #include <linux/hugetlb.h>
38 #include <linux/memcontrol.h>
39 #include <linux/shmem_fs.h>
40 #include <linux/rmap.h>
41 #include <linux/delayacct.h>
42 #include <linux/psi.h>
43 #include <linux/ramfs.h>
44 #include <linux/page_idle.h>
45 #include <linux/migrate.h>
46 #include <linux/pipe_fs_i.h>
47 #include <linux/splice.h>
48 #include <asm/pgalloc.h>
49 #include <asm/tlbflush.h>
52 #define CREATE_TRACE_POINTS
53 #include <trace/events/filemap.h>
56 * FIXME: remove all knowledge of the buffer layer from the core VM
58 #include <linux/buffer_head.h> /* for try_to_free_buffers */
65 * Shared mappings implemented 30.11.1994. It's not fully working yet,
68 * Shared mappings now work. 15.8.1995 Bruno.
70 * finished 'unifying' the page and buffer cache and SMP-threaded the
71 * page-cache, 21.05.1999, Ingo Molnar <mingo@redhat.com>
73 * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <andrea@suse.de>
79 * ->i_mmap_rwsem (truncate_pagecache)
80 * ->private_lock (__free_pte->block_dirty_folio)
81 * ->swap_lock (exclusive_swap_page, others)
85 * ->invalidate_lock (acquired by fs in truncate path)
86 * ->i_mmap_rwsem (truncate->unmap_mapping_range)
90 * ->page_table_lock or pte_lock (various, mainly in memory.c)
91 * ->i_pages lock (arch-dependent flush_dcache_mmap_lock)
94 * ->invalidate_lock (filemap_fault)
95 * ->lock_page (filemap_fault, access_process_vm)
97 * ->i_rwsem (generic_perform_write)
98 * ->mmap_lock (fault_in_readable->do_page_fault)
101 * sb_lock (fs/fs-writeback.c)
102 * ->i_pages lock (__sync_single_inode)
105 * ->anon_vma.lock (vma_merge)
108 * ->page_table_lock or pte_lock (anon_vma_prepare and various)
110 * ->page_table_lock or pte_lock
111 * ->swap_lock (try_to_unmap_one)
112 * ->private_lock (try_to_unmap_one)
113 * ->i_pages lock (try_to_unmap_one)
114 * ->lruvec->lru_lock (follow_page->mark_page_accessed)
115 * ->lruvec->lru_lock (check_pte_range->isolate_lru_page)
116 * ->private_lock (page_remove_rmap->set_page_dirty)
117 * ->i_pages lock (page_remove_rmap->set_page_dirty)
118 * bdi.wb->list_lock (page_remove_rmap->set_page_dirty)
119 * ->inode->i_lock (page_remove_rmap->set_page_dirty)
120 * ->memcg->move_lock (page_remove_rmap->folio_memcg_lock)
121 * bdi.wb->list_lock (zap_pte_range->set_page_dirty)
122 * ->inode->i_lock (zap_pte_range->set_page_dirty)
123 * ->private_lock (zap_pte_range->block_dirty_folio)
126 * ->tasklist_lock (memory_failure, collect_procs_ao)
129 static void page_cache_delete(struct address_space *mapping,
130 struct folio *folio, void *shadow)
132 XA_STATE(xas, &mapping->i_pages, folio->index);
135 mapping_set_update(&xas, mapping);
137 /* hugetlb pages are represented by a single entry in the xarray */
138 if (!folio_test_hugetlb(folio)) {
139 xas_set_order(&xas, folio->index, folio_order(folio));
140 nr = folio_nr_pages(folio);
143 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
145 xas_store(&xas, shadow);
146 xas_init_marks(&xas);
148 folio->mapping = NULL;
149 /* Leave page->index set: truncation lookup relies upon it */
150 mapping->nrpages -= nr;
153 static void filemap_unaccount_folio(struct address_space *mapping,
158 VM_BUG_ON_FOLIO(folio_mapped(folio), folio);
159 if (!IS_ENABLED(CONFIG_DEBUG_VM) && unlikely(folio_mapped(folio))) {
160 pr_alert("BUG: Bad page cache in process %s pfn:%05lx\n",
161 current->comm, folio_pfn(folio));
162 dump_page(&folio->page, "still mapped when deleted");
164 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
166 if (mapping_exiting(mapping) && !folio_test_large(folio)) {
167 int mapcount = page_mapcount(&folio->page);
169 if (folio_ref_count(folio) >= mapcount + 2) {
171 * All vmas have already been torn down, so it's
172 * a good bet that actually the page is unmapped
173 * and we'd rather not leak it: if we're wrong,
174 * another bad page check should catch it later.
176 page_mapcount_reset(&folio->page);
177 folio_ref_sub(folio, mapcount);
182 /* hugetlb folios do not participate in page cache accounting. */
183 if (folio_test_hugetlb(folio))
186 nr = folio_nr_pages(folio);
188 __lruvec_stat_mod_folio(folio, NR_FILE_PAGES, -nr);
189 if (folio_test_swapbacked(folio)) {
190 __lruvec_stat_mod_folio(folio, NR_SHMEM, -nr);
191 if (folio_test_pmd_mappable(folio))
192 __lruvec_stat_mod_folio(folio, NR_SHMEM_THPS, -nr);
193 } else if (folio_test_pmd_mappable(folio)) {
194 __lruvec_stat_mod_folio(folio, NR_FILE_THPS, -nr);
195 filemap_nr_thps_dec(mapping);
199 * At this point folio must be either written or cleaned by
200 * truncate. Dirty folio here signals a bug and loss of
201 * unwritten data - on ordinary filesystems.
203 * But it's harmless on in-memory filesystems like tmpfs; and can
204 * occur when a driver which did get_user_pages() sets page dirty
205 * before putting it, while the inode is being finally evicted.
207 * Below fixes dirty accounting after removing the folio entirely
208 * but leaves the dirty flag set: it has no effect for truncated
209 * folio and anyway will be cleared before returning folio to
212 if (WARN_ON_ONCE(folio_test_dirty(folio) &&
213 mapping_can_writeback(mapping)))
214 folio_account_cleaned(folio, inode_to_wb(mapping->host));
218 * Delete a page from the page cache and free it. Caller has to make
219 * sure the page is locked and that nobody else uses it - or that usage
220 * is safe. The caller must hold the i_pages lock.
222 void __filemap_remove_folio(struct folio *folio, void *shadow)
224 struct address_space *mapping = folio->mapping;
226 trace_mm_filemap_delete_from_page_cache(folio);
227 filemap_unaccount_folio(mapping, folio);
228 page_cache_delete(mapping, folio, shadow);
231 void filemap_free_folio(struct address_space *mapping, struct folio *folio)
233 void (*free_folio)(struct folio *);
236 free_folio = mapping->a_ops->free_folio;
240 if (folio_test_large(folio) && !folio_test_hugetlb(folio))
241 refs = folio_nr_pages(folio);
242 folio_put_refs(folio, refs);
246 * filemap_remove_folio - Remove folio from page cache.
249 * This must be called only on folios that are locked and have been
250 * verified to be in the page cache. It will never put the folio into
251 * the free list because the caller has a reference on the page.
253 void filemap_remove_folio(struct folio *folio)
255 struct address_space *mapping = folio->mapping;
257 BUG_ON(!folio_test_locked(folio));
258 spin_lock(&mapping->host->i_lock);
259 xa_lock_irq(&mapping->i_pages);
260 __filemap_remove_folio(folio, NULL);
261 xa_unlock_irq(&mapping->i_pages);
262 if (mapping_shrinkable(mapping))
263 inode_add_lru(mapping->host);
264 spin_unlock(&mapping->host->i_lock);
266 filemap_free_folio(mapping, folio);
270 * page_cache_delete_batch - delete several folios from page cache
271 * @mapping: the mapping to which folios belong
272 * @fbatch: batch of folios to delete
274 * The function walks over mapping->i_pages and removes folios passed in
275 * @fbatch from the mapping. The function expects @fbatch to be sorted
276 * by page index and is optimised for it to be dense.
277 * It tolerates holes in @fbatch (mapping entries at those indices are not
280 * The function expects the i_pages lock to be held.
282 static void page_cache_delete_batch(struct address_space *mapping,
283 struct folio_batch *fbatch)
285 XA_STATE(xas, &mapping->i_pages, fbatch->folios[0]->index);
286 long total_pages = 0;
290 mapping_set_update(&xas, mapping);
291 xas_for_each(&xas, folio, ULONG_MAX) {
292 if (i >= folio_batch_count(fbatch))
295 /* A swap/dax/shadow entry got inserted? Skip it. */
296 if (xa_is_value(folio))
299 * A page got inserted in our range? Skip it. We have our
300 * pages locked so they are protected from being removed.
301 * If we see a page whose index is higher than ours, it
302 * means our page has been removed, which shouldn't be
303 * possible because we're holding the PageLock.
305 if (folio != fbatch->folios[i]) {
306 VM_BUG_ON_FOLIO(folio->index >
307 fbatch->folios[i]->index, folio);
311 WARN_ON_ONCE(!folio_test_locked(folio));
313 folio->mapping = NULL;
314 /* Leave folio->index set: truncation lookup relies on it */
317 xas_store(&xas, NULL);
318 total_pages += folio_nr_pages(folio);
320 mapping->nrpages -= total_pages;
323 void delete_from_page_cache_batch(struct address_space *mapping,
324 struct folio_batch *fbatch)
328 if (!folio_batch_count(fbatch))
331 spin_lock(&mapping->host->i_lock);
332 xa_lock_irq(&mapping->i_pages);
333 for (i = 0; i < folio_batch_count(fbatch); i++) {
334 struct folio *folio = fbatch->folios[i];
336 trace_mm_filemap_delete_from_page_cache(folio);
337 filemap_unaccount_folio(mapping, folio);
339 page_cache_delete_batch(mapping, fbatch);
340 xa_unlock_irq(&mapping->i_pages);
341 if (mapping_shrinkable(mapping))
342 inode_add_lru(mapping->host);
343 spin_unlock(&mapping->host->i_lock);
345 for (i = 0; i < folio_batch_count(fbatch); i++)
346 filemap_free_folio(mapping, fbatch->folios[i]);
349 int filemap_check_errors(struct address_space *mapping)
352 /* Check for outstanding write errors */
353 if (test_bit(AS_ENOSPC, &mapping->flags) &&
354 test_and_clear_bit(AS_ENOSPC, &mapping->flags))
356 if (test_bit(AS_EIO, &mapping->flags) &&
357 test_and_clear_bit(AS_EIO, &mapping->flags))
361 EXPORT_SYMBOL(filemap_check_errors);
363 static int filemap_check_and_keep_errors(struct address_space *mapping)
365 /* Check for outstanding write errors */
366 if (test_bit(AS_EIO, &mapping->flags))
368 if (test_bit(AS_ENOSPC, &mapping->flags))
374 * filemap_fdatawrite_wbc - start writeback on mapping dirty pages in range
375 * @mapping: address space structure to write
376 * @wbc: the writeback_control controlling the writeout
378 * Call writepages on the mapping using the provided wbc to control the
381 * Return: %0 on success, negative error code otherwise.
383 int filemap_fdatawrite_wbc(struct address_space *mapping,
384 struct writeback_control *wbc)
388 if (!mapping_can_writeback(mapping) ||
389 !mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
392 wbc_attach_fdatawrite_inode(wbc, mapping->host);
393 ret = do_writepages(mapping, wbc);
394 wbc_detach_inode(wbc);
397 EXPORT_SYMBOL(filemap_fdatawrite_wbc);
400 * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range
401 * @mapping: address space structure to write
402 * @start: offset in bytes where the range starts
403 * @end: offset in bytes where the range ends (inclusive)
404 * @sync_mode: enable synchronous operation
406 * Start writeback against all of a mapping's dirty pages that lie
407 * within the byte offsets <start, end> inclusive.
409 * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as
410 * opposed to a regular memory cleansing writeback. The difference between
411 * these two operations is that if a dirty page/buffer is encountered, it must
412 * be waited upon, and not just skipped over.
414 * Return: %0 on success, negative error code otherwise.
416 int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
417 loff_t end, int sync_mode)
419 struct writeback_control wbc = {
420 .sync_mode = sync_mode,
421 .nr_to_write = LONG_MAX,
422 .range_start = start,
426 return filemap_fdatawrite_wbc(mapping, &wbc);
429 static inline int __filemap_fdatawrite(struct address_space *mapping,
432 return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode);
435 int filemap_fdatawrite(struct address_space *mapping)
437 return __filemap_fdatawrite(mapping, WB_SYNC_ALL);
439 EXPORT_SYMBOL(filemap_fdatawrite);
441 int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
444 return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
446 EXPORT_SYMBOL(filemap_fdatawrite_range);
449 * filemap_flush - mostly a non-blocking flush
450 * @mapping: target address_space
452 * This is a mostly non-blocking flush. Not suitable for data-integrity
453 * purposes - I/O may not be started against all dirty pages.
455 * Return: %0 on success, negative error code otherwise.
457 int filemap_flush(struct address_space *mapping)
459 return __filemap_fdatawrite(mapping, WB_SYNC_NONE);
461 EXPORT_SYMBOL(filemap_flush);
464 * filemap_range_has_page - check if a page exists in range.
465 * @mapping: address space within which to check
466 * @start_byte: offset in bytes where the range starts
467 * @end_byte: offset in bytes where the range ends (inclusive)
469 * Find at least one page in the range supplied, usually used to check if
470 * direct writing in this range will trigger a writeback.
472 * Return: %true if at least one page exists in the specified range,
475 bool filemap_range_has_page(struct address_space *mapping,
476 loff_t start_byte, loff_t end_byte)
479 XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT);
480 pgoff_t max = end_byte >> PAGE_SHIFT;
482 if (end_byte < start_byte)
487 folio = xas_find(&xas, max);
488 if (xas_retry(&xas, folio))
490 /* Shadow entries don't count */
491 if (xa_is_value(folio))
494 * We don't need to try to pin this page; we're about to
495 * release the RCU lock anyway. It is enough to know that
496 * there was a page here recently.
502 return folio != NULL;
504 EXPORT_SYMBOL(filemap_range_has_page);
506 static void __filemap_fdatawait_range(struct address_space *mapping,
507 loff_t start_byte, loff_t end_byte)
509 pgoff_t index = start_byte >> PAGE_SHIFT;
510 pgoff_t end = end_byte >> PAGE_SHIFT;
511 struct folio_batch fbatch;
514 folio_batch_init(&fbatch);
516 while (index <= end) {
519 nr_folios = filemap_get_folios_tag(mapping, &index, end,
520 PAGECACHE_TAG_WRITEBACK, &fbatch);
525 for (i = 0; i < nr_folios; i++) {
526 struct folio *folio = fbatch.folios[i];
528 folio_wait_writeback(folio);
529 folio_clear_error(folio);
531 folio_batch_release(&fbatch);
537 * filemap_fdatawait_range - wait for writeback to complete
538 * @mapping: address space structure to wait for
539 * @start_byte: offset in bytes where the range starts
540 * @end_byte: offset in bytes where the range ends (inclusive)
542 * Walk the list of under-writeback pages of the given address space
543 * in the given range and wait for all of them. Check error status of
544 * the address space and return it.
546 * Since the error status of the address space is cleared by this function,
547 * callers are responsible for checking the return value and handling and/or
548 * reporting the error.
550 * Return: error status of the address space.
552 int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte,
555 __filemap_fdatawait_range(mapping, start_byte, end_byte);
556 return filemap_check_errors(mapping);
558 EXPORT_SYMBOL(filemap_fdatawait_range);
561 * filemap_fdatawait_range_keep_errors - wait for writeback to complete
562 * @mapping: address space structure to wait for
563 * @start_byte: offset in bytes where the range starts
564 * @end_byte: offset in bytes where the range ends (inclusive)
566 * Walk the list of under-writeback pages of the given address space in the
567 * given range and wait for all of them. Unlike filemap_fdatawait_range(),
568 * this function does not clear error status of the address space.
570 * Use this function if callers don't handle errors themselves. Expected
571 * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2),
574 int filemap_fdatawait_range_keep_errors(struct address_space *mapping,
575 loff_t start_byte, loff_t end_byte)
577 __filemap_fdatawait_range(mapping, start_byte, end_byte);
578 return filemap_check_and_keep_errors(mapping);
580 EXPORT_SYMBOL(filemap_fdatawait_range_keep_errors);
583 * file_fdatawait_range - wait for writeback to complete
584 * @file: file pointing to address space structure to wait for
585 * @start_byte: offset in bytes where the range starts
586 * @end_byte: offset in bytes where the range ends (inclusive)
588 * Walk the list of under-writeback pages of the address space that file
589 * refers to, in the given range and wait for all of them. Check error
590 * status of the address space vs. the file->f_wb_err cursor and return it.
592 * Since the error status of the file is advanced by this function,
593 * callers are responsible for checking the return value and handling and/or
594 * reporting the error.
596 * Return: error status of the address space vs. the file->f_wb_err cursor.
598 int file_fdatawait_range(struct file *file, loff_t start_byte, loff_t end_byte)
600 struct address_space *mapping = file->f_mapping;
602 __filemap_fdatawait_range(mapping, start_byte, end_byte);
603 return file_check_and_advance_wb_err(file);
605 EXPORT_SYMBOL(file_fdatawait_range);
608 * filemap_fdatawait_keep_errors - wait for writeback without clearing errors
609 * @mapping: address space structure to wait for
611 * Walk the list of under-writeback pages of the given address space
612 * and wait for all of them. Unlike filemap_fdatawait(), this function
613 * does not clear error status of the address space.
615 * Use this function if callers don't handle errors themselves. Expected
616 * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2),
619 * Return: error status of the address space.
621 int filemap_fdatawait_keep_errors(struct address_space *mapping)
623 __filemap_fdatawait_range(mapping, 0, LLONG_MAX);
624 return filemap_check_and_keep_errors(mapping);
626 EXPORT_SYMBOL(filemap_fdatawait_keep_errors);
628 /* Returns true if writeback might be needed or already in progress. */
629 static bool mapping_needs_writeback(struct address_space *mapping)
631 return mapping->nrpages;
634 bool filemap_range_has_writeback(struct address_space *mapping,
635 loff_t start_byte, loff_t end_byte)
637 XA_STATE(xas, &mapping->i_pages, start_byte >> PAGE_SHIFT);
638 pgoff_t max = end_byte >> PAGE_SHIFT;
641 if (end_byte < start_byte)
645 xas_for_each(&xas, folio, max) {
646 if (xas_retry(&xas, folio))
648 if (xa_is_value(folio))
650 if (folio_test_dirty(folio) || folio_test_locked(folio) ||
651 folio_test_writeback(folio))
655 return folio != NULL;
657 EXPORT_SYMBOL_GPL(filemap_range_has_writeback);
660 * filemap_write_and_wait_range - write out & wait on a file range
661 * @mapping: the address_space for the pages
662 * @lstart: offset in bytes where the range starts
663 * @lend: offset in bytes where the range ends (inclusive)
665 * Write out and wait upon file offsets lstart->lend, inclusive.
667 * Note that @lend is inclusive (describes the last byte to be written) so
668 * that this function can be used to write to the very end-of-file (end = -1).
670 * Return: error status of the address space.
672 int filemap_write_and_wait_range(struct address_space *mapping,
673 loff_t lstart, loff_t lend)
680 if (mapping_needs_writeback(mapping)) {
681 err = __filemap_fdatawrite_range(mapping, lstart, lend,
684 * Even if the above returned error, the pages may be
685 * written partially (e.g. -ENOSPC), so we wait for it.
686 * But the -EIO is special case, it may indicate the worst
687 * thing (e.g. bug) happened, so we avoid waiting for it.
690 __filemap_fdatawait_range(mapping, lstart, lend);
692 err2 = filemap_check_errors(mapping);
697 EXPORT_SYMBOL(filemap_write_and_wait_range);
699 void __filemap_set_wb_err(struct address_space *mapping, int err)
701 errseq_t eseq = errseq_set(&mapping->wb_err, err);
703 trace_filemap_set_wb_err(mapping, eseq);
705 EXPORT_SYMBOL(__filemap_set_wb_err);
708 * file_check_and_advance_wb_err - report wb error (if any) that was previously
709 * and advance wb_err to current one
710 * @file: struct file on which the error is being reported
712 * When userland calls fsync (or something like nfsd does the equivalent), we
713 * want to report any writeback errors that occurred since the last fsync (or
714 * since the file was opened if there haven't been any).
716 * Grab the wb_err from the mapping. If it matches what we have in the file,
717 * then just quickly return 0. The file is all caught up.
719 * If it doesn't match, then take the mapping value, set the "seen" flag in
720 * it and try to swap it into place. If it works, or another task beat us
721 * to it with the new value, then update the f_wb_err and return the error
722 * portion. The error at this point must be reported via proper channels
723 * (a'la fsync, or NFS COMMIT operation, etc.).
725 * While we handle mapping->wb_err with atomic operations, the f_wb_err
726 * value is protected by the f_lock since we must ensure that it reflects
727 * the latest value swapped in for this file descriptor.
729 * Return: %0 on success, negative error code otherwise.
731 int file_check_and_advance_wb_err(struct file *file)
734 errseq_t old = READ_ONCE(file->f_wb_err);
735 struct address_space *mapping = file->f_mapping;
737 /* Locklessly handle the common case where nothing has changed */
738 if (errseq_check(&mapping->wb_err, old)) {
739 /* Something changed, must use slow path */
740 spin_lock(&file->f_lock);
741 old = file->f_wb_err;
742 err = errseq_check_and_advance(&mapping->wb_err,
744 trace_file_check_and_advance_wb_err(file, old);
745 spin_unlock(&file->f_lock);
749 * We're mostly using this function as a drop in replacement for
750 * filemap_check_errors. Clear AS_EIO/AS_ENOSPC to emulate the effect
751 * that the legacy code would have had on these flags.
753 clear_bit(AS_EIO, &mapping->flags);
754 clear_bit(AS_ENOSPC, &mapping->flags);
757 EXPORT_SYMBOL(file_check_and_advance_wb_err);
760 * file_write_and_wait_range - write out & wait on a file range
761 * @file: file pointing to address_space with pages
762 * @lstart: offset in bytes where the range starts
763 * @lend: offset in bytes where the range ends (inclusive)
765 * Write out and wait upon file offsets lstart->lend, inclusive.
767 * Note that @lend is inclusive (describes the last byte to be written) so
768 * that this function can be used to write to the very end-of-file (end = -1).
770 * After writing out and waiting on the data, we check and advance the
771 * f_wb_err cursor to the latest value, and return any errors detected there.
773 * Return: %0 on success, negative error code otherwise.
775 int file_write_and_wait_range(struct file *file, loff_t lstart, loff_t lend)
778 struct address_space *mapping = file->f_mapping;
783 if (mapping_needs_writeback(mapping)) {
784 err = __filemap_fdatawrite_range(mapping, lstart, lend,
786 /* See comment of filemap_write_and_wait() */
788 __filemap_fdatawait_range(mapping, lstart, lend);
790 err2 = file_check_and_advance_wb_err(file);
795 EXPORT_SYMBOL(file_write_and_wait_range);
798 * replace_page_cache_folio - replace a pagecache folio with a new one
799 * @old: folio to be replaced
800 * @new: folio to replace with
802 * This function replaces a folio in the pagecache with a new one. On
803 * success it acquires the pagecache reference for the new folio and
804 * drops it for the old folio. Both the old and new folios must be
805 * locked. This function does not add the new folio to the LRU, the
806 * caller must do that.
808 * The remove + add is atomic. This function cannot fail.
810 void replace_page_cache_folio(struct folio *old, struct folio *new)
812 struct address_space *mapping = old->mapping;
813 void (*free_folio)(struct folio *) = mapping->a_ops->free_folio;
814 pgoff_t offset = old->index;
815 XA_STATE(xas, &mapping->i_pages, offset);
817 VM_BUG_ON_FOLIO(!folio_test_locked(old), old);
818 VM_BUG_ON_FOLIO(!folio_test_locked(new), new);
819 VM_BUG_ON_FOLIO(new->mapping, new);
822 new->mapping = mapping;
825 mem_cgroup_migrate(old, new);
828 xas_store(&xas, new);
831 /* hugetlb pages do not participate in page cache accounting. */
832 if (!folio_test_hugetlb(old))
833 __lruvec_stat_sub_folio(old, NR_FILE_PAGES);
834 if (!folio_test_hugetlb(new))
835 __lruvec_stat_add_folio(new, NR_FILE_PAGES);
836 if (folio_test_swapbacked(old))
837 __lruvec_stat_sub_folio(old, NR_SHMEM);
838 if (folio_test_swapbacked(new))
839 __lruvec_stat_add_folio(new, NR_SHMEM);
840 xas_unlock_irq(&xas);
845 EXPORT_SYMBOL_GPL(replace_page_cache_folio);
847 noinline int __filemap_add_folio(struct address_space *mapping,
848 struct folio *folio, pgoff_t index, gfp_t gfp, void **shadowp)
850 XA_STATE(xas, &mapping->i_pages, index);
851 int huge = folio_test_hugetlb(folio);
852 bool charged = false;
855 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
856 VM_BUG_ON_FOLIO(folio_test_swapbacked(folio), folio);
857 mapping_set_update(&xas, mapping);
860 int error = mem_cgroup_charge(folio, NULL, gfp);
861 VM_BUG_ON_FOLIO(index & (folio_nr_pages(folio) - 1), folio);
865 xas_set_order(&xas, index, folio_order(folio));
866 nr = folio_nr_pages(folio);
869 gfp &= GFP_RECLAIM_MASK;
870 folio_ref_add(folio, nr);
871 folio->mapping = mapping;
872 folio->index = xas.xa_index;
875 unsigned int order = xa_get_order(xas.xa, xas.xa_index);
876 void *entry, *old = NULL;
878 if (order > folio_order(folio))
879 xas_split_alloc(&xas, xa_load(xas.xa, xas.xa_index),
882 xas_for_each_conflict(&xas, entry) {
884 if (!xa_is_value(entry)) {
885 xas_set_err(&xas, -EEXIST);
893 /* entry may have been split before we acquired lock */
894 order = xa_get_order(xas.xa, xas.xa_index);
895 if (order > folio_order(folio)) {
896 /* How to handle large swap entries? */
897 BUG_ON(shmem_mapping(mapping));
898 xas_split(&xas, old, order);
903 xas_store(&xas, folio);
907 mapping->nrpages += nr;
909 /* hugetlb pages do not participate in page cache accounting */
911 __lruvec_stat_mod_folio(folio, NR_FILE_PAGES, nr);
912 if (folio_test_pmd_mappable(folio))
913 __lruvec_stat_mod_folio(folio,
917 xas_unlock_irq(&xas);
918 } while (xas_nomem(&xas, gfp));
923 trace_mm_filemap_add_to_page_cache(folio);
927 mem_cgroup_uncharge(folio);
928 folio->mapping = NULL;
929 /* Leave page->index set: truncation relies upon it */
930 folio_put_refs(folio, nr);
931 return xas_error(&xas);
933 ALLOW_ERROR_INJECTION(__filemap_add_folio, ERRNO);
935 int filemap_add_folio(struct address_space *mapping, struct folio *folio,
936 pgoff_t index, gfp_t gfp)
941 __folio_set_locked(folio);
942 ret = __filemap_add_folio(mapping, folio, index, gfp, &shadow);
944 __folio_clear_locked(folio);
947 * The folio might have been evicted from cache only
948 * recently, in which case it should be activated like
949 * any other repeatedly accessed folio.
950 * The exception is folios getting rewritten; evicting other
951 * data from the working set, only to cache data that will
952 * get overwritten with something else, is a waste of memory.
954 WARN_ON_ONCE(folio_test_active(folio));
955 if (!(gfp & __GFP_WRITE) && shadow)
956 workingset_refault(folio, shadow);
957 folio_add_lru(folio);
961 EXPORT_SYMBOL_GPL(filemap_add_folio);
964 struct folio *filemap_alloc_folio(gfp_t gfp, unsigned int order)
969 if (cpuset_do_page_mem_spread()) {
970 unsigned int cpuset_mems_cookie;
972 cpuset_mems_cookie = read_mems_allowed_begin();
973 n = cpuset_mem_spread_node();
974 folio = __folio_alloc_node(gfp, order, n);
975 } while (!folio && read_mems_allowed_retry(cpuset_mems_cookie));
979 return folio_alloc(gfp, order);
981 EXPORT_SYMBOL(filemap_alloc_folio);
985 * filemap_invalidate_lock_two - lock invalidate_lock for two mappings
987 * Lock exclusively invalidate_lock of any passed mapping that is not NULL.
989 * @mapping1: the first mapping to lock
990 * @mapping2: the second mapping to lock
992 void filemap_invalidate_lock_two(struct address_space *mapping1,
993 struct address_space *mapping2)
995 if (mapping1 > mapping2)
996 swap(mapping1, mapping2);
998 down_write(&mapping1->invalidate_lock);
999 if (mapping2 && mapping1 != mapping2)
1000 down_write_nested(&mapping2->invalidate_lock, 1);
1002 EXPORT_SYMBOL(filemap_invalidate_lock_two);
1005 * filemap_invalidate_unlock_two - unlock invalidate_lock for two mappings
1007 * Unlock exclusive invalidate_lock of any passed mapping that is not NULL.
1009 * @mapping1: the first mapping to unlock
1010 * @mapping2: the second mapping to unlock
1012 void filemap_invalidate_unlock_two(struct address_space *mapping1,
1013 struct address_space *mapping2)
1016 up_write(&mapping1->invalidate_lock);
1017 if (mapping2 && mapping1 != mapping2)
1018 up_write(&mapping2->invalidate_lock);
1020 EXPORT_SYMBOL(filemap_invalidate_unlock_two);
1023 * In order to wait for pages to become available there must be
1024 * waitqueues associated with pages. By using a hash table of
1025 * waitqueues where the bucket discipline is to maintain all
1026 * waiters on the same queue and wake all when any of the pages
1027 * become available, and for the woken contexts to check to be
1028 * sure the appropriate page became available, this saves space
1029 * at a cost of "thundering herd" phenomena during rare hash
1032 #define PAGE_WAIT_TABLE_BITS 8
1033 #define PAGE_WAIT_TABLE_SIZE (1 << PAGE_WAIT_TABLE_BITS)
1034 static wait_queue_head_t folio_wait_table[PAGE_WAIT_TABLE_SIZE] __cacheline_aligned;
1036 static wait_queue_head_t *folio_waitqueue(struct folio *folio)
1038 return &folio_wait_table[hash_ptr(folio, PAGE_WAIT_TABLE_BITS)];
1041 void __init pagecache_init(void)
1045 for (i = 0; i < PAGE_WAIT_TABLE_SIZE; i++)
1046 init_waitqueue_head(&folio_wait_table[i]);
1048 page_writeback_init();
1052 * The page wait code treats the "wait->flags" somewhat unusually, because
1053 * we have multiple different kinds of waits, not just the usual "exclusive"
1058 * (a) no special bits set:
1060 * We're just waiting for the bit to be released, and when a waker
1061 * calls the wakeup function, we set WQ_FLAG_WOKEN and wake it up,
1062 * and remove it from the wait queue.
1064 * Simple and straightforward.
1066 * (b) WQ_FLAG_EXCLUSIVE:
1068 * The waiter is waiting to get the lock, and only one waiter should
1069 * be woken up to avoid any thundering herd behavior. We'll set the
1070 * WQ_FLAG_WOKEN bit, wake it up, and remove it from the wait queue.
1072 * This is the traditional exclusive wait.
1074 * (c) WQ_FLAG_EXCLUSIVE | WQ_FLAG_CUSTOM:
1076 * The waiter is waiting to get the bit, and additionally wants the
1077 * lock to be transferred to it for fair lock behavior. If the lock
1078 * cannot be taken, we stop walking the wait queue without waking
1081 * This is the "fair lock handoff" case, and in addition to setting
1082 * WQ_FLAG_WOKEN, we set WQ_FLAG_DONE to let the waiter easily see
1083 * that it now has the lock.
1085 static int wake_page_function(wait_queue_entry_t *wait, unsigned mode, int sync, void *arg)
1088 struct wait_page_key *key = arg;
1089 struct wait_page_queue *wait_page
1090 = container_of(wait, struct wait_page_queue, wait);
1092 if (!wake_page_match(wait_page, key))
1096 * If it's a lock handoff wait, we get the bit for it, and
1097 * stop walking (and do not wake it up) if we can't.
1099 flags = wait->flags;
1100 if (flags & WQ_FLAG_EXCLUSIVE) {
1101 if (test_bit(key->bit_nr, &key->folio->flags))
1103 if (flags & WQ_FLAG_CUSTOM) {
1104 if (test_and_set_bit(key->bit_nr, &key->folio->flags))
1106 flags |= WQ_FLAG_DONE;
1111 * We are holding the wait-queue lock, but the waiter that
1112 * is waiting for this will be checking the flags without
1115 * So update the flags atomically, and wake up the waiter
1116 * afterwards to avoid any races. This store-release pairs
1117 * with the load-acquire in folio_wait_bit_common().
1119 smp_store_release(&wait->flags, flags | WQ_FLAG_WOKEN);
1120 wake_up_state(wait->private, mode);
1123 * Ok, we have successfully done what we're waiting for,
1124 * and we can unconditionally remove the wait entry.
1126 * Note that this pairs with the "finish_wait()" in the
1127 * waiter, and has to be the absolute last thing we do.
1128 * After this list_del_init(&wait->entry) the wait entry
1129 * might be de-allocated and the process might even have
1132 list_del_init_careful(&wait->entry);
1133 return (flags & WQ_FLAG_EXCLUSIVE) != 0;
1136 static void folio_wake_bit(struct folio *folio, int bit_nr)
1138 wait_queue_head_t *q = folio_waitqueue(folio);
1139 struct wait_page_key key;
1140 unsigned long flags;
1141 wait_queue_entry_t bookmark;
1144 key.bit_nr = bit_nr;
1148 bookmark.private = NULL;
1149 bookmark.func = NULL;
1150 INIT_LIST_HEAD(&bookmark.entry);
1152 spin_lock_irqsave(&q->lock, flags);
1153 __wake_up_locked_key_bookmark(q, TASK_NORMAL, &key, &bookmark);
1155 while (bookmark.flags & WQ_FLAG_BOOKMARK) {
1157 * Take a breather from holding the lock,
1158 * allow pages that finish wake up asynchronously
1159 * to acquire the lock and remove themselves
1162 spin_unlock_irqrestore(&q->lock, flags);
1164 spin_lock_irqsave(&q->lock, flags);
1165 __wake_up_locked_key_bookmark(q, TASK_NORMAL, &key, &bookmark);
1169 * It's possible to miss clearing waiters here, when we woke our page
1170 * waiters, but the hashed waitqueue has waiters for other pages on it.
1171 * That's okay, it's a rare case. The next waker will clear it.
1173 * Note that, depending on the page pool (buddy, hugetlb, ZONE_DEVICE,
1174 * other), the flag may be cleared in the course of freeing the page;
1175 * but that is not required for correctness.
1177 if (!waitqueue_active(q) || !key.page_match)
1178 folio_clear_waiters(folio);
1180 spin_unlock_irqrestore(&q->lock, flags);
1183 static void folio_wake(struct folio *folio, int bit)
1185 if (!folio_test_waiters(folio))
1187 folio_wake_bit(folio, bit);
1191 * A choice of three behaviors for folio_wait_bit_common():
1194 EXCLUSIVE, /* Hold ref to page and take the bit when woken, like
1195 * __folio_lock() waiting on then setting PG_locked.
1197 SHARED, /* Hold ref to page and check the bit when woken, like
1198 * folio_wait_writeback() waiting on PG_writeback.
1200 DROP, /* Drop ref to page before wait, no check when woken,
1201 * like folio_put_wait_locked() on PG_locked.
1206 * Attempt to check (or get) the folio flag, and mark us done
1209 static inline bool folio_trylock_flag(struct folio *folio, int bit_nr,
1210 struct wait_queue_entry *wait)
1212 if (wait->flags & WQ_FLAG_EXCLUSIVE) {
1213 if (test_and_set_bit(bit_nr, &folio->flags))
1215 } else if (test_bit(bit_nr, &folio->flags))
1218 wait->flags |= WQ_FLAG_WOKEN | WQ_FLAG_DONE;
1222 /* How many times do we accept lock stealing from under a waiter? */
1223 int sysctl_page_lock_unfairness = 5;
1225 static inline int folio_wait_bit_common(struct folio *folio, int bit_nr,
1226 int state, enum behavior behavior)
1228 wait_queue_head_t *q = folio_waitqueue(folio);
1229 int unfairness = sysctl_page_lock_unfairness;
1230 struct wait_page_queue wait_page;
1231 wait_queue_entry_t *wait = &wait_page.wait;
1232 bool thrashing = false;
1233 unsigned long pflags;
1236 if (bit_nr == PG_locked &&
1237 !folio_test_uptodate(folio) && folio_test_workingset(folio)) {
1238 delayacct_thrashing_start(&in_thrashing);
1239 psi_memstall_enter(&pflags);
1244 wait->func = wake_page_function;
1245 wait_page.folio = folio;
1246 wait_page.bit_nr = bit_nr;
1250 if (behavior == EXCLUSIVE) {
1251 wait->flags = WQ_FLAG_EXCLUSIVE;
1252 if (--unfairness < 0)
1253 wait->flags |= WQ_FLAG_CUSTOM;
1257 * Do one last check whether we can get the
1258 * page bit synchronously.
1260 * Do the folio_set_waiters() marking before that
1261 * to let any waker we _just_ missed know they
1262 * need to wake us up (otherwise they'll never
1263 * even go to the slow case that looks at the
1264 * page queue), and add ourselves to the wait
1265 * queue if we need to sleep.
1267 * This part needs to be done under the queue
1268 * lock to avoid races.
1270 spin_lock_irq(&q->lock);
1271 folio_set_waiters(folio);
1272 if (!folio_trylock_flag(folio, bit_nr, wait))
1273 __add_wait_queue_entry_tail(q, wait);
1274 spin_unlock_irq(&q->lock);
1277 * From now on, all the logic will be based on
1278 * the WQ_FLAG_WOKEN and WQ_FLAG_DONE flag, to
1279 * see whether the page bit testing has already
1280 * been done by the wake function.
1282 * We can drop our reference to the folio.
1284 if (behavior == DROP)
1288 * Note that until the "finish_wait()", or until
1289 * we see the WQ_FLAG_WOKEN flag, we need to
1290 * be very careful with the 'wait->flags', because
1291 * we may race with a waker that sets them.
1296 set_current_state(state);
1298 /* Loop until we've been woken or interrupted */
1299 flags = smp_load_acquire(&wait->flags);
1300 if (!(flags & WQ_FLAG_WOKEN)) {
1301 if (signal_pending_state(state, current))
1308 /* If we were non-exclusive, we're done */
1309 if (behavior != EXCLUSIVE)
1312 /* If the waker got the lock for us, we're done */
1313 if (flags & WQ_FLAG_DONE)
1317 * Otherwise, if we're getting the lock, we need to
1318 * try to get it ourselves.
1320 * And if that fails, we'll have to retry this all.
1322 if (unlikely(test_and_set_bit(bit_nr, folio_flags(folio, 0))))
1325 wait->flags |= WQ_FLAG_DONE;
1330 * If a signal happened, this 'finish_wait()' may remove the last
1331 * waiter from the wait-queues, but the folio waiters bit will remain
1332 * set. That's ok. The next wakeup will take care of it, and trying
1333 * to do it here would be difficult and prone to races.
1335 finish_wait(q, wait);
1338 delayacct_thrashing_end(&in_thrashing);
1339 psi_memstall_leave(&pflags);
1343 * NOTE! The wait->flags weren't stable until we've done the
1344 * 'finish_wait()', and we could have exited the loop above due
1345 * to a signal, and had a wakeup event happen after the signal
1346 * test but before the 'finish_wait()'.
1348 * So only after the finish_wait() can we reliably determine
1349 * if we got woken up or not, so we can now figure out the final
1350 * return value based on that state without races.
1352 * Also note that WQ_FLAG_WOKEN is sufficient for a non-exclusive
1353 * waiter, but an exclusive one requires WQ_FLAG_DONE.
1355 if (behavior == EXCLUSIVE)
1356 return wait->flags & WQ_FLAG_DONE ? 0 : -EINTR;
1358 return wait->flags & WQ_FLAG_WOKEN ? 0 : -EINTR;
1361 #ifdef CONFIG_MIGRATION
1363 * migration_entry_wait_on_locked - Wait for a migration entry to be removed
1364 * @entry: migration swap entry.
1365 * @ptl: already locked ptl. This function will drop the lock.
1367 * Wait for a migration entry referencing the given page to be removed. This is
1368 * equivalent to put_and_wait_on_page_locked(page, TASK_UNINTERRUPTIBLE) except
1369 * this can be called without taking a reference on the page. Instead this
1370 * should be called while holding the ptl for the migration entry referencing
1373 * Returns after unlocking the ptl.
1375 * This follows the same logic as folio_wait_bit_common() so see the comments
1378 void migration_entry_wait_on_locked(swp_entry_t entry, spinlock_t *ptl)
1381 struct wait_page_queue wait_page;
1382 wait_queue_entry_t *wait = &wait_page.wait;
1383 bool thrashing = false;
1384 unsigned long pflags;
1386 wait_queue_head_t *q;
1387 struct folio *folio = page_folio(pfn_swap_entry_to_page(entry));
1389 q = folio_waitqueue(folio);
1390 if (!folio_test_uptodate(folio) && folio_test_workingset(folio)) {
1391 delayacct_thrashing_start(&in_thrashing);
1392 psi_memstall_enter(&pflags);
1397 wait->func = wake_page_function;
1398 wait_page.folio = folio;
1399 wait_page.bit_nr = PG_locked;
1402 spin_lock_irq(&q->lock);
1403 folio_set_waiters(folio);
1404 if (!folio_trylock_flag(folio, PG_locked, wait))
1405 __add_wait_queue_entry_tail(q, wait);
1406 spin_unlock_irq(&q->lock);
1409 * If a migration entry exists for the page the migration path must hold
1410 * a valid reference to the page, and it must take the ptl to remove the
1411 * migration entry. So the page is valid until the ptl is dropped.
1418 set_current_state(TASK_UNINTERRUPTIBLE);
1420 /* Loop until we've been woken or interrupted */
1421 flags = smp_load_acquire(&wait->flags);
1422 if (!(flags & WQ_FLAG_WOKEN)) {
1423 if (signal_pending_state(TASK_UNINTERRUPTIBLE, current))
1432 finish_wait(q, wait);
1435 delayacct_thrashing_end(&in_thrashing);
1436 psi_memstall_leave(&pflags);
1441 void folio_wait_bit(struct folio *folio, int bit_nr)
1443 folio_wait_bit_common(folio, bit_nr, TASK_UNINTERRUPTIBLE, SHARED);
1445 EXPORT_SYMBOL(folio_wait_bit);
1447 int folio_wait_bit_killable(struct folio *folio, int bit_nr)
1449 return folio_wait_bit_common(folio, bit_nr, TASK_KILLABLE, SHARED);
1451 EXPORT_SYMBOL(folio_wait_bit_killable);
1454 * folio_put_wait_locked - Drop a reference and wait for it to be unlocked
1455 * @folio: The folio to wait for.
1456 * @state: The sleep state (TASK_KILLABLE, TASK_UNINTERRUPTIBLE, etc).
1458 * The caller should hold a reference on @folio. They expect the page to
1459 * become unlocked relatively soon, but do not wish to hold up migration
1460 * (for example) by holding the reference while waiting for the folio to
1461 * come unlocked. After this function returns, the caller should not
1462 * dereference @folio.
1464 * Return: 0 if the folio was unlocked or -EINTR if interrupted by a signal.
1466 static int folio_put_wait_locked(struct folio *folio, int state)
1468 return folio_wait_bit_common(folio, PG_locked, state, DROP);
1472 * folio_add_wait_queue - Add an arbitrary waiter to a folio's wait queue
1473 * @folio: Folio defining the wait queue of interest
1474 * @waiter: Waiter to add to the queue
1476 * Add an arbitrary @waiter to the wait queue for the nominated @folio.
1478 void folio_add_wait_queue(struct folio *folio, wait_queue_entry_t *waiter)
1480 wait_queue_head_t *q = folio_waitqueue(folio);
1481 unsigned long flags;
1483 spin_lock_irqsave(&q->lock, flags);
1484 __add_wait_queue_entry_tail(q, waiter);
1485 folio_set_waiters(folio);
1486 spin_unlock_irqrestore(&q->lock, flags);
1488 EXPORT_SYMBOL_GPL(folio_add_wait_queue);
1490 #ifndef clear_bit_unlock_is_negative_byte
1493 * PG_waiters is the high bit in the same byte as PG_lock.
1495 * On x86 (and on many other architectures), we can clear PG_lock and
1496 * test the sign bit at the same time. But if the architecture does
1497 * not support that special operation, we just do this all by hand
1500 * The read of PG_waiters has to be after (or concurrently with) PG_locked
1501 * being cleared, but a memory barrier should be unnecessary since it is
1502 * in the same byte as PG_locked.
1504 static inline bool clear_bit_unlock_is_negative_byte(long nr, volatile void *mem)
1506 clear_bit_unlock(nr, mem);
1507 /* smp_mb__after_atomic(); */
1508 return test_bit(PG_waiters, mem);
1514 * folio_unlock - Unlock a locked folio.
1515 * @folio: The folio.
1517 * Unlocks the folio and wakes up any thread sleeping on the page lock.
1519 * Context: May be called from interrupt or process context. May not be
1520 * called from NMI context.
1522 void folio_unlock(struct folio *folio)
1524 /* Bit 7 allows x86 to check the byte's sign bit */
1525 BUILD_BUG_ON(PG_waiters != 7);
1526 BUILD_BUG_ON(PG_locked > 7);
1527 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
1528 if (clear_bit_unlock_is_negative_byte(PG_locked, folio_flags(folio, 0)))
1529 folio_wake_bit(folio, PG_locked);
1531 EXPORT_SYMBOL(folio_unlock);
1534 * folio_end_private_2 - Clear PG_private_2 and wake any waiters.
1535 * @folio: The folio.
1537 * Clear the PG_private_2 bit on a folio and wake up any sleepers waiting for
1538 * it. The folio reference held for PG_private_2 being set is released.
1540 * This is, for example, used when a netfs folio is being written to a local
1541 * disk cache, thereby allowing writes to the cache for the same folio to be
1544 void folio_end_private_2(struct folio *folio)
1546 VM_BUG_ON_FOLIO(!folio_test_private_2(folio), folio);
1547 clear_bit_unlock(PG_private_2, folio_flags(folio, 0));
1548 folio_wake_bit(folio, PG_private_2);
1551 EXPORT_SYMBOL(folio_end_private_2);
1554 * folio_wait_private_2 - Wait for PG_private_2 to be cleared on a folio.
1555 * @folio: The folio to wait on.
1557 * Wait for PG_private_2 (aka PG_fscache) to be cleared on a folio.
1559 void folio_wait_private_2(struct folio *folio)
1561 while (folio_test_private_2(folio))
1562 folio_wait_bit(folio, PG_private_2);
1564 EXPORT_SYMBOL(folio_wait_private_2);
1567 * folio_wait_private_2_killable - Wait for PG_private_2 to be cleared on a folio.
1568 * @folio: The folio to wait on.
1570 * Wait for PG_private_2 (aka PG_fscache) to be cleared on a folio or until a
1571 * fatal signal is received by the calling task.
1574 * - 0 if successful.
1575 * - -EINTR if a fatal signal was encountered.
1577 int folio_wait_private_2_killable(struct folio *folio)
1581 while (folio_test_private_2(folio)) {
1582 ret = folio_wait_bit_killable(folio, PG_private_2);
1589 EXPORT_SYMBOL(folio_wait_private_2_killable);
1592 * folio_end_writeback - End writeback against a folio.
1593 * @folio: The folio.
1595 void folio_end_writeback(struct folio *folio)
1598 * folio_test_clear_reclaim() could be used here but it is an
1599 * atomic operation and overkill in this particular case. Failing
1600 * to shuffle a folio marked for immediate reclaim is too mild
1601 * a gain to justify taking an atomic operation penalty at the
1602 * end of every folio writeback.
1604 if (folio_test_reclaim(folio)) {
1605 folio_clear_reclaim(folio);
1606 folio_rotate_reclaimable(folio);
1610 * Writeback does not hold a folio reference of its own, relying
1611 * on truncation to wait for the clearing of PG_writeback.
1612 * But here we must make sure that the folio is not freed and
1613 * reused before the folio_wake().
1616 if (!__folio_end_writeback(folio))
1619 smp_mb__after_atomic();
1620 folio_wake(folio, PG_writeback);
1621 acct_reclaim_writeback(folio);
1624 EXPORT_SYMBOL(folio_end_writeback);
1627 * __folio_lock - Get a lock on the folio, assuming we need to sleep to get it.
1628 * @folio: The folio to lock
1630 void __folio_lock(struct folio *folio)
1632 folio_wait_bit_common(folio, PG_locked, TASK_UNINTERRUPTIBLE,
1635 EXPORT_SYMBOL(__folio_lock);
1637 int __folio_lock_killable(struct folio *folio)
1639 return folio_wait_bit_common(folio, PG_locked, TASK_KILLABLE,
1642 EXPORT_SYMBOL_GPL(__folio_lock_killable);
1644 static int __folio_lock_async(struct folio *folio, struct wait_page_queue *wait)
1646 struct wait_queue_head *q = folio_waitqueue(folio);
1649 wait->folio = folio;
1650 wait->bit_nr = PG_locked;
1652 spin_lock_irq(&q->lock);
1653 __add_wait_queue_entry_tail(q, &wait->wait);
1654 folio_set_waiters(folio);
1655 ret = !folio_trylock(folio);
1657 * If we were successful now, we know we're still on the
1658 * waitqueue as we're still under the lock. This means it's
1659 * safe to remove and return success, we know the callback
1660 * isn't going to trigger.
1663 __remove_wait_queue(q, &wait->wait);
1666 spin_unlock_irq(&q->lock);
1672 * true - folio is locked; mmap_lock is still held.
1673 * false - folio is not locked.
1674 * mmap_lock has been released (mmap_read_unlock(), unless flags had both
1675 * FAULT_FLAG_ALLOW_RETRY and FAULT_FLAG_RETRY_NOWAIT set, in
1676 * which case mmap_lock is still held.
1678 * If neither ALLOW_RETRY nor KILLABLE are set, will always return true
1679 * with the folio locked and the mmap_lock unperturbed.
1681 bool __folio_lock_or_retry(struct folio *folio, struct mm_struct *mm,
1684 if (fault_flag_allow_retry_first(flags)) {
1686 * CAUTION! In this case, mmap_lock is not released
1687 * even though return 0.
1689 if (flags & FAULT_FLAG_RETRY_NOWAIT)
1692 mmap_read_unlock(mm);
1693 if (flags & FAULT_FLAG_KILLABLE)
1694 folio_wait_locked_killable(folio);
1696 folio_wait_locked(folio);
1699 if (flags & FAULT_FLAG_KILLABLE) {
1702 ret = __folio_lock_killable(folio);
1704 mmap_read_unlock(mm);
1708 __folio_lock(folio);
1715 * page_cache_next_miss() - Find the next gap in the page cache.
1716 * @mapping: Mapping.
1718 * @max_scan: Maximum range to search.
1720 * Search the range [index, min(index + max_scan - 1, ULONG_MAX)] for the
1721 * gap with the lowest index.
1723 * This function may be called under the rcu_read_lock. However, this will
1724 * not atomically search a snapshot of the cache at a single point in time.
1725 * For example, if a gap is created at index 5, then subsequently a gap is
1726 * created at index 10, page_cache_next_miss covering both indices may
1727 * return 10 if called under the rcu_read_lock.
1729 * Return: The index of the gap if found, otherwise an index outside the
1730 * range specified (in which case 'return - index >= max_scan' will be true).
1731 * In the rare case of index wrap-around, 0 will be returned.
1733 pgoff_t page_cache_next_miss(struct address_space *mapping,
1734 pgoff_t index, unsigned long max_scan)
1736 XA_STATE(xas, &mapping->i_pages, index);
1738 while (max_scan--) {
1739 void *entry = xas_next(&xas);
1740 if (!entry || xa_is_value(entry))
1742 if (xas.xa_index == 0)
1746 return xas.xa_index;
1748 EXPORT_SYMBOL(page_cache_next_miss);
1751 * page_cache_prev_miss() - Find the previous gap in the page cache.
1752 * @mapping: Mapping.
1754 * @max_scan: Maximum range to search.
1756 * Search the range [max(index - max_scan + 1, 0), index] for the
1757 * gap with the highest index.
1759 * This function may be called under the rcu_read_lock. However, this will
1760 * not atomically search a snapshot of the cache at a single point in time.
1761 * For example, if a gap is created at index 10, then subsequently a gap is
1762 * created at index 5, page_cache_prev_miss() covering both indices may
1763 * return 5 if called under the rcu_read_lock.
1765 * Return: The index of the gap if found, otherwise an index outside the
1766 * range specified (in which case 'index - return >= max_scan' will be true).
1767 * In the rare case of wrap-around, ULONG_MAX will be returned.
1769 pgoff_t page_cache_prev_miss(struct address_space *mapping,
1770 pgoff_t index, unsigned long max_scan)
1772 XA_STATE(xas, &mapping->i_pages, index);
1774 while (max_scan--) {
1775 void *entry = xas_prev(&xas);
1776 if (!entry || xa_is_value(entry))
1778 if (xas.xa_index == ULONG_MAX)
1782 return xas.xa_index;
1784 EXPORT_SYMBOL(page_cache_prev_miss);
1787 * Lockless page cache protocol:
1788 * On the lookup side:
1789 * 1. Load the folio from i_pages
1790 * 2. Increment the refcount if it's not zero
1791 * 3. If the folio is not found by xas_reload(), put the refcount and retry
1793 * On the removal side:
1794 * A. Freeze the page (by zeroing the refcount if nobody else has a reference)
1795 * B. Remove the page from i_pages
1796 * C. Return the page to the page allocator
1798 * This means that any page may have its reference count temporarily
1799 * increased by a speculative page cache (or fast GUP) lookup as it can
1800 * be allocated by another user before the RCU grace period expires.
1801 * Because the refcount temporarily acquired here may end up being the
1802 * last refcount on the page, any page allocation must be freeable by
1807 * filemap_get_entry - Get a page cache entry.
1808 * @mapping: the address_space to search
1809 * @index: The page cache index.
1811 * Looks up the page cache entry at @mapping & @index. If it is a folio,
1812 * it is returned with an increased refcount. If it is a shadow entry
1813 * of a previously evicted folio, or a swap entry from shmem/tmpfs,
1814 * it is returned without further action.
1816 * Return: The folio, swap or shadow entry, %NULL if nothing is found.
1818 void *filemap_get_entry(struct address_space *mapping, pgoff_t index)
1820 XA_STATE(xas, &mapping->i_pages, index);
1821 struct folio *folio;
1826 folio = xas_load(&xas);
1827 if (xas_retry(&xas, folio))
1830 * A shadow entry of a recently evicted page, or a swap entry from
1831 * shmem/tmpfs. Return it without attempting to raise page count.
1833 if (!folio || xa_is_value(folio))
1836 if (!folio_try_get_rcu(folio))
1839 if (unlikely(folio != xas_reload(&xas))) {
1850 * __filemap_get_folio - Find and get a reference to a folio.
1851 * @mapping: The address_space to search.
1852 * @index: The page index.
1853 * @fgp_flags: %FGP flags modify how the folio is returned.
1854 * @gfp: Memory allocation flags to use if %FGP_CREAT is specified.
1856 * Looks up the page cache entry at @mapping & @index.
1858 * @fgp_flags can be zero or more of these flags:
1860 * * %FGP_ACCESSED - The folio will be marked accessed.
1861 * * %FGP_LOCK - The folio is returned locked.
1862 * * %FGP_CREAT - If no page is present then a new page is allocated using
1863 * @gfp and added to the page cache and the VM's LRU list.
1864 * The page is returned locked and with an increased refcount.
1865 * * %FGP_FOR_MMAP - The caller wants to do its own locking dance if the
1866 * page is already in cache. If the page was allocated, unlock it before
1867 * returning so the caller can do the same dance.
1868 * * %FGP_WRITE - The page will be written to by the caller.
1869 * * %FGP_NOFS - __GFP_FS will get cleared in gfp.
1870 * * %FGP_NOWAIT - Don't get blocked by page lock.
1871 * * %FGP_STABLE - Wait for the folio to be stable (finished writeback)
1873 * If %FGP_LOCK or %FGP_CREAT are specified then the function may sleep even
1874 * if the %GFP flags specified for %FGP_CREAT are atomic.
1876 * If there is a page cache page, it is returned with an increased refcount.
1878 * Return: The found folio or an ERR_PTR() otherwise.
1880 struct folio *__filemap_get_folio(struct address_space *mapping, pgoff_t index,
1881 int fgp_flags, gfp_t gfp)
1883 struct folio *folio;
1886 folio = filemap_get_entry(mapping, index);
1887 if (xa_is_value(folio))
1892 if (fgp_flags & FGP_LOCK) {
1893 if (fgp_flags & FGP_NOWAIT) {
1894 if (!folio_trylock(folio)) {
1896 return ERR_PTR(-EAGAIN);
1902 /* Has the page been truncated? */
1903 if (unlikely(folio->mapping != mapping)) {
1904 folio_unlock(folio);
1908 VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio);
1911 if (fgp_flags & FGP_ACCESSED)
1912 folio_mark_accessed(folio);
1913 else if (fgp_flags & FGP_WRITE) {
1914 /* Clear idle flag for buffer write */
1915 if (folio_test_idle(folio))
1916 folio_clear_idle(folio);
1919 if (fgp_flags & FGP_STABLE)
1920 folio_wait_stable(folio);
1922 if (!folio && (fgp_flags & FGP_CREAT)) {
1924 if ((fgp_flags & FGP_WRITE) && mapping_can_writeback(mapping))
1926 if (fgp_flags & FGP_NOFS)
1928 if (fgp_flags & FGP_NOWAIT) {
1930 gfp |= GFP_NOWAIT | __GFP_NOWARN;
1933 folio = filemap_alloc_folio(gfp, 0);
1935 return ERR_PTR(-ENOMEM);
1937 if (WARN_ON_ONCE(!(fgp_flags & (FGP_LOCK | FGP_FOR_MMAP))))
1938 fgp_flags |= FGP_LOCK;
1940 /* Init accessed so avoid atomic mark_page_accessed later */
1941 if (fgp_flags & FGP_ACCESSED)
1942 __folio_set_referenced(folio);
1944 err = filemap_add_folio(mapping, folio, index, gfp);
1945 if (unlikely(err)) {
1953 * filemap_add_folio locks the page, and for mmap
1954 * we expect an unlocked page.
1956 if (folio && (fgp_flags & FGP_FOR_MMAP))
1957 folio_unlock(folio);
1961 return ERR_PTR(-ENOENT);
1964 EXPORT_SYMBOL(__filemap_get_folio);
1966 static inline struct folio *find_get_entry(struct xa_state *xas, pgoff_t max,
1969 struct folio *folio;
1972 if (mark == XA_PRESENT)
1973 folio = xas_find(xas, max);
1975 folio = xas_find_marked(xas, max, mark);
1977 if (xas_retry(xas, folio))
1980 * A shadow entry of a recently evicted page, a swap
1981 * entry from shmem/tmpfs or a DAX entry. Return it
1982 * without attempting to raise page count.
1984 if (!folio || xa_is_value(folio))
1987 if (!folio_try_get_rcu(folio))
1990 if (unlikely(folio != xas_reload(xas))) {
2002 * find_get_entries - gang pagecache lookup
2003 * @mapping: The address_space to search
2004 * @start: The starting page cache index
2005 * @end: The final page index (inclusive).
2006 * @fbatch: Where the resulting entries are placed.
2007 * @indices: The cache indices corresponding to the entries in @entries
2009 * find_get_entries() will search for and return a batch of entries in
2010 * the mapping. The entries are placed in @fbatch. find_get_entries()
2011 * takes a reference on any actual folios it returns.
2013 * The entries have ascending indexes. The indices may not be consecutive
2014 * due to not-present entries or large folios.
2016 * Any shadow entries of evicted folios, or swap entries from
2017 * shmem/tmpfs, are included in the returned array.
2019 * Return: The number of entries which were found.
2021 unsigned find_get_entries(struct address_space *mapping, pgoff_t *start,
2022 pgoff_t end, struct folio_batch *fbatch, pgoff_t *indices)
2024 XA_STATE(xas, &mapping->i_pages, *start);
2025 struct folio *folio;
2028 while ((folio = find_get_entry(&xas, end, XA_PRESENT)) != NULL) {
2029 indices[fbatch->nr] = xas.xa_index;
2030 if (!folio_batch_add(fbatch, folio))
2035 if (folio_batch_count(fbatch)) {
2036 unsigned long nr = 1;
2037 int idx = folio_batch_count(fbatch) - 1;
2039 folio = fbatch->folios[idx];
2040 if (!xa_is_value(folio) && !folio_test_hugetlb(folio))
2041 nr = folio_nr_pages(folio);
2042 *start = indices[idx] + nr;
2044 return folio_batch_count(fbatch);
2048 * find_lock_entries - Find a batch of pagecache entries.
2049 * @mapping: The address_space to search.
2050 * @start: The starting page cache index.
2051 * @end: The final page index (inclusive).
2052 * @fbatch: Where the resulting entries are placed.
2053 * @indices: The cache indices of the entries in @fbatch.
2055 * find_lock_entries() will return a batch of entries from @mapping.
2056 * Swap, shadow and DAX entries are included. Folios are returned
2057 * locked and with an incremented refcount. Folios which are locked
2058 * by somebody else or under writeback are skipped. Folios which are
2059 * partially outside the range are not returned.
2061 * The entries have ascending indexes. The indices may not be consecutive
2062 * due to not-present entries, large folios, folios which could not be
2063 * locked or folios under writeback.
2065 * Return: The number of entries which were found.
2067 unsigned find_lock_entries(struct address_space *mapping, pgoff_t *start,
2068 pgoff_t end, struct folio_batch *fbatch, pgoff_t *indices)
2070 XA_STATE(xas, &mapping->i_pages, *start);
2071 struct folio *folio;
2074 while ((folio = find_get_entry(&xas, end, XA_PRESENT))) {
2075 if (!xa_is_value(folio)) {
2076 if (folio->index < *start)
2078 if (folio->index + folio_nr_pages(folio) - 1 > end)
2080 if (!folio_trylock(folio))
2082 if (folio->mapping != mapping ||
2083 folio_test_writeback(folio))
2085 VM_BUG_ON_FOLIO(!folio_contains(folio, xas.xa_index),
2088 indices[fbatch->nr] = xas.xa_index;
2089 if (!folio_batch_add(fbatch, folio))
2093 folio_unlock(folio);
2099 if (folio_batch_count(fbatch)) {
2100 unsigned long nr = 1;
2101 int idx = folio_batch_count(fbatch) - 1;
2103 folio = fbatch->folios[idx];
2104 if (!xa_is_value(folio) && !folio_test_hugetlb(folio))
2105 nr = folio_nr_pages(folio);
2106 *start = indices[idx] + nr;
2108 return folio_batch_count(fbatch);
2112 * filemap_get_folios - Get a batch of folios
2113 * @mapping: The address_space to search
2114 * @start: The starting page index
2115 * @end: The final page index (inclusive)
2116 * @fbatch: The batch to fill.
2118 * Search for and return a batch of folios in the mapping starting at
2119 * index @start and up to index @end (inclusive). The folios are returned
2120 * in @fbatch with an elevated reference count.
2122 * The first folio may start before @start; if it does, it will contain
2123 * @start. The final folio may extend beyond @end; if it does, it will
2124 * contain @end. The folios have ascending indices. There may be gaps
2125 * between the folios if there are indices which have no folio in the
2126 * page cache. If folios are added to or removed from the page cache
2127 * while this is running, they may or may not be found by this call.
2129 * Return: The number of folios which were found.
2130 * We also update @start to index the next folio for the traversal.
2132 unsigned filemap_get_folios(struct address_space *mapping, pgoff_t *start,
2133 pgoff_t end, struct folio_batch *fbatch)
2135 XA_STATE(xas, &mapping->i_pages, *start);
2136 struct folio *folio;
2139 while ((folio = find_get_entry(&xas, end, XA_PRESENT)) != NULL) {
2140 /* Skip over shadow, swap and DAX entries */
2141 if (xa_is_value(folio))
2143 if (!folio_batch_add(fbatch, folio)) {
2144 unsigned long nr = folio_nr_pages(folio);
2146 if (folio_test_hugetlb(folio))
2148 *start = folio->index + nr;
2154 * We come here when there is no page beyond @end. We take care to not
2155 * overflow the index @start as it confuses some of the callers. This
2156 * breaks the iteration when there is a page at index -1 but that is
2157 * already broken anyway.
2159 if (end == (pgoff_t)-1)
2160 *start = (pgoff_t)-1;
2166 return folio_batch_count(fbatch);
2168 EXPORT_SYMBOL(filemap_get_folios);
2171 bool folio_more_pages(struct folio *folio, pgoff_t index, pgoff_t max)
2173 if (!folio_test_large(folio) || folio_test_hugetlb(folio))
2177 return index < folio->index + folio_nr_pages(folio) - 1;
2181 * filemap_get_folios_contig - Get a batch of contiguous folios
2182 * @mapping: The address_space to search
2183 * @start: The starting page index
2184 * @end: The final page index (inclusive)
2185 * @fbatch: The batch to fill
2187 * filemap_get_folios_contig() works exactly like filemap_get_folios(),
2188 * except the returned folios are guaranteed to be contiguous. This may
2189 * not return all contiguous folios if the batch gets filled up.
2191 * Return: The number of folios found.
2192 * Also update @start to be positioned for traversal of the next folio.
2195 unsigned filemap_get_folios_contig(struct address_space *mapping,
2196 pgoff_t *start, pgoff_t end, struct folio_batch *fbatch)
2198 XA_STATE(xas, &mapping->i_pages, *start);
2200 struct folio *folio;
2204 for (folio = xas_load(&xas); folio && xas.xa_index <= end;
2205 folio = xas_next(&xas)) {
2206 if (xas_retry(&xas, folio))
2209 * If the entry has been swapped out, we can stop looking.
2210 * No current caller is looking for DAX entries.
2212 if (xa_is_value(folio))
2215 if (!folio_try_get_rcu(folio))
2218 if (unlikely(folio != xas_reload(&xas)))
2221 if (!folio_batch_add(fbatch, folio)) {
2222 nr = folio_nr_pages(folio);
2224 if (folio_test_hugetlb(folio))
2226 *start = folio->index + nr;
2238 nr = folio_batch_count(fbatch);
2241 folio = fbatch->folios[nr - 1];
2242 if (folio_test_hugetlb(folio))
2243 *start = folio->index + 1;
2245 *start = folio->index + folio_nr_pages(folio);
2249 return folio_batch_count(fbatch);
2251 EXPORT_SYMBOL(filemap_get_folios_contig);
2254 * filemap_get_folios_tag - Get a batch of folios matching @tag
2255 * @mapping: The address_space to search
2256 * @start: The starting page index
2257 * @end: The final page index (inclusive)
2258 * @tag: The tag index
2259 * @fbatch: The batch to fill
2261 * Same as filemap_get_folios(), but only returning folios tagged with @tag.
2263 * Return: The number of folios found.
2264 * Also update @start to index the next folio for traversal.
2266 unsigned filemap_get_folios_tag(struct address_space *mapping, pgoff_t *start,
2267 pgoff_t end, xa_mark_t tag, struct folio_batch *fbatch)
2269 XA_STATE(xas, &mapping->i_pages, *start);
2270 struct folio *folio;
2273 while ((folio = find_get_entry(&xas, end, tag)) != NULL) {
2275 * Shadow entries should never be tagged, but this iteration
2276 * is lockless so there is a window for page reclaim to evict
2277 * a page we saw tagged. Skip over it.
2279 if (xa_is_value(folio))
2281 if (!folio_batch_add(fbatch, folio)) {
2282 unsigned long nr = folio_nr_pages(folio);
2284 if (folio_test_hugetlb(folio))
2286 *start = folio->index + nr;
2291 * We come here when there is no page beyond @end. We take care to not
2292 * overflow the index @start as it confuses some of the callers. This
2293 * breaks the iteration when there is a page at index -1 but that is
2294 * already broke anyway.
2296 if (end == (pgoff_t)-1)
2297 *start = (pgoff_t)-1;
2303 return folio_batch_count(fbatch);
2305 EXPORT_SYMBOL(filemap_get_folios_tag);
2308 * CD/DVDs are error prone. When a medium error occurs, the driver may fail
2309 * a _large_ part of the i/o request. Imagine the worst scenario:
2311 * ---R__________________________________________B__________
2312 * ^ reading here ^ bad block(assume 4k)
2314 * read(R) => miss => readahead(R...B) => media error => frustrating retries
2315 * => failing the whole request => read(R) => read(R+1) =>
2316 * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
2317 * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
2318 * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
2320 * It is going insane. Fix it by quickly scaling down the readahead size.
2322 static void shrink_readahead_size_eio(struct file_ra_state *ra)
2328 * filemap_get_read_batch - Get a batch of folios for read
2330 * Get a batch of folios which represent a contiguous range of bytes in
2331 * the file. No exceptional entries will be returned. If @index is in
2332 * the middle of a folio, the entire folio will be returned. The last
2333 * folio in the batch may have the readahead flag set or the uptodate flag
2334 * clear so that the caller can take the appropriate action.
2336 static void filemap_get_read_batch(struct address_space *mapping,
2337 pgoff_t index, pgoff_t max, struct folio_batch *fbatch)
2339 XA_STATE(xas, &mapping->i_pages, index);
2340 struct folio *folio;
2343 for (folio = xas_load(&xas); folio; folio = xas_next(&xas)) {
2344 if (xas_retry(&xas, folio))
2346 if (xas.xa_index > max || xa_is_value(folio))
2348 if (xa_is_sibling(folio))
2350 if (!folio_try_get_rcu(folio))
2353 if (unlikely(folio != xas_reload(&xas)))
2356 if (!folio_batch_add(fbatch, folio))
2358 if (!folio_test_uptodate(folio))
2360 if (folio_test_readahead(folio))
2362 xas_advance(&xas, folio->index + folio_nr_pages(folio) - 1);
2372 static int filemap_read_folio(struct file *file, filler_t filler,
2373 struct folio *folio)
2375 bool workingset = folio_test_workingset(folio);
2376 unsigned long pflags;
2380 * A previous I/O error may have been due to temporary failures,
2381 * eg. multipath errors. PG_error will be set again if read_folio
2384 folio_clear_error(folio);
2386 /* Start the actual read. The read will unlock the page. */
2387 if (unlikely(workingset))
2388 psi_memstall_enter(&pflags);
2389 error = filler(file, folio);
2390 if (unlikely(workingset))
2391 psi_memstall_leave(&pflags);
2395 error = folio_wait_locked_killable(folio);
2398 if (folio_test_uptodate(folio))
2401 shrink_readahead_size_eio(&file->f_ra);
2405 static bool filemap_range_uptodate(struct address_space *mapping,
2406 loff_t pos, size_t count, struct folio *folio,
2409 if (folio_test_uptodate(folio))
2411 /* pipes can't handle partially uptodate pages */
2414 if (!mapping->a_ops->is_partially_uptodate)
2416 if (mapping->host->i_blkbits >= folio_shift(folio))
2419 if (folio_pos(folio) > pos) {
2420 count -= folio_pos(folio) - pos;
2423 pos -= folio_pos(folio);
2426 return mapping->a_ops->is_partially_uptodate(folio, pos, count);
2429 static int filemap_update_page(struct kiocb *iocb,
2430 struct address_space *mapping, size_t count,
2431 struct folio *folio, bool need_uptodate)
2435 if (iocb->ki_flags & IOCB_NOWAIT) {
2436 if (!filemap_invalidate_trylock_shared(mapping))
2439 filemap_invalidate_lock_shared(mapping);
2442 if (!folio_trylock(folio)) {
2444 if (iocb->ki_flags & (IOCB_NOWAIT | IOCB_NOIO))
2445 goto unlock_mapping;
2446 if (!(iocb->ki_flags & IOCB_WAITQ)) {
2447 filemap_invalidate_unlock_shared(mapping);
2449 * This is where we usually end up waiting for a
2450 * previously submitted readahead to finish.
2452 folio_put_wait_locked(folio, TASK_KILLABLE);
2453 return AOP_TRUNCATED_PAGE;
2455 error = __folio_lock_async(folio, iocb->ki_waitq);
2457 goto unlock_mapping;
2460 error = AOP_TRUNCATED_PAGE;
2461 if (!folio->mapping)
2465 if (filemap_range_uptodate(mapping, iocb->ki_pos, count, folio,
2470 if (iocb->ki_flags & (IOCB_NOIO | IOCB_NOWAIT | IOCB_WAITQ))
2473 error = filemap_read_folio(iocb->ki_filp, mapping->a_ops->read_folio,
2475 goto unlock_mapping;
2477 folio_unlock(folio);
2479 filemap_invalidate_unlock_shared(mapping);
2480 if (error == AOP_TRUNCATED_PAGE)
2485 static int filemap_create_folio(struct file *file,
2486 struct address_space *mapping, pgoff_t index,
2487 struct folio_batch *fbatch)
2489 struct folio *folio;
2492 folio = filemap_alloc_folio(mapping_gfp_mask(mapping), 0);
2497 * Protect against truncate / hole punch. Grabbing invalidate_lock
2498 * here assures we cannot instantiate and bring uptodate new
2499 * pagecache folios after evicting page cache during truncate
2500 * and before actually freeing blocks. Note that we could
2501 * release invalidate_lock after inserting the folio into
2502 * the page cache as the locked folio would then be enough to
2503 * synchronize with hole punching. But there are code paths
2504 * such as filemap_update_page() filling in partially uptodate
2505 * pages or ->readahead() that need to hold invalidate_lock
2506 * while mapping blocks for IO so let's hold the lock here as
2507 * well to keep locking rules simple.
2509 filemap_invalidate_lock_shared(mapping);
2510 error = filemap_add_folio(mapping, folio, index,
2511 mapping_gfp_constraint(mapping, GFP_KERNEL));
2512 if (error == -EEXIST)
2513 error = AOP_TRUNCATED_PAGE;
2517 error = filemap_read_folio(file, mapping->a_ops->read_folio, folio);
2521 filemap_invalidate_unlock_shared(mapping);
2522 folio_batch_add(fbatch, folio);
2525 filemap_invalidate_unlock_shared(mapping);
2530 static int filemap_readahead(struct kiocb *iocb, struct file *file,
2531 struct address_space *mapping, struct folio *folio,
2534 DEFINE_READAHEAD(ractl, file, &file->f_ra, mapping, folio->index);
2536 if (iocb->ki_flags & IOCB_NOIO)
2538 page_cache_async_ra(&ractl, folio, last_index - folio->index);
2542 static int filemap_get_pages(struct kiocb *iocb, size_t count,
2543 struct folio_batch *fbatch, bool need_uptodate)
2545 struct file *filp = iocb->ki_filp;
2546 struct address_space *mapping = filp->f_mapping;
2547 struct file_ra_state *ra = &filp->f_ra;
2548 pgoff_t index = iocb->ki_pos >> PAGE_SHIFT;
2550 struct folio *folio;
2553 /* "last_index" is the index of the page beyond the end of the read */
2554 last_index = DIV_ROUND_UP(iocb->ki_pos + count, PAGE_SIZE);
2556 if (fatal_signal_pending(current))
2559 filemap_get_read_batch(mapping, index, last_index - 1, fbatch);
2560 if (!folio_batch_count(fbatch)) {
2561 if (iocb->ki_flags & IOCB_NOIO)
2563 page_cache_sync_readahead(mapping, ra, filp, index,
2564 last_index - index);
2565 filemap_get_read_batch(mapping, index, last_index - 1, fbatch);
2567 if (!folio_batch_count(fbatch)) {
2568 if (iocb->ki_flags & (IOCB_NOWAIT | IOCB_WAITQ))
2570 err = filemap_create_folio(filp, mapping,
2571 iocb->ki_pos >> PAGE_SHIFT, fbatch);
2572 if (err == AOP_TRUNCATED_PAGE)
2577 folio = fbatch->folios[folio_batch_count(fbatch) - 1];
2578 if (folio_test_readahead(folio)) {
2579 err = filemap_readahead(iocb, filp, mapping, folio, last_index);
2583 if (!folio_test_uptodate(folio)) {
2584 if ((iocb->ki_flags & IOCB_WAITQ) &&
2585 folio_batch_count(fbatch) > 1)
2586 iocb->ki_flags |= IOCB_NOWAIT;
2587 err = filemap_update_page(iocb, mapping, count, folio,
2597 if (likely(--fbatch->nr))
2599 if (err == AOP_TRUNCATED_PAGE)
2604 static inline bool pos_same_folio(loff_t pos1, loff_t pos2, struct folio *folio)
2606 unsigned int shift = folio_shift(folio);
2608 return (pos1 >> shift == pos2 >> shift);
2612 * filemap_read - Read data from the page cache.
2613 * @iocb: The iocb to read.
2614 * @iter: Destination for the data.
2615 * @already_read: Number of bytes already read by the caller.
2617 * Copies data from the page cache. If the data is not currently present,
2618 * uses the readahead and read_folio address_space operations to fetch it.
2620 * Return: Total number of bytes copied, including those already read by
2621 * the caller. If an error happens before any bytes are copied, returns
2622 * a negative error number.
2624 ssize_t filemap_read(struct kiocb *iocb, struct iov_iter *iter,
2625 ssize_t already_read)
2627 struct file *filp = iocb->ki_filp;
2628 struct file_ra_state *ra = &filp->f_ra;
2629 struct address_space *mapping = filp->f_mapping;
2630 struct inode *inode = mapping->host;
2631 struct folio_batch fbatch;
2633 bool writably_mapped;
2634 loff_t isize, end_offset;
2636 if (unlikely(iocb->ki_pos >= inode->i_sb->s_maxbytes))
2638 if (unlikely(!iov_iter_count(iter)))
2641 iov_iter_truncate(iter, inode->i_sb->s_maxbytes);
2642 folio_batch_init(&fbatch);
2648 * If we've already successfully copied some data, then we
2649 * can no longer safely return -EIOCBQUEUED. Hence mark
2650 * an async read NOWAIT at that point.
2652 if ((iocb->ki_flags & IOCB_WAITQ) && already_read)
2653 iocb->ki_flags |= IOCB_NOWAIT;
2655 if (unlikely(iocb->ki_pos >= i_size_read(inode)))
2658 error = filemap_get_pages(iocb, iter->count, &fbatch, false);
2663 * i_size must be checked after we know the pages are Uptodate.
2665 * Checking i_size after the check allows us to calculate
2666 * the correct value for "nr", which means the zero-filled
2667 * part of the page is not copied back to userspace (unless
2668 * another truncate extends the file - this is desired though).
2670 isize = i_size_read(inode);
2671 if (unlikely(iocb->ki_pos >= isize))
2673 end_offset = min_t(loff_t, isize, iocb->ki_pos + iter->count);
2676 * Once we start copying data, we don't want to be touching any
2677 * cachelines that might be contended:
2679 writably_mapped = mapping_writably_mapped(mapping);
2682 * When a read accesses the same folio several times, only
2683 * mark it as accessed the first time.
2685 if (!pos_same_folio(iocb->ki_pos, ra->prev_pos - 1,
2687 folio_mark_accessed(fbatch.folios[0]);
2689 for (i = 0; i < folio_batch_count(&fbatch); i++) {
2690 struct folio *folio = fbatch.folios[i];
2691 size_t fsize = folio_size(folio);
2692 size_t offset = iocb->ki_pos & (fsize - 1);
2693 size_t bytes = min_t(loff_t, end_offset - iocb->ki_pos,
2697 if (end_offset < folio_pos(folio))
2700 folio_mark_accessed(folio);
2702 * If users can be writing to this folio using arbitrary
2703 * virtual addresses, take care of potential aliasing
2704 * before reading the folio on the kernel side.
2706 if (writably_mapped)
2707 flush_dcache_folio(folio);
2709 copied = copy_folio_to_iter(folio, offset, bytes, iter);
2711 already_read += copied;
2712 iocb->ki_pos += copied;
2713 ra->prev_pos = iocb->ki_pos;
2715 if (copied < bytes) {
2721 for (i = 0; i < folio_batch_count(&fbatch); i++)
2722 folio_put(fbatch.folios[i]);
2723 folio_batch_init(&fbatch);
2724 } while (iov_iter_count(iter) && iocb->ki_pos < isize && !error);
2726 file_accessed(filp);
2728 return already_read ? already_read : error;
2730 EXPORT_SYMBOL_GPL(filemap_read);
2732 int kiocb_write_and_wait(struct kiocb *iocb, size_t count)
2734 struct address_space *mapping = iocb->ki_filp->f_mapping;
2735 loff_t pos = iocb->ki_pos;
2736 loff_t end = pos + count - 1;
2738 if (iocb->ki_flags & IOCB_NOWAIT) {
2739 if (filemap_range_needs_writeback(mapping, pos, end))
2744 return filemap_write_and_wait_range(mapping, pos, end);
2747 int kiocb_invalidate_pages(struct kiocb *iocb, size_t count)
2749 struct address_space *mapping = iocb->ki_filp->f_mapping;
2750 loff_t pos = iocb->ki_pos;
2751 loff_t end = pos + count - 1;
2754 if (iocb->ki_flags & IOCB_NOWAIT) {
2755 /* we could block if there are any pages in the range */
2756 if (filemap_range_has_page(mapping, pos, end))
2759 ret = filemap_write_and_wait_range(mapping, pos, end);
2765 * After a write we want buffered reads to be sure to go to disk to get
2766 * the new data. We invalidate clean cached page from the region we're
2767 * about to write. We do this *before* the write so that we can return
2768 * without clobbering -EIOCBQUEUED from ->direct_IO().
2770 return invalidate_inode_pages2_range(mapping, pos >> PAGE_SHIFT,
2775 * generic_file_read_iter - generic filesystem read routine
2776 * @iocb: kernel I/O control block
2777 * @iter: destination for the data read
2779 * This is the "read_iter()" routine for all filesystems
2780 * that can use the page cache directly.
2782 * The IOCB_NOWAIT flag in iocb->ki_flags indicates that -EAGAIN shall
2783 * be returned when no data can be read without waiting for I/O requests
2784 * to complete; it doesn't prevent readahead.
2786 * The IOCB_NOIO flag in iocb->ki_flags indicates that no new I/O
2787 * requests shall be made for the read or for readahead. When no data
2788 * can be read, -EAGAIN shall be returned. When readahead would be
2789 * triggered, a partial, possibly empty read shall be returned.
2792 * * number of bytes copied, even for partial reads
2793 * * negative error code (or 0 if IOCB_NOIO) if nothing was read
2796 generic_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
2798 size_t count = iov_iter_count(iter);
2802 return 0; /* skip atime */
2804 if (iocb->ki_flags & IOCB_DIRECT) {
2805 struct file *file = iocb->ki_filp;
2806 struct address_space *mapping = file->f_mapping;
2807 struct inode *inode = mapping->host;
2809 retval = kiocb_write_and_wait(iocb, count);
2812 file_accessed(file);
2814 retval = mapping->a_ops->direct_IO(iocb, iter);
2816 iocb->ki_pos += retval;
2819 if (retval != -EIOCBQUEUED)
2820 iov_iter_revert(iter, count - iov_iter_count(iter));
2823 * Btrfs can have a short DIO read if we encounter
2824 * compressed extents, so if there was an error, or if
2825 * we've already read everything we wanted to, or if
2826 * there was a short read because we hit EOF, go ahead
2827 * and return. Otherwise fallthrough to buffered io for
2828 * the rest of the read. Buffered reads will not work for
2829 * DAX files, so don't bother trying.
2831 if (retval < 0 || !count || IS_DAX(inode))
2833 if (iocb->ki_pos >= i_size_read(inode))
2837 return filemap_read(iocb, iter, retval);
2839 EXPORT_SYMBOL(generic_file_read_iter);
2842 * Splice subpages from a folio into a pipe.
2844 size_t splice_folio_into_pipe(struct pipe_inode_info *pipe,
2845 struct folio *folio, loff_t fpos, size_t size)
2848 size_t spliced = 0, offset = offset_in_folio(folio, fpos);
2850 page = folio_page(folio, offset / PAGE_SIZE);
2851 size = min(size, folio_size(folio) - offset);
2852 offset %= PAGE_SIZE;
2854 while (spliced < size &&
2855 !pipe_full(pipe->head, pipe->tail, pipe->max_usage)) {
2856 struct pipe_buffer *buf = pipe_head_buf(pipe);
2857 size_t part = min_t(size_t, PAGE_SIZE - offset, size - spliced);
2859 *buf = (struct pipe_buffer) {
2860 .ops = &page_cache_pipe_buf_ops,
2876 * filemap_splice_read - Splice data from a file's pagecache into a pipe
2877 * @in: The file to read from
2878 * @ppos: Pointer to the file position to read from
2879 * @pipe: The pipe to splice into
2880 * @len: The amount to splice
2881 * @flags: The SPLICE_F_* flags
2883 * This function gets folios from a file's pagecache and splices them into the
2884 * pipe. Readahead will be called as necessary to fill more folios. This may
2885 * be used for blockdevs also.
2887 * Return: On success, the number of bytes read will be returned and *@ppos
2888 * will be updated if appropriate; 0 will be returned if there is no more data
2889 * to be read; -EAGAIN will be returned if the pipe had no space, and some
2890 * other negative error code will be returned on error. A short read may occur
2891 * if the pipe has insufficient space, we reach the end of the data or we hit a
2894 ssize_t filemap_splice_read(struct file *in, loff_t *ppos,
2895 struct pipe_inode_info *pipe,
2896 size_t len, unsigned int flags)
2898 struct folio_batch fbatch;
2900 size_t total_spliced = 0, used, npages;
2901 loff_t isize, end_offset;
2902 bool writably_mapped;
2905 if (unlikely(*ppos >= in->f_mapping->host->i_sb->s_maxbytes))
2908 init_sync_kiocb(&iocb, in);
2909 iocb.ki_pos = *ppos;
2911 /* Work out how much data we can actually add into the pipe */
2912 used = pipe_occupancy(pipe->head, pipe->tail);
2913 npages = max_t(ssize_t, pipe->max_usage - used, 0);
2914 len = min_t(size_t, len, npages * PAGE_SIZE);
2916 folio_batch_init(&fbatch);
2921 if (*ppos >= i_size_read(in->f_mapping->host))
2924 iocb.ki_pos = *ppos;
2925 error = filemap_get_pages(&iocb, len, &fbatch, true);
2930 * i_size must be checked after we know the pages are Uptodate.
2932 * Checking i_size after the check allows us to calculate
2933 * the correct value for "nr", which means the zero-filled
2934 * part of the page is not copied back to userspace (unless
2935 * another truncate extends the file - this is desired though).
2937 isize = i_size_read(in->f_mapping->host);
2938 if (unlikely(*ppos >= isize))
2940 end_offset = min_t(loff_t, isize, *ppos + len);
2943 * Once we start copying data, we don't want to be touching any
2944 * cachelines that might be contended:
2946 writably_mapped = mapping_writably_mapped(in->f_mapping);
2948 for (i = 0; i < folio_batch_count(&fbatch); i++) {
2949 struct folio *folio = fbatch.folios[i];
2952 if (folio_pos(folio) >= end_offset)
2954 folio_mark_accessed(folio);
2957 * If users can be writing to this folio using arbitrary
2958 * virtual addresses, take care of potential aliasing
2959 * before reading the folio on the kernel side.
2961 if (writably_mapped)
2962 flush_dcache_folio(folio);
2964 n = min_t(loff_t, len, isize - *ppos);
2965 n = splice_folio_into_pipe(pipe, folio, *ppos, n);
2971 in->f_ra.prev_pos = *ppos;
2972 if (pipe_full(pipe->head, pipe->tail, pipe->max_usage))
2976 folio_batch_release(&fbatch);
2980 folio_batch_release(&fbatch);
2983 return total_spliced ? total_spliced : error;
2985 EXPORT_SYMBOL(filemap_splice_read);
2987 static inline loff_t folio_seek_hole_data(struct xa_state *xas,
2988 struct address_space *mapping, struct folio *folio,
2989 loff_t start, loff_t end, bool seek_data)
2991 const struct address_space_operations *ops = mapping->a_ops;
2992 size_t offset, bsz = i_blocksize(mapping->host);
2994 if (xa_is_value(folio) || folio_test_uptodate(folio))
2995 return seek_data ? start : end;
2996 if (!ops->is_partially_uptodate)
2997 return seek_data ? end : start;
3002 if (unlikely(folio->mapping != mapping))
3005 offset = offset_in_folio(folio, start) & ~(bsz - 1);
3008 if (ops->is_partially_uptodate(folio, offset, bsz) ==
3011 start = (start + bsz) & ~(bsz - 1);
3013 } while (offset < folio_size(folio));
3015 folio_unlock(folio);
3020 static inline size_t seek_folio_size(struct xa_state *xas, struct folio *folio)
3022 if (xa_is_value(folio))
3023 return PAGE_SIZE << xa_get_order(xas->xa, xas->xa_index);
3024 return folio_size(folio);
3028 * mapping_seek_hole_data - Seek for SEEK_DATA / SEEK_HOLE in the page cache.
3029 * @mapping: Address space to search.
3030 * @start: First byte to consider.
3031 * @end: Limit of search (exclusive).
3032 * @whence: Either SEEK_HOLE or SEEK_DATA.
3034 * If the page cache knows which blocks contain holes and which blocks
3035 * contain data, your filesystem can use this function to implement
3036 * SEEK_HOLE and SEEK_DATA. This is useful for filesystems which are
3037 * entirely memory-based such as tmpfs, and filesystems which support
3038 * unwritten extents.
3040 * Return: The requested offset on success, or -ENXIO if @whence specifies
3041 * SEEK_DATA and there is no data after @start. There is an implicit hole
3042 * after @end - 1, so SEEK_HOLE returns @end if all the bytes between @start
3043 * and @end contain data.
3045 loff_t mapping_seek_hole_data(struct address_space *mapping, loff_t start,
3046 loff_t end, int whence)
3048 XA_STATE(xas, &mapping->i_pages, start >> PAGE_SHIFT);
3049 pgoff_t max = (end - 1) >> PAGE_SHIFT;
3050 bool seek_data = (whence == SEEK_DATA);
3051 struct folio *folio;
3057 while ((folio = find_get_entry(&xas, max, XA_PRESENT))) {
3058 loff_t pos = (u64)xas.xa_index << PAGE_SHIFT;
3067 seek_size = seek_folio_size(&xas, folio);
3068 pos = round_up((u64)pos + 1, seek_size);
3069 start = folio_seek_hole_data(&xas, mapping, folio, start, pos,
3075 if (seek_size > PAGE_SIZE)
3076 xas_set(&xas, pos >> PAGE_SHIFT);
3077 if (!xa_is_value(folio))
3084 if (folio && !xa_is_value(folio))
3092 #define MMAP_LOTSAMISS (100)
3094 * lock_folio_maybe_drop_mmap - lock the page, possibly dropping the mmap_lock
3095 * @vmf - the vm_fault for this fault.
3096 * @folio - the folio to lock.
3097 * @fpin - the pointer to the file we may pin (or is already pinned).
3099 * This works similar to lock_folio_or_retry in that it can drop the
3100 * mmap_lock. It differs in that it actually returns the folio locked
3101 * if it returns 1 and 0 if it couldn't lock the folio. If we did have
3102 * to drop the mmap_lock then fpin will point to the pinned file and
3103 * needs to be fput()'ed at a later point.
3105 static int lock_folio_maybe_drop_mmap(struct vm_fault *vmf, struct folio *folio,
3108 if (folio_trylock(folio))
3112 * NOTE! This will make us return with VM_FAULT_RETRY, but with
3113 * the mmap_lock still held. That's how FAULT_FLAG_RETRY_NOWAIT
3114 * is supposed to work. We have way too many special cases..
3116 if (vmf->flags & FAULT_FLAG_RETRY_NOWAIT)
3119 *fpin = maybe_unlock_mmap_for_io(vmf, *fpin);
3120 if (vmf->flags & FAULT_FLAG_KILLABLE) {
3121 if (__folio_lock_killable(folio)) {
3123 * We didn't have the right flags to drop the mmap_lock,
3124 * but all fault_handlers only check for fatal signals
3125 * if we return VM_FAULT_RETRY, so we need to drop the
3126 * mmap_lock here and return 0 if we don't have a fpin.
3129 mmap_read_unlock(vmf->vma->vm_mm);
3133 __folio_lock(folio);
3139 * Synchronous readahead happens when we don't even find a page in the page
3140 * cache at all. We don't want to perform IO under the mmap sem, so if we have
3141 * to drop the mmap sem we return the file that was pinned in order for us to do
3142 * that. If we didn't pin a file then we return NULL. The file that is
3143 * returned needs to be fput()'ed when we're done with it.
3145 static struct file *do_sync_mmap_readahead(struct vm_fault *vmf)
3147 struct file *file = vmf->vma->vm_file;
3148 struct file_ra_state *ra = &file->f_ra;
3149 struct address_space *mapping = file->f_mapping;
3150 DEFINE_READAHEAD(ractl, file, ra, mapping, vmf->pgoff);
3151 struct file *fpin = NULL;
3152 unsigned long vm_flags = vmf->vma->vm_flags;
3153 unsigned int mmap_miss;
3155 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
3156 /* Use the readahead code, even if readahead is disabled */
3157 if (vm_flags & VM_HUGEPAGE) {
3158 fpin = maybe_unlock_mmap_for_io(vmf, fpin);
3159 ractl._index &= ~((unsigned long)HPAGE_PMD_NR - 1);
3160 ra->size = HPAGE_PMD_NR;
3162 * Fetch two PMD folios, so we get the chance to actually
3163 * readahead, unless we've been told not to.
3165 if (!(vm_flags & VM_RAND_READ))
3167 ra->async_size = HPAGE_PMD_NR;
3168 page_cache_ra_order(&ractl, ra, HPAGE_PMD_ORDER);
3173 /* If we don't want any read-ahead, don't bother */
3174 if (vm_flags & VM_RAND_READ)
3179 if (vm_flags & VM_SEQ_READ) {
3180 fpin = maybe_unlock_mmap_for_io(vmf, fpin);
3181 page_cache_sync_ra(&ractl, ra->ra_pages);
3185 /* Avoid banging the cache line if not needed */
3186 mmap_miss = READ_ONCE(ra->mmap_miss);
3187 if (mmap_miss < MMAP_LOTSAMISS * 10)
3188 WRITE_ONCE(ra->mmap_miss, ++mmap_miss);
3191 * Do we miss much more than hit in this file? If so,
3192 * stop bothering with read-ahead. It will only hurt.
3194 if (mmap_miss > MMAP_LOTSAMISS)
3200 fpin = maybe_unlock_mmap_for_io(vmf, fpin);
3201 ra->start = max_t(long, 0, vmf->pgoff - ra->ra_pages / 2);
3202 ra->size = ra->ra_pages;
3203 ra->async_size = ra->ra_pages / 4;
3204 ractl._index = ra->start;
3205 page_cache_ra_order(&ractl, ra, 0);
3210 * Asynchronous readahead happens when we find the page and PG_readahead,
3211 * so we want to possibly extend the readahead further. We return the file that
3212 * was pinned if we have to drop the mmap_lock in order to do IO.
3214 static struct file *do_async_mmap_readahead(struct vm_fault *vmf,
3215 struct folio *folio)
3217 struct file *file = vmf->vma->vm_file;
3218 struct file_ra_state *ra = &file->f_ra;
3219 DEFINE_READAHEAD(ractl, file, ra, file->f_mapping, vmf->pgoff);
3220 struct file *fpin = NULL;
3221 unsigned int mmap_miss;
3223 /* If we don't want any read-ahead, don't bother */
3224 if (vmf->vma->vm_flags & VM_RAND_READ || !ra->ra_pages)
3227 mmap_miss = READ_ONCE(ra->mmap_miss);
3229 WRITE_ONCE(ra->mmap_miss, --mmap_miss);
3231 if (folio_test_readahead(folio)) {
3232 fpin = maybe_unlock_mmap_for_io(vmf, fpin);
3233 page_cache_async_ra(&ractl, folio, ra->ra_pages);
3239 * filemap_fault - read in file data for page fault handling
3240 * @vmf: struct vm_fault containing details of the fault
3242 * filemap_fault() is invoked via the vma operations vector for a
3243 * mapped memory region to read in file data during a page fault.
3245 * The goto's are kind of ugly, but this streamlines the normal case of having
3246 * it in the page cache, and handles the special cases reasonably without
3247 * having a lot of duplicated code.
3249 * vma->vm_mm->mmap_lock must be held on entry.
3251 * If our return value has VM_FAULT_RETRY set, it's because the mmap_lock
3252 * may be dropped before doing I/O or by lock_folio_maybe_drop_mmap().
3254 * If our return value does not have VM_FAULT_RETRY set, the mmap_lock
3255 * has not been released.
3257 * We never return with VM_FAULT_RETRY and a bit from VM_FAULT_ERROR set.
3259 * Return: bitwise-OR of %VM_FAULT_ codes.
3261 vm_fault_t filemap_fault(struct vm_fault *vmf)
3264 struct file *file = vmf->vma->vm_file;
3265 struct file *fpin = NULL;
3266 struct address_space *mapping = file->f_mapping;
3267 struct inode *inode = mapping->host;
3268 pgoff_t max_idx, index = vmf->pgoff;
3269 struct folio *folio;
3271 bool mapping_locked = false;
3273 max_idx = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
3274 if (unlikely(index >= max_idx))
3275 return VM_FAULT_SIGBUS;
3278 * Do we have something in the page cache already?
3280 folio = filemap_get_folio(mapping, index);
3281 if (likely(!IS_ERR(folio))) {
3283 * We found the page, so try async readahead before waiting for
3286 if (!(vmf->flags & FAULT_FLAG_TRIED))
3287 fpin = do_async_mmap_readahead(vmf, folio);
3288 if (unlikely(!folio_test_uptodate(folio))) {
3289 filemap_invalidate_lock_shared(mapping);
3290 mapping_locked = true;
3293 /* No page in the page cache at all */
3294 count_vm_event(PGMAJFAULT);
3295 count_memcg_event_mm(vmf->vma->vm_mm, PGMAJFAULT);
3296 ret = VM_FAULT_MAJOR;
3297 fpin = do_sync_mmap_readahead(vmf);
3300 * See comment in filemap_create_folio() why we need
3303 if (!mapping_locked) {
3304 filemap_invalidate_lock_shared(mapping);
3305 mapping_locked = true;
3307 folio = __filemap_get_folio(mapping, index,
3308 FGP_CREAT|FGP_FOR_MMAP,
3310 if (IS_ERR(folio)) {
3313 filemap_invalidate_unlock_shared(mapping);
3314 return VM_FAULT_OOM;
3318 if (!lock_folio_maybe_drop_mmap(vmf, folio, &fpin))
3321 /* Did it get truncated? */
3322 if (unlikely(folio->mapping != mapping)) {
3323 folio_unlock(folio);
3327 VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio);
3330 * We have a locked page in the page cache, now we need to check
3331 * that it's up-to-date. If not, it is going to be due to an error.
3333 if (unlikely(!folio_test_uptodate(folio))) {
3335 * The page was in cache and uptodate and now it is not.
3336 * Strange but possible since we didn't hold the page lock all
3337 * the time. Let's drop everything get the invalidate lock and
3340 if (!mapping_locked) {
3341 folio_unlock(folio);
3345 goto page_not_uptodate;
3349 * We've made it this far and we had to drop our mmap_lock, now is the
3350 * time to return to the upper layer and have it re-find the vma and
3354 folio_unlock(folio);
3358 filemap_invalidate_unlock_shared(mapping);
3361 * Found the page and have a reference on it.
3362 * We must recheck i_size under page lock.
3364 max_idx = DIV_ROUND_UP(i_size_read(inode), PAGE_SIZE);
3365 if (unlikely(index >= max_idx)) {
3366 folio_unlock(folio);
3368 return VM_FAULT_SIGBUS;
3371 vmf->page = folio_file_page(folio, index);
3372 return ret | VM_FAULT_LOCKED;
3376 * Umm, take care of errors if the page isn't up-to-date.
3377 * Try to re-read it _once_. We do this synchronously,
3378 * because there really aren't any performance issues here
3379 * and we need to check for errors.
3381 fpin = maybe_unlock_mmap_for_io(vmf, fpin);
3382 error = filemap_read_folio(file, mapping->a_ops->read_folio, folio);
3387 if (!error || error == AOP_TRUNCATED_PAGE)
3389 filemap_invalidate_unlock_shared(mapping);
3391 return VM_FAULT_SIGBUS;
3395 * We dropped the mmap_lock, we need to return to the fault handler to
3396 * re-find the vma and come back and find our hopefully still populated
3402 filemap_invalidate_unlock_shared(mapping);
3405 return ret | VM_FAULT_RETRY;
3407 EXPORT_SYMBOL(filemap_fault);
3409 static bool filemap_map_pmd(struct vm_fault *vmf, struct folio *folio,
3412 struct mm_struct *mm = vmf->vma->vm_mm;
3414 /* Huge page is mapped? No need to proceed. */
3415 if (pmd_trans_huge(*vmf->pmd)) {
3416 folio_unlock(folio);
3421 if (pmd_none(*vmf->pmd) && folio_test_pmd_mappable(folio)) {
3422 struct page *page = folio_file_page(folio, start);
3423 vm_fault_t ret = do_set_pmd(vmf, page);
3425 /* The page is mapped successfully, reference consumed. */
3426 folio_unlock(folio);
3431 if (pmd_none(*vmf->pmd))
3432 pmd_install(mm, vmf->pmd, &vmf->prealloc_pte);
3437 static struct folio *next_uptodate_page(struct folio *folio,
3438 struct address_space *mapping,
3439 struct xa_state *xas, pgoff_t end_pgoff)
3441 unsigned long max_idx;
3446 if (xas_retry(xas, folio))
3448 if (xa_is_value(folio))
3450 if (folio_test_locked(folio))
3452 if (!folio_try_get_rcu(folio))
3454 /* Has the page moved or been split? */
3455 if (unlikely(folio != xas_reload(xas)))
3457 if (!folio_test_uptodate(folio) || folio_test_readahead(folio))
3459 if (!folio_trylock(folio))
3461 if (folio->mapping != mapping)
3463 if (!folio_test_uptodate(folio))
3465 max_idx = DIV_ROUND_UP(i_size_read(mapping->host), PAGE_SIZE);
3466 if (xas->xa_index >= max_idx)
3470 folio_unlock(folio);
3473 } while ((folio = xas_next_entry(xas, end_pgoff)) != NULL);
3478 static inline struct folio *first_map_page(struct address_space *mapping,
3479 struct xa_state *xas,
3482 return next_uptodate_page(xas_find(xas, end_pgoff),
3483 mapping, xas, end_pgoff);
3486 static inline struct folio *next_map_page(struct address_space *mapping,
3487 struct xa_state *xas,
3490 return next_uptodate_page(xas_next_entry(xas, end_pgoff),
3491 mapping, xas, end_pgoff);
3494 vm_fault_t filemap_map_pages(struct vm_fault *vmf,
3495 pgoff_t start_pgoff, pgoff_t end_pgoff)
3497 struct vm_area_struct *vma = vmf->vma;
3498 struct file *file = vma->vm_file;
3499 struct address_space *mapping = file->f_mapping;
3500 pgoff_t last_pgoff = start_pgoff;
3502 XA_STATE(xas, &mapping->i_pages, start_pgoff);
3503 struct folio *folio;
3505 unsigned int mmap_miss = READ_ONCE(file->f_ra.mmap_miss);
3509 folio = first_map_page(mapping, &xas, end_pgoff);
3513 if (filemap_map_pmd(vmf, folio, start_pgoff)) {
3514 ret = VM_FAULT_NOPAGE;
3518 addr = vma->vm_start + ((start_pgoff - vma->vm_pgoff) << PAGE_SHIFT);
3519 vmf->pte = pte_offset_map_lock(vma->vm_mm, vmf->pmd, addr, &vmf->ptl);
3521 folio_unlock(folio);
3527 page = folio_file_page(folio, xas.xa_index);
3528 if (PageHWPoison(page))
3534 addr += (xas.xa_index - last_pgoff) << PAGE_SHIFT;
3535 vmf->pte += xas.xa_index - last_pgoff;
3536 last_pgoff = xas.xa_index;
3539 * NOTE: If there're PTE markers, we'll leave them to be
3540 * handled in the specific fault path, and it'll prohibit the
3541 * fault-around logic.
3543 if (!pte_none(ptep_get(vmf->pte)))
3546 /* We're about to handle the fault */
3547 if (vmf->address == addr)
3548 ret = VM_FAULT_NOPAGE;
3550 do_set_pte(vmf, page, addr);
3551 /* no need to invalidate: a not-present page won't be cached */
3552 update_mmu_cache(vma, addr, vmf->pte);
3553 if (folio_more_pages(folio, xas.xa_index, end_pgoff)) {
3555 folio_ref_inc(folio);
3558 folio_unlock(folio);
3561 if (folio_more_pages(folio, xas.xa_index, end_pgoff)) {
3565 folio_unlock(folio);
3567 } while ((folio = next_map_page(mapping, &xas, end_pgoff)) != NULL);
3568 pte_unmap_unlock(vmf->pte, vmf->ptl);
3571 WRITE_ONCE(file->f_ra.mmap_miss, mmap_miss);
3574 EXPORT_SYMBOL(filemap_map_pages);
3576 vm_fault_t filemap_page_mkwrite(struct vm_fault *vmf)
3578 struct address_space *mapping = vmf->vma->vm_file->f_mapping;
3579 struct folio *folio = page_folio(vmf->page);
3580 vm_fault_t ret = VM_FAULT_LOCKED;
3582 sb_start_pagefault(mapping->host->i_sb);
3583 file_update_time(vmf->vma->vm_file);
3585 if (folio->mapping != mapping) {
3586 folio_unlock(folio);
3587 ret = VM_FAULT_NOPAGE;
3591 * We mark the folio dirty already here so that when freeze is in
3592 * progress, we are guaranteed that writeback during freezing will
3593 * see the dirty folio and writeprotect it again.
3595 folio_mark_dirty(folio);
3596 folio_wait_stable(folio);
3598 sb_end_pagefault(mapping->host->i_sb);
3602 const struct vm_operations_struct generic_file_vm_ops = {
3603 .fault = filemap_fault,
3604 .map_pages = filemap_map_pages,
3605 .page_mkwrite = filemap_page_mkwrite,
3608 /* This is used for a general mmap of a disk file */
3610 int generic_file_mmap(struct file *file, struct vm_area_struct *vma)
3612 struct address_space *mapping = file->f_mapping;
3614 if (!mapping->a_ops->read_folio)
3616 file_accessed(file);
3617 vma->vm_ops = &generic_file_vm_ops;
3622 * This is for filesystems which do not implement ->writepage.
3624 int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
3626 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
3628 return generic_file_mmap(file, vma);
3631 vm_fault_t filemap_page_mkwrite(struct vm_fault *vmf)
3633 return VM_FAULT_SIGBUS;
3635 int generic_file_mmap(struct file *file, struct vm_area_struct *vma)
3639 int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
3643 #endif /* CONFIG_MMU */
3645 EXPORT_SYMBOL(filemap_page_mkwrite);
3646 EXPORT_SYMBOL(generic_file_mmap);
3647 EXPORT_SYMBOL(generic_file_readonly_mmap);
3649 static struct folio *do_read_cache_folio(struct address_space *mapping,
3650 pgoff_t index, filler_t filler, struct file *file, gfp_t gfp)
3652 struct folio *folio;
3656 filler = mapping->a_ops->read_folio;
3658 folio = filemap_get_folio(mapping, index);
3659 if (IS_ERR(folio)) {
3660 folio = filemap_alloc_folio(gfp, 0);
3662 return ERR_PTR(-ENOMEM);
3663 err = filemap_add_folio(mapping, folio, index, gfp);
3664 if (unlikely(err)) {
3668 /* Presumably ENOMEM for xarray node */
3669 return ERR_PTR(err);
3674 if (folio_test_uptodate(folio))
3677 if (!folio_trylock(folio)) {
3678 folio_put_wait_locked(folio, TASK_UNINTERRUPTIBLE);
3682 /* Folio was truncated from mapping */
3683 if (!folio->mapping) {
3684 folio_unlock(folio);
3689 /* Someone else locked and filled the page in a very small window */
3690 if (folio_test_uptodate(folio)) {
3691 folio_unlock(folio);
3696 err = filemap_read_folio(file, filler, folio);
3699 if (err == AOP_TRUNCATED_PAGE)
3701 return ERR_PTR(err);
3705 folio_mark_accessed(folio);
3710 * read_cache_folio - Read into page cache, fill it if needed.
3711 * @mapping: The address_space to read from.
3712 * @index: The index to read.
3713 * @filler: Function to perform the read, or NULL to use aops->read_folio().
3714 * @file: Passed to filler function, may be NULL if not required.
3716 * Read one page into the page cache. If it succeeds, the folio returned
3717 * will contain @index, but it may not be the first page of the folio.
3719 * If the filler function returns an error, it will be returned to the
3722 * Context: May sleep. Expects mapping->invalidate_lock to be held.
3723 * Return: An uptodate folio on success, ERR_PTR() on failure.
3725 struct folio *read_cache_folio(struct address_space *mapping, pgoff_t index,
3726 filler_t filler, struct file *file)
3728 return do_read_cache_folio(mapping, index, filler, file,
3729 mapping_gfp_mask(mapping));
3731 EXPORT_SYMBOL(read_cache_folio);
3734 * mapping_read_folio_gfp - Read into page cache, using specified allocation flags.
3735 * @mapping: The address_space for the folio.
3736 * @index: The index that the allocated folio will contain.
3737 * @gfp: The page allocator flags to use if allocating.
3739 * This is the same as "read_cache_folio(mapping, index, NULL, NULL)", but with
3740 * any new memory allocations done using the specified allocation flags.
3742 * The most likely error from this function is EIO, but ENOMEM is
3743 * possible and so is EINTR. If ->read_folio returns another error,
3744 * that will be returned to the caller.
3746 * The function expects mapping->invalidate_lock to be already held.
3748 * Return: Uptodate folio on success, ERR_PTR() on failure.
3750 struct folio *mapping_read_folio_gfp(struct address_space *mapping,
3751 pgoff_t index, gfp_t gfp)
3753 return do_read_cache_folio(mapping, index, NULL, NULL, gfp);
3755 EXPORT_SYMBOL(mapping_read_folio_gfp);
3757 static struct page *do_read_cache_page(struct address_space *mapping,
3758 pgoff_t index, filler_t *filler, struct file *file, gfp_t gfp)
3760 struct folio *folio;
3762 folio = do_read_cache_folio(mapping, index, filler, file, gfp);
3764 return &folio->page;
3765 return folio_file_page(folio, index);
3768 struct page *read_cache_page(struct address_space *mapping,
3769 pgoff_t index, filler_t *filler, struct file *file)
3771 return do_read_cache_page(mapping, index, filler, file,
3772 mapping_gfp_mask(mapping));
3774 EXPORT_SYMBOL(read_cache_page);
3777 * read_cache_page_gfp - read into page cache, using specified page allocation flags.
3778 * @mapping: the page's address_space
3779 * @index: the page index
3780 * @gfp: the page allocator flags to use if allocating
3782 * This is the same as "read_mapping_page(mapping, index, NULL)", but with
3783 * any new page allocations done using the specified allocation flags.
3785 * If the page does not get brought uptodate, return -EIO.
3787 * The function expects mapping->invalidate_lock to be already held.
3789 * Return: up to date page on success, ERR_PTR() on failure.
3791 struct page *read_cache_page_gfp(struct address_space *mapping,
3795 return do_read_cache_page(mapping, index, NULL, NULL, gfp);
3797 EXPORT_SYMBOL(read_cache_page_gfp);
3800 * Warn about a page cache invalidation failure during a direct I/O write.
3802 static void dio_warn_stale_pagecache(struct file *filp)
3804 static DEFINE_RATELIMIT_STATE(_rs, 86400 * HZ, DEFAULT_RATELIMIT_BURST);
3808 errseq_set(&filp->f_mapping->wb_err, -EIO);
3809 if (__ratelimit(&_rs)) {
3810 path = file_path(filp, pathname, sizeof(pathname));
3813 pr_crit("Page cache invalidation failure on direct I/O. Possible data corruption due to collision with buffered I/O!\n");
3814 pr_crit("File: %s PID: %d Comm: %.20s\n", path, current->pid,
3819 void kiocb_invalidate_post_direct_write(struct kiocb *iocb, size_t count)
3821 struct address_space *mapping = iocb->ki_filp->f_mapping;
3823 if (mapping->nrpages &&
3824 invalidate_inode_pages2_range(mapping,
3825 iocb->ki_pos >> PAGE_SHIFT,
3826 (iocb->ki_pos + count - 1) >> PAGE_SHIFT))
3827 dio_warn_stale_pagecache(iocb->ki_filp);
3831 generic_file_direct_write(struct kiocb *iocb, struct iov_iter *from)
3833 struct address_space *mapping = iocb->ki_filp->f_mapping;
3834 size_t write_len = iov_iter_count(from);
3838 * If a page can not be invalidated, return 0 to fall back
3839 * to buffered write.
3841 written = kiocb_invalidate_pages(iocb, write_len);
3843 if (written == -EBUSY)
3848 written = mapping->a_ops->direct_IO(iocb, from);
3851 * Finally, try again to invalidate clean pages which might have been
3852 * cached by non-direct readahead, or faulted in by get_user_pages()
3853 * if the source of the write was an mmap'ed region of the file
3854 * we're writing. Either one is a pretty crazy thing to do,
3855 * so we don't support it 100%. If this invalidation
3856 * fails, tough, the write still worked...
3858 * Most of the time we do not need this since dio_complete() will do
3859 * the invalidation for us. However there are some file systems that
3860 * do not end up with dio_complete() being called, so let's not break
3861 * them by removing it completely.
3863 * Noticeable example is a blkdev_direct_IO().
3865 * Skip invalidation for async writes or if mapping has no pages.
3868 struct inode *inode = mapping->host;
3869 loff_t pos = iocb->ki_pos;
3871 kiocb_invalidate_post_direct_write(iocb, written);
3873 write_len -= written;
3874 if (pos > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
3875 i_size_write(inode, pos);
3876 mark_inode_dirty(inode);
3880 if (written != -EIOCBQUEUED)
3881 iov_iter_revert(from, write_len - iov_iter_count(from));
3884 EXPORT_SYMBOL(generic_file_direct_write);
3886 ssize_t generic_perform_write(struct kiocb *iocb, struct iov_iter *i)
3888 struct file *file = iocb->ki_filp;
3889 loff_t pos = iocb->ki_pos;
3890 struct address_space *mapping = file->f_mapping;
3891 const struct address_space_operations *a_ops = mapping->a_ops;
3893 ssize_t written = 0;
3897 unsigned long offset; /* Offset into pagecache page */
3898 unsigned long bytes; /* Bytes to write to page */
3899 size_t copied; /* Bytes copied from user */
3900 void *fsdata = NULL;
3902 offset = (pos & (PAGE_SIZE - 1));
3903 bytes = min_t(unsigned long, PAGE_SIZE - offset,
3908 * Bring in the user page that we will copy from _first_.
3909 * Otherwise there's a nasty deadlock on copying from the
3910 * same page as we're writing to, without it being marked
3913 if (unlikely(fault_in_iov_iter_readable(i, bytes) == bytes)) {
3918 if (fatal_signal_pending(current)) {
3923 status = a_ops->write_begin(file, mapping, pos, bytes,
3925 if (unlikely(status < 0))
3928 if (mapping_writably_mapped(mapping))
3929 flush_dcache_page(page);
3931 copied = copy_page_from_iter_atomic(page, offset, bytes, i);
3932 flush_dcache_page(page);
3934 status = a_ops->write_end(file, mapping, pos, bytes, copied,
3936 if (unlikely(status != copied)) {
3937 iov_iter_revert(i, copied - max(status, 0L));
3938 if (unlikely(status < 0))
3943 if (unlikely(status == 0)) {
3945 * A short copy made ->write_end() reject the
3946 * thing entirely. Might be memory poisoning
3947 * halfway through, might be a race with munmap,
3948 * might be severe memory pressure.
3957 balance_dirty_pages_ratelimited(mapping);
3958 } while (iov_iter_count(i));
3962 iocb->ki_pos += written;
3965 EXPORT_SYMBOL(generic_perform_write);
3968 * __generic_file_write_iter - write data to a file
3969 * @iocb: IO state structure (file, offset, etc.)
3970 * @from: iov_iter with data to write
3972 * This function does all the work needed for actually writing data to a
3973 * file. It does all basic checks, removes SUID from the file, updates
3974 * modification times and calls proper subroutines depending on whether we
3975 * do direct IO or a standard buffered write.
3977 * It expects i_rwsem to be grabbed unless we work on a block device or similar
3978 * object which does not need locking at all.
3980 * This function does *not* take care of syncing data in case of O_SYNC write.
3981 * A caller has to handle it. This is mainly due to the fact that we want to
3982 * avoid syncing under i_rwsem.
3985 * * number of bytes written, even for truncated writes
3986 * * negative error code if no data has been written at all
3988 ssize_t __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
3990 struct file *file = iocb->ki_filp;
3991 struct address_space *mapping = file->f_mapping;
3992 struct inode *inode = mapping->host;
3995 ret = file_remove_privs(file);
3999 ret = file_update_time(file);
4003 if (iocb->ki_flags & IOCB_DIRECT) {
4004 ret = generic_file_direct_write(iocb, from);
4006 * If the write stopped short of completing, fall back to
4007 * buffered writes. Some filesystems do this for writes to
4008 * holes, for example. For DAX files, a buffered write will
4009 * not succeed (even if it did, DAX does not handle dirty
4010 * page-cache pages correctly).
4012 if (ret < 0 || !iov_iter_count(from) || IS_DAX(inode))
4014 return direct_write_fallback(iocb, from, ret,
4015 generic_perform_write(iocb, from));
4018 return generic_perform_write(iocb, from);
4020 EXPORT_SYMBOL(__generic_file_write_iter);
4023 * generic_file_write_iter - write data to a file
4024 * @iocb: IO state structure
4025 * @from: iov_iter with data to write
4027 * This is a wrapper around __generic_file_write_iter() to be used by most
4028 * filesystems. It takes care of syncing the file in case of O_SYNC file
4029 * and acquires i_rwsem as needed.
4031 * * negative error code if no data has been written at all of
4032 * vfs_fsync_range() failed for a synchronous write
4033 * * number of bytes written, even for truncated writes
4035 ssize_t generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
4037 struct file *file = iocb->ki_filp;
4038 struct inode *inode = file->f_mapping->host;
4042 ret = generic_write_checks(iocb, from);
4044 ret = __generic_file_write_iter(iocb, from);
4045 inode_unlock(inode);
4048 ret = generic_write_sync(iocb, ret);
4051 EXPORT_SYMBOL(generic_file_write_iter);
4054 * filemap_release_folio() - Release fs-specific metadata on a folio.
4055 * @folio: The folio which the kernel is trying to free.
4056 * @gfp: Memory allocation flags (and I/O mode).
4058 * The address_space is trying to release any data attached to a folio
4059 * (presumably at folio->private).
4061 * This will also be called if the private_2 flag is set on a page,
4062 * indicating that the folio has other metadata associated with it.
4064 * The @gfp argument specifies whether I/O may be performed to release
4065 * this page (__GFP_IO), and whether the call may block
4066 * (__GFP_RECLAIM & __GFP_FS).
4068 * Return: %true if the release was successful, otherwise %false.
4070 bool filemap_release_folio(struct folio *folio, gfp_t gfp)
4072 struct address_space * const mapping = folio->mapping;
4074 BUG_ON(!folio_test_locked(folio));
4075 if (folio_test_writeback(folio))
4078 if (mapping && mapping->a_ops->release_folio)
4079 return mapping->a_ops->release_folio(folio, gfp);
4080 return try_to_free_buffers(folio);
4082 EXPORT_SYMBOL(filemap_release_folio);
4084 #ifdef CONFIG_CACHESTAT_SYSCALL
4086 * filemap_cachestat() - compute the page cache statistics of a mapping
4087 * @mapping: The mapping to compute the statistics for.
4088 * @first_index: The starting page cache index.
4089 * @last_index: The final page index (inclusive).
4090 * @cs: the cachestat struct to write the result to.
4092 * This will query the page cache statistics of a mapping in the
4093 * page range of [first_index, last_index] (inclusive). The statistics
4094 * queried include: number of dirty pages, number of pages marked for
4095 * writeback, and the number of (recently) evicted pages.
4097 static void filemap_cachestat(struct address_space *mapping,
4098 pgoff_t first_index, pgoff_t last_index, struct cachestat *cs)
4100 XA_STATE(xas, &mapping->i_pages, first_index);
4101 struct folio *folio;
4104 xas_for_each(&xas, folio, last_index) {
4105 unsigned long nr_pages;
4106 pgoff_t folio_first_index, folio_last_index;
4108 if (xas_retry(&xas, folio))
4111 if (xa_is_value(folio)) {
4112 /* page is evicted */
4113 void *shadow = (void *)folio;
4114 bool workingset; /* not used */
4115 int order = xa_get_order(xas.xa, xas.xa_index);
4117 nr_pages = 1 << order;
4118 folio_first_index = round_down(xas.xa_index, 1 << order);
4119 folio_last_index = folio_first_index + nr_pages - 1;
4121 /* Folios might straddle the range boundaries, only count covered pages */
4122 if (folio_first_index < first_index)
4123 nr_pages -= first_index - folio_first_index;
4125 if (folio_last_index > last_index)
4126 nr_pages -= folio_last_index - last_index;
4128 cs->nr_evicted += nr_pages;
4130 #ifdef CONFIG_SWAP /* implies CONFIG_MMU */
4131 if (shmem_mapping(mapping)) {
4132 /* shmem file - in swap cache */
4133 swp_entry_t swp = radix_to_swp_entry(folio);
4135 shadow = get_shadow_from_swap_cache(swp);
4138 if (workingset_test_recent(shadow, true, &workingset))
4139 cs->nr_recently_evicted += nr_pages;
4144 nr_pages = folio_nr_pages(folio);
4145 folio_first_index = folio_pgoff(folio);
4146 folio_last_index = folio_first_index + nr_pages - 1;
4148 /* Folios might straddle the range boundaries, only count covered pages */
4149 if (folio_first_index < first_index)
4150 nr_pages -= first_index - folio_first_index;
4152 if (folio_last_index > last_index)
4153 nr_pages -= folio_last_index - last_index;
4155 /* page is in cache */
4156 cs->nr_cache += nr_pages;
4158 if (folio_test_dirty(folio))
4159 cs->nr_dirty += nr_pages;
4161 if (folio_test_writeback(folio))
4162 cs->nr_writeback += nr_pages;
4165 if (need_resched()) {
4174 * The cachestat(2) system call.
4176 * cachestat() returns the page cache statistics of a file in the
4177 * bytes range specified by `off` and `len`: number of cached pages,
4178 * number of dirty pages, number of pages marked for writeback,
4179 * number of evicted pages, and number of recently evicted pages.
4181 * An evicted page is a page that is previously in the page cache
4182 * but has been evicted since. A page is recently evicted if its last
4183 * eviction was recent enough that its reentry to the cache would
4184 * indicate that it is actively being used by the system, and that
4185 * there is memory pressure on the system.
4187 * `off` and `len` must be non-negative integers. If `len` > 0,
4188 * the queried range is [`off`, `off` + `len`]. If `len` == 0,
4189 * we will query in the range from `off` to the end of the file.
4191 * The `flags` argument is unused for now, but is included for future
4192 * extensibility. User should pass 0 (i.e no flag specified).
4194 * Currently, hugetlbfs is not supported.
4196 * Because the status of a page can change after cachestat() checks it
4197 * but before it returns to the application, the returned values may
4198 * contain stale information.
4202 * -EFAULT - cstat or cstat_range points to an illegal address
4203 * -EINVAL - invalid flags
4204 * -EBADF - invalid file descriptor
4205 * -EOPNOTSUPP - file descriptor is of a hugetlbfs file
4207 SYSCALL_DEFINE4(cachestat, unsigned int, fd,
4208 struct cachestat_range __user *, cstat_range,
4209 struct cachestat __user *, cstat, unsigned int, flags)
4211 struct fd f = fdget(fd);
4212 struct address_space *mapping;
4213 struct cachestat_range csr;
4214 struct cachestat cs;
4215 pgoff_t first_index, last_index;
4220 if (copy_from_user(&csr, cstat_range,
4221 sizeof(struct cachestat_range))) {
4226 /* hugetlbfs is not supported */
4227 if (is_file_hugepages(f.file)) {
4237 first_index = csr.off >> PAGE_SHIFT;
4239 csr.len == 0 ? ULONG_MAX : (csr.off + csr.len - 1) >> PAGE_SHIFT;
4240 memset(&cs, 0, sizeof(struct cachestat));
4241 mapping = f.file->f_mapping;
4242 filemap_cachestat(mapping, first_index, last_index, &cs);
4245 if (copy_to_user(cstat, &cs, sizeof(struct cachestat)))
4250 #endif /* CONFIG_CACHESTAT_SYSCALL */