Thomas Gleixner | 457c899 | 2019-05-19 13:08:55 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * mm/truncate.c - code for taking down pages from address_spaces |
| 4 | * |
| 5 | * Copyright (C) 2002, Linus Torvalds |
| 6 | * |
Francois Cami | e1f8e87 | 2008-10-15 22:01:59 -0700 | [diff] [blame] | 7 | * 10Sep2002 Andrew Morton |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Initial version. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
Alexey Dobriyan | 4af3c9c | 2007-10-16 23:29:23 -0700 | [diff] [blame] | 12 | #include <linux/backing-dev.h> |
Ross Zwisler | f9fe48b | 2016-01-22 15:10:40 -0800 | [diff] [blame] | 13 | #include <linux/dax.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/gfp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/mm.h> |
Nick Piggin | 0fd0e6b | 2006-09-27 01:50:02 -0700 | [diff] [blame] | 16 | #include <linux/swap.h> |
Paul Gortmaker | b95f1b31 | 2011-10-16 02:01:52 -0400 | [diff] [blame] | 17 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/pagemap.h> |
Nate Diller | 01f2705d | 2007-05-09 02:35:07 -0700 | [diff] [blame] | 19 | #include <linux/highmem.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/pagevec.h> |
Andrew Morton | e08748ce | 2006-12-10 02:19:31 -0800 | [diff] [blame] | 21 | #include <linux/task_io_accounting_ops.h> |
Matthew Wilcox (Oracle) | f50015a | 2022-02-09 20:21:51 +0000 | [diff] [blame] | 22 | #include <linux/buffer_head.h> /* grr. try_to_release_page */ |
Hugh Dickins | 3a4f8a0 | 2017-02-24 14:59:36 -0800 | [diff] [blame] | 23 | #include <linux/shmem_fs.h> |
Jan Kara | 90a8020 | 2014-10-01 21:49:18 -0400 | [diff] [blame] | 24 | #include <linux/rmap.h> |
Rik van Riel | ba470de | 2008-10-18 20:26:50 -0700 | [diff] [blame] | 25 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 27 | /* |
| 28 | * Regular page slots are stabilized by the page lock even without the tree |
| 29 | * itself locked. These unlocked entries need verification under the tree |
| 30 | * lock. |
| 31 | */ |
| 32 | static inline void __clear_shadow_entry(struct address_space *mapping, |
| 33 | pgoff_t index, void *entry) |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 34 | { |
Matthew Wilcox | 69b6c13 | 2017-11-25 22:52:46 -0500 | [diff] [blame] | 35 | XA_STATE(xas, &mapping->i_pages, index); |
Johannes Weiner | 449dd69 | 2014-04-03 14:47:56 -0700 | [diff] [blame] | 36 | |
Matthew Wilcox | 69b6c13 | 2017-11-25 22:52:46 -0500 | [diff] [blame] | 37 | xas_set_update(&xas, workingset_update_node); |
| 38 | if (xas_load(&xas) != entry) |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 39 | return; |
Matthew Wilcox | 69b6c13 | 2017-11-25 22:52:46 -0500 | [diff] [blame] | 40 | xas_store(&xas, NULL); |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | static void clear_shadow_entry(struct address_space *mapping, pgoff_t index, |
| 44 | void *entry) |
| 45 | { |
Johannes Weiner | 51b8c1f | 2021-11-08 18:31:24 -0800 | [diff] [blame] | 46 | spin_lock(&mapping->host->i_lock); |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 47 | xa_lock_irq(&mapping->i_pages); |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 48 | __clear_shadow_entry(mapping, index, entry); |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 49 | xa_unlock_irq(&mapping->i_pages); |
Johannes Weiner | 51b8c1f | 2021-11-08 18:31:24 -0800 | [diff] [blame] | 50 | if (mapping_shrinkable(mapping)) |
| 51 | inode_add_lru(mapping->host); |
| 52 | spin_unlock(&mapping->host->i_lock); |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 53 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 55 | /* |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 56 | * Unconditionally remove exceptional entries. Usually called from truncate |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 57 | * path. Note that the folio_batch may be altered by this function by removing |
Matthew Wilcox (Oracle) | 1613fac | 2021-12-07 14:28:49 -0500 | [diff] [blame] | 58 | * exceptional entries similar to what folio_batch_remove_exceptionals() does. |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 59 | */ |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 60 | static void truncate_folio_batch_exceptionals(struct address_space *mapping, |
| 61 | struct folio_batch *fbatch, pgoff_t *indices) |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 62 | { |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 63 | int i, j; |
Matthew Wilcox (Oracle) | 31d270f | 2021-02-25 17:16:03 -0800 | [diff] [blame] | 64 | bool dax; |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 65 | |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 66 | /* Handled by shmem itself */ |
| 67 | if (shmem_mapping(mapping)) |
| 68 | return; |
| 69 | |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 70 | for (j = 0; j < folio_batch_count(fbatch); j++) |
| 71 | if (xa_is_value(fbatch->folios[j])) |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 72 | break; |
| 73 | |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 74 | if (j == folio_batch_count(fbatch)) |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 75 | return; |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 76 | |
| 77 | dax = dax_mapping(mapping); |
Johannes Weiner | 51b8c1f | 2021-11-08 18:31:24 -0800 | [diff] [blame] | 78 | if (!dax) { |
| 79 | spin_lock(&mapping->host->i_lock); |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 80 | xa_lock_irq(&mapping->i_pages); |
Johannes Weiner | 51b8c1f | 2021-11-08 18:31:24 -0800 | [diff] [blame] | 81 | } |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 82 | |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 83 | for (i = j; i < folio_batch_count(fbatch); i++) { |
| 84 | struct folio *folio = fbatch->folios[i]; |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 85 | pgoff_t index = indices[i]; |
| 86 | |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 87 | if (!xa_is_value(folio)) { |
| 88 | fbatch->folios[j++] = folio; |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 89 | continue; |
| 90 | } |
| 91 | |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 92 | if (unlikely(dax)) { |
| 93 | dax_delete_mapping_entry(mapping, index); |
| 94 | continue; |
| 95 | } |
| 96 | |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 97 | __clear_shadow_entry(mapping, index, folio); |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 98 | } |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 99 | |
Johannes Weiner | 51b8c1f | 2021-11-08 18:31:24 -0800 | [diff] [blame] | 100 | if (!dax) { |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 101 | xa_unlock_irq(&mapping->i_pages); |
Johannes Weiner | 51b8c1f | 2021-11-08 18:31:24 -0800 | [diff] [blame] | 102 | if (mapping_shrinkable(mapping)) |
| 103 | inode_add_lru(mapping->host); |
| 104 | spin_unlock(&mapping->host->i_lock); |
| 105 | } |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 106 | fbatch->nr = j; |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 107 | } |
| 108 | |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 109 | /* |
| 110 | * Invalidate exceptional entry if easily possible. This handles exceptional |
Ross Zwisler | 4636e70 | 2017-05-12 15:46:47 -0700 | [diff] [blame] | 111 | * entries for invalidate_inode_pages(). |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 112 | */ |
| 113 | static int invalidate_exceptional_entry(struct address_space *mapping, |
| 114 | pgoff_t index, void *entry) |
| 115 | { |
Ross Zwisler | 4636e70 | 2017-05-12 15:46:47 -0700 | [diff] [blame] | 116 | /* Handled by shmem itself, or for DAX we do nothing. */ |
| 117 | if (shmem_mapping(mapping) || dax_mapping(mapping)) |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 118 | return 1; |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 119 | clear_shadow_entry(mapping, index, entry); |
| 120 | return 1; |
| 121 | } |
| 122 | |
| 123 | /* |
| 124 | * Invalidate exceptional entry if clean. This handles exceptional entries for |
| 125 | * invalidate_inode_pages2() so for DAX it evicts only clean entries. |
| 126 | */ |
| 127 | static int invalidate_exceptional_entry2(struct address_space *mapping, |
| 128 | pgoff_t index, void *entry) |
| 129 | { |
| 130 | /* Handled by shmem itself */ |
| 131 | if (shmem_mapping(mapping)) |
| 132 | return 1; |
| 133 | if (dax_mapping(mapping)) |
| 134 | return dax_invalidate_mapping_entry_sync(mapping, index); |
| 135 | clear_shadow_entry(mapping, index, entry); |
| 136 | return 1; |
| 137 | } |
| 138 | |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 139 | /** |
Matthew Wilcox (Oracle) | 5ad6b2b | 2022-02-09 20:21:28 +0000 | [diff] [blame] | 140 | * folio_invalidate - Invalidate part or all of a folio. |
| 141 | * @folio: The folio which is affected. |
Lukas Czerner | d47992f | 2013-05-21 23:17:23 -0400 | [diff] [blame] | 142 | * @offset: start of the range to invalidate |
| 143 | * @length: length of the range to invalidate |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 144 | * |
Matthew Wilcox (Oracle) | 5ad6b2b | 2022-02-09 20:21:28 +0000 | [diff] [blame] | 145 | * folio_invalidate() is called when all or part of the folio has become |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 146 | * invalidated by a truncate operation. |
| 147 | * |
Matthew Wilcox (Oracle) | 5ad6b2b | 2022-02-09 20:21:28 +0000 | [diff] [blame] | 148 | * folio_invalidate() does not have to release all buffers, but it must |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 149 | * ensure that no dirty buffer is left outside @offset and that no I/O |
| 150 | * is underway against any of the blocks which are outside the truncation |
| 151 | * point. Because the caller is about to free (and possibly reuse) those |
| 152 | * blocks on-disk. |
| 153 | */ |
Matthew Wilcox (Oracle) | 5ad6b2b | 2022-02-09 20:21:28 +0000 | [diff] [blame] | 154 | void folio_invalidate(struct folio *folio, size_t offset, size_t length) |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 155 | { |
Matthew Wilcox (Oracle) | 128d1f8 | 2022-02-09 20:21:32 +0000 | [diff] [blame] | 156 | const struct address_space_operations *aops = folio->mapping->a_ops; |
Lukas Czerner | d47992f | 2013-05-21 23:17:23 -0400 | [diff] [blame] | 157 | |
Matthew Wilcox (Oracle) | f50015a | 2022-02-09 20:21:51 +0000 | [diff] [blame] | 158 | if (aops->invalidate_folio) |
Matthew Wilcox (Oracle) | 128d1f8 | 2022-02-09 20:21:32 +0000 | [diff] [blame] | 159 | aops->invalidate_folio(folio, offset, length); |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 160 | } |
Matthew Wilcox (Oracle) | 5ad6b2b | 2022-02-09 20:21:28 +0000 | [diff] [blame] | 161 | EXPORT_SYMBOL_GPL(folio_invalidate); |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 162 | |
Linus Torvalds | ecdfc97 | 2007-01-26 12:47:06 -0800 | [diff] [blame] | 163 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | * If truncate cannot remove the fs-private metadata from the page, the page |
Shaohua Li | 62e1c55 | 2008-02-04 22:29:33 -0800 | [diff] [blame] | 165 | * becomes orphaned. It will be left on the LRU and may even be mapped into |
Nick Piggin | 54cb882 | 2007-07-19 01:46:59 -0700 | [diff] [blame] | 166 | * user pagetables if we're racing with filemap_fault(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | * |
Matthew Wilcox (Oracle) | fc3a5ac | 2020-10-15 20:05:50 -0700 | [diff] [blame] | 168 | * We need to bail out if page->mapping is no longer equal to the original |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | * mapping. This happens a) when the VM reclaimed the page while we waited on |
Andrew Morton | fc0ecff | 2007-02-10 01:45:39 -0800 | [diff] [blame] | 170 | * its lock, b) when a concurrent invalidate_mapping_pages got there first and |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | * c) when tmpfs swizzles a page between a tmpfs inode and swapper_space. |
| 172 | */ |
Matthew Wilcox (Oracle) | efe99bb | 2021-11-26 13:58:10 -0500 | [diff] [blame] | 173 | static void truncate_cleanup_folio(struct folio *folio) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | { |
Matthew Wilcox (Oracle) | efe99bb | 2021-11-26 13:58:10 -0500 | [diff] [blame] | 175 | if (folio_mapped(folio)) |
Matthew Wilcox (Oracle) | 3506659 | 2021-11-28 14:53:35 -0500 | [diff] [blame] | 176 | unmap_mapping_folio(folio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | |
Matthew Wilcox (Oracle) | efe99bb | 2021-11-26 13:58:10 -0500 | [diff] [blame] | 178 | if (folio_has_private(folio)) |
Matthew Wilcox (Oracle) | 5ad6b2b | 2022-02-09 20:21:28 +0000 | [diff] [blame] | 179 | folio_invalidate(folio, 0, folio_size(folio)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | |
Konstantin Khlebnikov | b9ea251 | 2015-04-14 15:45:27 -0700 | [diff] [blame] | 181 | /* |
| 182 | * Some filesystems seem to re-dirty the page even after |
| 183 | * the VM has canceled the dirty bit (eg ext3 journaling). |
| 184 | * Hence dirty accounting check is placed after invalidation. |
| 185 | */ |
Matthew Wilcox (Oracle) | efe99bb | 2021-11-26 13:58:10 -0500 | [diff] [blame] | 186 | folio_cancel_dirty(folio); |
| 187 | folio_clear_mappedtodisk(folio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } |
| 189 | |
Matthew Wilcox (Oracle) | 1e84a3d | 2021-12-02 16:01:55 -0500 | [diff] [blame] | 190 | int truncate_inode_folio(struct address_space *mapping, struct folio *folio) |
Nick Piggin | 750b498 | 2009-09-16 11:50:12 +0200 | [diff] [blame] | 191 | { |
Matthew Wilcox (Oracle) | 1e84a3d | 2021-12-02 16:01:55 -0500 | [diff] [blame] | 192 | if (folio->mapping != mapping) |
Jan Kara | 9f4e41f | 2017-11-15 17:37:15 -0800 | [diff] [blame] | 193 | return -EIO; |
| 194 | |
Matthew Wilcox (Oracle) | efe99bb | 2021-11-26 13:58:10 -0500 | [diff] [blame] | 195 | truncate_cleanup_folio(folio); |
| 196 | filemap_remove_folio(folio); |
Jan Kara | 9f4e41f | 2017-11-15 17:37:15 -0800 | [diff] [blame] | 197 | return 0; |
Nick Piggin | 750b498 | 2009-09-16 11:50:12 +0200 | [diff] [blame] | 198 | } |
| 199 | |
Wu Fengguang | 83f7866 | 2009-09-16 11:50:13 +0200 | [diff] [blame] | 200 | /* |
Matthew Wilcox (Oracle) | b9a8a41 | 2020-05-27 17:59:22 -0400 | [diff] [blame] | 201 | * Handle partial folios. The folio may be entirely within the |
| 202 | * range if a split has raced with us. If not, we zero the part of the |
| 203 | * folio that's within the [start, end] range, and then split the folio if |
| 204 | * it's large. split_page_range() will discard pages which now lie beyond |
| 205 | * i_size, and we rely on the caller to discard pages which lie within a |
| 206 | * newly created hole. |
| 207 | * |
| 208 | * Returns false if splitting failed so the caller can avoid |
| 209 | * discarding the entire folio which is stubbornly unsplit. |
| 210 | */ |
| 211 | bool truncate_inode_partial_folio(struct folio *folio, loff_t start, loff_t end) |
| 212 | { |
| 213 | loff_t pos = folio_pos(folio); |
| 214 | unsigned int offset, length; |
| 215 | |
| 216 | if (pos < start) |
| 217 | offset = start - pos; |
| 218 | else |
| 219 | offset = 0; |
| 220 | length = folio_size(folio); |
| 221 | if (pos + length <= (u64)end) |
| 222 | length = length - offset; |
| 223 | else |
| 224 | length = end + 1 - pos - offset; |
| 225 | |
| 226 | folio_wait_writeback(folio); |
| 227 | if (length == folio_size(folio)) { |
| 228 | truncate_inode_folio(folio->mapping, folio); |
| 229 | return true; |
| 230 | } |
| 231 | |
| 232 | /* |
| 233 | * We may be zeroing pages we're about to discard, but it avoids |
| 234 | * doing a complex calculation here, and then doing the zeroing |
| 235 | * anyway if the page split fails. |
| 236 | */ |
| 237 | folio_zero_range(folio, offset, length); |
| 238 | |
Matthew Wilcox (Oracle) | b9a8a41 | 2020-05-27 17:59:22 -0400 | [diff] [blame] | 239 | if (folio_has_private(folio)) |
Matthew Wilcox (Oracle) | 5ad6b2b | 2022-02-09 20:21:28 +0000 | [diff] [blame] | 240 | folio_invalidate(folio, offset, length); |
Matthew Wilcox (Oracle) | b9a8a41 | 2020-05-27 17:59:22 -0400 | [diff] [blame] | 241 | if (!folio_test_large(folio)) |
| 242 | return true; |
Matthew Wilcox (Oracle) | d788f5b | 2022-09-02 20:46:00 +0100 | [diff] [blame] | 243 | if (split_folio(folio) == 0) |
Matthew Wilcox (Oracle) | b9a8a41 | 2020-05-27 17:59:22 -0400 | [diff] [blame] | 244 | return true; |
| 245 | if (folio_test_dirty(folio)) |
| 246 | return false; |
| 247 | truncate_inode_folio(folio->mapping, folio); |
| 248 | return true; |
| 249 | } |
| 250 | |
| 251 | /* |
Andi Kleen | 2571873 | 2009-09-16 11:50:13 +0200 | [diff] [blame] | 252 | * Used to get rid of pages on hardware memory corruption. |
| 253 | */ |
| 254 | int generic_error_remove_page(struct address_space *mapping, struct page *page) |
| 255 | { |
Matthew Wilcox (Oracle) | 1e84a3d | 2021-12-02 16:01:55 -0500 | [diff] [blame] | 256 | VM_BUG_ON_PAGE(PageTail(page), page); |
| 257 | |
Andi Kleen | 2571873 | 2009-09-16 11:50:13 +0200 | [diff] [blame] | 258 | if (!mapping) |
| 259 | return -EINVAL; |
| 260 | /* |
| 261 | * Only punch for normal data pages for now. |
| 262 | * Handling other types like directories would need more auditing. |
| 263 | */ |
| 264 | if (!S_ISREG(mapping->host->i_mode)) |
| 265 | return -EIO; |
Matthew Wilcox (Oracle) | 1e84a3d | 2021-12-02 16:01:55 -0500 | [diff] [blame] | 266 | return truncate_inode_folio(mapping, page_folio(page)); |
Andi Kleen | 2571873 | 2009-09-16 11:50:13 +0200 | [diff] [blame] | 267 | } |
| 268 | EXPORT_SYMBOL(generic_error_remove_page); |
| 269 | |
Matthew Wilcox (Oracle) | d6c75dc | 2022-02-13 15:22:28 -0500 | [diff] [blame] | 270 | static long mapping_evict_folio(struct address_space *mapping, |
| 271 | struct folio *folio) |
Wu Fengguang | 83f7866 | 2009-09-16 11:50:13 +0200 | [diff] [blame] | 272 | { |
Matthew Wilcox (Oracle) | 4418481 | 2022-02-12 17:39:10 -0500 | [diff] [blame] | 273 | if (folio_test_dirty(folio) || folio_test_writeback(folio)) |
Wu Fengguang | 83f7866 | 2009-09-16 11:50:13 +0200 | [diff] [blame] | 274 | return 0; |
Matthew Wilcox (Oracle) | e41c81d | 2022-02-12 17:43:16 -0500 | [diff] [blame] | 275 | /* The refcount will be elevated if any page in the folio is mapped */ |
| 276 | if (folio_ref_count(folio) > |
| 277 | folio_nr_pages(folio) + folio_has_private(folio) + 1) |
Wu Fengguang | 83f7866 | 2009-09-16 11:50:13 +0200 | [diff] [blame] | 278 | return 0; |
Matthew Wilcox (Oracle) | 4418481 | 2022-02-12 17:39:10 -0500 | [diff] [blame] | 279 | if (folio_has_private(folio) && !filemap_release_folio(folio, 0)) |
Matthew Wilcox (Oracle) | 1b8ddbe | 2022-02-12 15:27:42 -0500 | [diff] [blame] | 280 | return 0; |
| 281 | |
Matthew Wilcox (Oracle) | 5100da3 | 2022-02-12 22:48:55 -0500 | [diff] [blame] | 282 | return remove_mapping(mapping, folio); |
Wu Fengguang | 83f7866 | 2009-09-16 11:50:13 +0200 | [diff] [blame] | 283 | } |
| 284 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | /** |
Matthew Wilcox (Oracle) | d6c75dc | 2022-02-13 15:22:28 -0500 | [diff] [blame] | 286 | * invalidate_inode_page() - Remove an unused page from the pagecache. |
| 287 | * @page: The page to remove. |
| 288 | * |
| 289 | * Safely invalidate one page from its pagecache mapping. |
| 290 | * It only drops clean, unused pages. |
| 291 | * |
| 292 | * Context: Page must be locked. |
| 293 | * Return: The number of pages successfully removed. |
| 294 | */ |
| 295 | long invalidate_inode_page(struct page *page) |
| 296 | { |
| 297 | struct folio *folio = page_folio(page); |
| 298 | struct address_space *mapping = folio_mapping(folio); |
| 299 | |
| 300 | /* The page may have been truncated before it was locked */ |
| 301 | if (!mapping) |
| 302 | return 0; |
| 303 | return mapping_evict_folio(mapping, folio); |
| 304 | } |
| 305 | |
| 306 | /** |
Liu Bo | 73c1e20 | 2012-02-21 10:57:20 +0800 | [diff] [blame] | 307 | * truncate_inode_pages_range - truncate range of pages specified by start & end byte offsets |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | * @mapping: mapping to truncate |
| 309 | * @lstart: offset from which to truncate |
Lukas Czerner | 5a72039 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 310 | * @lend: offset to which to truncate (inclusive) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | * |
Hans Reiser | d733907 | 2006-01-06 00:10:36 -0800 | [diff] [blame] | 312 | * Truncate the page cache, removing the pages that are between |
Lukas Czerner | 5a72039 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 313 | * specified offsets (and zeroing out partial pages |
| 314 | * if lstart or lend + 1 is not page aligned). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | * |
| 316 | * Truncate takes two passes - the first pass is nonblocking. It will not |
| 317 | * block on page locks and it will not block on writeback. The second pass |
| 318 | * will wait. This is to prevent as much IO as possible in the affected region. |
| 319 | * The first pass will remove most pages, so the search cost of the second pass |
| 320 | * is low. |
| 321 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | * We pass down the cache-hot hint to the page freeing code. Even if the |
| 323 | * mapping is large, it is probably the case that the final pages are the most |
| 324 | * recently touched, and freeing happens in ascending file offset order. |
Lukas Czerner | 5a72039 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 325 | * |
Matthew Wilcox (Oracle) | f50015a | 2022-02-09 20:21:51 +0000 | [diff] [blame] | 326 | * Note that since ->invalidate_folio() accepts range to invalidate |
Lukas Czerner | 5a72039 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 327 | * truncate_inode_pages_range is able to handle cases where lend + 1 is not |
| 328 | * page aligned properly. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | */ |
Hans Reiser | d733907 | 2006-01-06 00:10:36 -0800 | [diff] [blame] | 330 | void truncate_inode_pages_range(struct address_space *mapping, |
| 331 | loff_t lstart, loff_t lend) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | { |
Lukas Czerner | 5a72039 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 333 | pgoff_t start; /* inclusive */ |
| 334 | pgoff_t end; /* exclusive */ |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 335 | struct folio_batch fbatch; |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 336 | pgoff_t indices[PAGEVEC_SIZE]; |
Lukas Czerner | 5a72039 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 337 | pgoff_t index; |
| 338 | int i; |
Matthew Wilcox (Oracle) | b9a8a41 | 2020-05-27 17:59:22 -0400 | [diff] [blame] | 339 | struct folio *folio; |
| 340 | bool same_folio; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
Matthew Wilcox (Oracle) | 7716506 | 2021-05-04 18:32:45 -0700 | [diff] [blame] | 342 | if (mapping_empty(mapping)) |
Christoph Hellwig | 0a4ee51 | 2022-01-21 22:14:34 -0800 | [diff] [blame] | 343 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
Lukas Czerner | 5a72039 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 345 | /* |
| 346 | * 'start' and 'end' always covers the range of pages to be fully |
| 347 | * truncated. Partial pages are covered with 'partial_start' at the |
| 348 | * start of the range and 'partial_end' at the end of the range. |
| 349 | * Note that 'end' is exclusive while 'lend' is inclusive. |
| 350 | */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 351 | start = (lstart + PAGE_SIZE - 1) >> PAGE_SHIFT; |
Lukas Czerner | 5a72039 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 352 | if (lend == -1) |
| 353 | /* |
| 354 | * lend == -1 indicates end-of-file so we have to set 'end' |
| 355 | * to the highest possible pgoff_t and since the type is |
| 356 | * unsigned we're using -1. |
| 357 | */ |
| 358 | end = -1; |
| 359 | else |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 360 | end = (lend + 1) >> PAGE_SHIFT; |
Hans Reiser | d733907 | 2006-01-06 00:10:36 -0800 | [diff] [blame] | 361 | |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 362 | folio_batch_init(&fbatch); |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 363 | index = start; |
Matthew Wilcox (Oracle) | 5c211ba | 2021-02-25 17:15:56 -0800 | [diff] [blame] | 364 | while (index < end && find_lock_entries(mapping, index, end - 1, |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 365 | &fbatch, indices)) { |
| 366 | index = indices[folio_batch_count(&fbatch) - 1] + 1; |
| 367 | truncate_folio_batch_exceptionals(mapping, &fbatch, indices); |
| 368 | for (i = 0; i < folio_batch_count(&fbatch); i++) |
| 369 | truncate_cleanup_folio(fbatch.folios[i]); |
| 370 | delete_from_page_cache_batch(mapping, &fbatch); |
| 371 | for (i = 0; i < folio_batch_count(&fbatch); i++) |
| 372 | folio_unlock(fbatch.folios[i]); |
| 373 | folio_batch_release(&fbatch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | cond_resched(); |
| 375 | } |
Matthew Wilcox (Oracle) | 5c211ba | 2021-02-25 17:15:56 -0800 | [diff] [blame] | 376 | |
Matthew Wilcox (Oracle) | b9a8a41 | 2020-05-27 17:59:22 -0400 | [diff] [blame] | 377 | same_folio = (lstart >> PAGE_SHIFT) == (lend >> PAGE_SHIFT); |
| 378 | folio = __filemap_get_folio(mapping, lstart >> PAGE_SHIFT, FGP_LOCK, 0); |
| 379 | if (folio) { |
| 380 | same_folio = lend < folio_pos(folio) + folio_size(folio); |
| 381 | if (!truncate_inode_partial_folio(folio, lstart, lend)) { |
| 382 | start = folio->index + folio_nr_pages(folio); |
| 383 | if (same_folio) |
| 384 | end = folio->index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | } |
Matthew Wilcox (Oracle) | b9a8a41 | 2020-05-27 17:59:22 -0400 | [diff] [blame] | 386 | folio_unlock(folio); |
| 387 | folio_put(folio); |
| 388 | folio = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | } |
Matthew Wilcox (Oracle) | b9a8a41 | 2020-05-27 17:59:22 -0400 | [diff] [blame] | 390 | |
| 391 | if (!same_folio) |
| 392 | folio = __filemap_get_folio(mapping, lend >> PAGE_SHIFT, |
| 393 | FGP_LOCK, 0); |
| 394 | if (folio) { |
| 395 | if (!truncate_inode_partial_folio(folio, lstart, lend)) |
| 396 | end = folio->index; |
| 397 | folio_unlock(folio); |
| 398 | folio_put(folio); |
Lukas Czerner | 5a72039 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 399 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 401 | index = start; |
Matthew Wilcox (Oracle) | b9a8a41 | 2020-05-27 17:59:22 -0400 | [diff] [blame] | 402 | while (index < end) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | cond_resched(); |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 404 | if (!find_get_entries(mapping, index, end - 1, &fbatch, |
Matthew Wilcox (Oracle) | 38cefeb | 2021-02-25 17:16:07 -0800 | [diff] [blame] | 405 | indices)) { |
Hugh Dickins | 792ceae | 2014-07-23 14:00:15 -0700 | [diff] [blame] | 406 | /* If all gone from start onwards, we're done */ |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 407 | if (index == start) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | break; |
Hugh Dickins | 792ceae | 2014-07-23 14:00:15 -0700 | [diff] [blame] | 409 | /* Otherwise restart to make sure all gone */ |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 410 | index = start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | continue; |
| 412 | } |
Mel Gorman | f218759 | 2017-11-15 17:37:44 -0800 | [diff] [blame] | 413 | |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 414 | for (i = 0; i < folio_batch_count(&fbatch); i++) { |
| 415 | struct folio *folio = fbatch.folios[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 417 | /* We rely upon deletion not changing page->index */ |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 418 | index = indices[i]; |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 419 | |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 420 | if (xa_is_value(folio)) |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 421 | continue; |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 422 | |
Matthew Wilcox (Oracle) | 1e84a3d | 2021-12-02 16:01:55 -0500 | [diff] [blame] | 423 | folio_lock(folio); |
| 424 | VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio); |
| 425 | folio_wait_writeback(folio); |
| 426 | truncate_inode_folio(mapping, folio); |
| 427 | folio_unlock(folio); |
Matthew Wilcox (Oracle) | ccbbf76 | 2021-11-26 13:25:38 -0500 | [diff] [blame] | 428 | index = folio_index(folio) + folio_nr_pages(folio) - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 430 | truncate_folio_batch_exceptionals(mapping, &fbatch, indices); |
| 431 | folio_batch_release(&fbatch); |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 432 | index++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | } |
| 434 | } |
Hans Reiser | d733907 | 2006-01-06 00:10:36 -0800 | [diff] [blame] | 435 | EXPORT_SYMBOL(truncate_inode_pages_range); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | |
Hans Reiser | d733907 | 2006-01-06 00:10:36 -0800 | [diff] [blame] | 437 | /** |
| 438 | * truncate_inode_pages - truncate *all* the pages from an offset |
| 439 | * @mapping: mapping to truncate |
| 440 | * @lstart: offset from which to truncate |
| 441 | * |
Jan Kara | 730633f | 2021-01-28 19:19:45 +0100 | [diff] [blame] | 442 | * Called under (and serialised by) inode->i_rwsem and |
| 443 | * mapping->invalidate_lock. |
Jan Kara | 0814257 | 2011-06-27 16:18:10 -0700 | [diff] [blame] | 444 | * |
| 445 | * Note: When this function returns, there can be a page in the process of |
Matthew Wilcox (Oracle) | 6ffcd82 | 2022-06-28 20:41:40 -0400 | [diff] [blame] | 446 | * deletion (inside __filemap_remove_folio()) in the specified range. Thus |
Jan Kara | 0814257 | 2011-06-27 16:18:10 -0700 | [diff] [blame] | 447 | * mapping->nrpages can be non-zero when this function returns even after |
| 448 | * truncation of the whole mapping. |
Hans Reiser | d733907 | 2006-01-06 00:10:36 -0800 | [diff] [blame] | 449 | */ |
| 450 | void truncate_inode_pages(struct address_space *mapping, loff_t lstart) |
| 451 | { |
| 452 | truncate_inode_pages_range(mapping, lstart, (loff_t)-1); |
| 453 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | EXPORT_SYMBOL(truncate_inode_pages); |
| 455 | |
Mike Waychison | 2869735 | 2009-06-16 15:32:59 -0700 | [diff] [blame] | 456 | /** |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 457 | * truncate_inode_pages_final - truncate *all* pages before inode dies |
| 458 | * @mapping: mapping to truncate |
| 459 | * |
Jan Kara | 9608703 | 2021-04-12 15:50:21 +0200 | [diff] [blame] | 460 | * Called under (and serialized by) inode->i_rwsem. |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 461 | * |
| 462 | * Filesystems have to use this in the .evict_inode path to inform the |
| 463 | * VM that this is the final truncate and the inode is going away. |
| 464 | */ |
| 465 | void truncate_inode_pages_final(struct address_space *mapping) |
| 466 | { |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 467 | /* |
| 468 | * Page reclaim can not participate in regular inode lifetime |
| 469 | * management (can't call iput()) and thus can race with the |
| 470 | * inode teardown. Tell it when the address space is exiting, |
| 471 | * so that it does not install eviction information after the |
| 472 | * final truncate has begun. |
| 473 | */ |
| 474 | mapping_set_exiting(mapping); |
| 475 | |
Matthew Wilcox (Oracle) | 7716506 | 2021-05-04 18:32:45 -0700 | [diff] [blame] | 476 | if (!mapping_empty(mapping)) { |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 477 | /* |
| 478 | * As truncation uses a lockless tree lookup, cycle |
| 479 | * the tree lock to make sure any ongoing tree |
| 480 | * modification that does not see AS_EXITING is |
| 481 | * completed before starting the final truncate. |
| 482 | */ |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 483 | xa_lock_irq(&mapping->i_pages); |
| 484 | xa_unlock_irq(&mapping->i_pages); |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 485 | } |
Pavel Tikhomirov | 6ff38bd | 2018-11-30 14:09:00 -0800 | [diff] [blame] | 486 | |
Pavel Tikhomirov | 6ff38bd | 2018-11-30 14:09:00 -0800 | [diff] [blame] | 487 | truncate_inode_pages(mapping, 0); |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 488 | } |
| 489 | EXPORT_SYMBOL(truncate_inode_pages_final); |
| 490 | |
Matthew Wilcox (Oracle) | c56109d | 2022-02-13 17:22:10 -0500 | [diff] [blame] | 491 | /** |
| 492 | * invalidate_mapping_pagevec - Invalidate all the unlocked pages of one inode |
| 493 | * @mapping: the address_space which holds the pages to invalidate |
| 494 | * @start: the offset 'from' which to invalidate |
| 495 | * @end: the offset 'to' which to invalidate (inclusive) |
| 496 | * @nr_pagevec: invalidate failed page number for caller |
| 497 | * |
| 498 | * This helper is similar to invalidate_mapping_pages(), except that it accounts |
| 499 | * for pages that are likely on a pagevec and counts them in @nr_pagevec, which |
| 500 | * will be used by the caller. |
| 501 | */ |
| 502 | unsigned long invalidate_mapping_pagevec(struct address_space *mapping, |
Yafang Shao | eb1d7a6 | 2020-10-13 16:51:47 -0700 | [diff] [blame] | 503 | pgoff_t start, pgoff_t end, unsigned long *nr_pagevec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | { |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 505 | pgoff_t indices[PAGEVEC_SIZE]; |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 506 | struct folio_batch fbatch; |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 507 | pgoff_t index = start; |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 508 | unsigned long ret; |
| 509 | unsigned long count = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | int i; |
| 511 | |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 512 | folio_batch_init(&fbatch); |
| 513 | while (find_lock_entries(mapping, index, end, &fbatch, indices)) { |
| 514 | for (i = 0; i < folio_batch_count(&fbatch); i++) { |
Matthew Wilcox (Oracle) | b4545f4 | 2022-02-13 16:38:07 -0500 | [diff] [blame] | 515 | struct folio *folio = fbatch.folios[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
Matthew Wilcox (Oracle) | b4545f4 | 2022-02-13 16:38:07 -0500 | [diff] [blame] | 517 | /* We rely upon deletion not changing folio->index */ |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 518 | index = indices[i]; |
NeilBrown | e0f23603 | 2006-06-23 02:05:48 -0700 | [diff] [blame] | 519 | |
Matthew Wilcox (Oracle) | b4545f4 | 2022-02-13 16:38:07 -0500 | [diff] [blame] | 520 | if (xa_is_value(folio)) { |
Johannes Weiner | 7ae12c8 | 2021-09-02 14:53:24 -0700 | [diff] [blame] | 521 | count += invalidate_exceptional_entry(mapping, |
| 522 | index, |
Matthew Wilcox (Oracle) | b4545f4 | 2022-02-13 16:38:07 -0500 | [diff] [blame] | 523 | folio); |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 524 | continue; |
| 525 | } |
Matthew Wilcox (Oracle) | b4545f4 | 2022-02-13 16:38:07 -0500 | [diff] [blame] | 526 | index += folio_nr_pages(folio) - 1; |
Kirill A. Shutemov | fc127da | 2016-07-26 15:26:07 -0700 | [diff] [blame] | 527 | |
Matthew Wilcox (Oracle) | b4545f4 | 2022-02-13 16:38:07 -0500 | [diff] [blame] | 528 | ret = mapping_evict_folio(mapping, folio); |
| 529 | folio_unlock(folio); |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 530 | /* |
Matthew Wilcox (Oracle) | b4545f4 | 2022-02-13 16:38:07 -0500 | [diff] [blame] | 531 | * Invalidation is a hint that the folio is no longer |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 532 | * of interest and try to speed up its reclaim. |
| 533 | */ |
Yafang Shao | eb1d7a6 | 2020-10-13 16:51:47 -0700 | [diff] [blame] | 534 | if (!ret) { |
Matthew Wilcox (Oracle) | 261b684 | 2022-02-13 16:40:24 -0500 | [diff] [blame] | 535 | deactivate_file_folio(folio); |
Yafang Shao | eb1d7a6 | 2020-10-13 16:51:47 -0700 | [diff] [blame] | 536 | /* It is likely on the pagevec of a remote CPU */ |
| 537 | if (nr_pagevec) |
| 538 | (*nr_pagevec)++; |
| 539 | } |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 540 | count += ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
Matthew Wilcox (Oracle) | 51dcbda | 2021-12-07 14:15:07 -0500 | [diff] [blame] | 542 | folio_batch_remove_exceptionals(&fbatch); |
| 543 | folio_batch_release(&fbatch); |
Mike Waychison | 2869735 | 2009-06-16 15:32:59 -0700 | [diff] [blame] | 544 | cond_resched(); |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 545 | index++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | } |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 547 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | } |
Yafang Shao | eb1d7a6 | 2020-10-13 16:51:47 -0700 | [diff] [blame] | 549 | |
| 550 | /** |
Johannes Weiner | 7ae12c8 | 2021-09-02 14:53:24 -0700 | [diff] [blame] | 551 | * invalidate_mapping_pages - Invalidate all clean, unlocked cache of one inode |
| 552 | * @mapping: the address_space which holds the cache to invalidate |
Yafang Shao | eb1d7a6 | 2020-10-13 16:51:47 -0700 | [diff] [blame] | 553 | * @start: the offset 'from' which to invalidate |
| 554 | * @end: the offset 'to' which to invalidate (inclusive) |
| 555 | * |
Johannes Weiner | 7ae12c8 | 2021-09-02 14:53:24 -0700 | [diff] [blame] | 556 | * This function removes pages that are clean, unmapped and unlocked, |
| 557 | * as well as shadow entries. It will not block on IO activity. |
Yafang Shao | eb1d7a6 | 2020-10-13 16:51:47 -0700 | [diff] [blame] | 558 | * |
Johannes Weiner | 7ae12c8 | 2021-09-02 14:53:24 -0700 | [diff] [blame] | 559 | * If you want to remove all the pages of one inode, regardless of |
| 560 | * their use and writeback state, use truncate_inode_pages(). |
Yafang Shao | eb1d7a6 | 2020-10-13 16:51:47 -0700 | [diff] [blame] | 561 | * |
Johannes Weiner | 7ae12c8 | 2021-09-02 14:53:24 -0700 | [diff] [blame] | 562 | * Return: the number of the cache entries that were invalidated |
Yafang Shao | eb1d7a6 | 2020-10-13 16:51:47 -0700 | [diff] [blame] | 563 | */ |
| 564 | unsigned long invalidate_mapping_pages(struct address_space *mapping, |
| 565 | pgoff_t start, pgoff_t end) |
| 566 | { |
Matthew Wilcox (Oracle) | c56109d | 2022-02-13 17:22:10 -0500 | [diff] [blame] | 567 | return invalidate_mapping_pagevec(mapping, start, end, NULL); |
Yafang Shao | eb1d7a6 | 2020-10-13 16:51:47 -0700 | [diff] [blame] | 568 | } |
Anton Altaparmakov | 54bc485 | 2007-02-10 01:45:38 -0800 | [diff] [blame] | 569 | EXPORT_SYMBOL(invalidate_mapping_pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | |
Andrew Morton | bd4c8ce | 2006-09-30 23:29:29 -0700 | [diff] [blame] | 571 | /* |
Matthew Wilcox (Oracle) | 1b8ddbe | 2022-02-12 15:27:42 -0500 | [diff] [blame] | 572 | * This is like invalidate_inode_page(), except it ignores the page's |
Andrew Morton | bd4c8ce | 2006-09-30 23:29:29 -0700 | [diff] [blame] | 573 | * refcount. We do this because invalidate_inode_pages2() needs stronger |
| 574 | * invalidation guarantees, and cannot afford to leave pages behind because |
Anderson Briglia | 2706a1b | 2007-07-15 23:38:09 -0700 | [diff] [blame] | 575 | * shrink_page_list() has a temp ref on them, or because they're transiently |
| 576 | * sitting in the lru_cache_add() pagevecs. |
Andrew Morton | bd4c8ce | 2006-09-30 23:29:29 -0700 | [diff] [blame] | 577 | */ |
Matthew Wilcox (Oracle) | 78f4266 | 2021-07-28 15:52:34 -0400 | [diff] [blame] | 578 | static int invalidate_complete_folio2(struct address_space *mapping, |
| 579 | struct folio *folio) |
Andrew Morton | bd4c8ce | 2006-09-30 23:29:29 -0700 | [diff] [blame] | 580 | { |
Matthew Wilcox (Oracle) | 78f4266 | 2021-07-28 15:52:34 -0400 | [diff] [blame] | 581 | if (folio->mapping != mapping) |
Andrew Morton | bd4c8ce | 2006-09-30 23:29:29 -0700 | [diff] [blame] | 582 | return 0; |
| 583 | |
Matthew Wilcox (Oracle) | 78f4266 | 2021-07-28 15:52:34 -0400 | [diff] [blame] | 584 | if (folio_has_private(folio) && |
| 585 | !filemap_release_folio(folio, GFP_KERNEL)) |
Andrew Morton | bd4c8ce | 2006-09-30 23:29:29 -0700 | [diff] [blame] | 586 | return 0; |
| 587 | |
Johannes Weiner | 51b8c1f | 2021-11-08 18:31:24 -0800 | [diff] [blame] | 588 | spin_lock(&mapping->host->i_lock); |
Johannes Weiner | 3047250 | 2021-09-02 14:53:18 -0700 | [diff] [blame] | 589 | xa_lock_irq(&mapping->i_pages); |
Matthew Wilcox (Oracle) | 78f4266 | 2021-07-28 15:52:34 -0400 | [diff] [blame] | 590 | if (folio_test_dirty(folio)) |
Andrew Morton | bd4c8ce | 2006-09-30 23:29:29 -0700 | [diff] [blame] | 591 | goto failed; |
| 592 | |
Matthew Wilcox (Oracle) | 78f4266 | 2021-07-28 15:52:34 -0400 | [diff] [blame] | 593 | BUG_ON(folio_has_private(folio)); |
| 594 | __filemap_remove_folio(folio, NULL); |
Johannes Weiner | 3047250 | 2021-09-02 14:53:18 -0700 | [diff] [blame] | 595 | xa_unlock_irq(&mapping->i_pages); |
Johannes Weiner | 51b8c1f | 2021-11-08 18:31:24 -0800 | [diff] [blame] | 596 | if (mapping_shrinkable(mapping)) |
| 597 | inode_add_lru(mapping->host); |
| 598 | spin_unlock(&mapping->host->i_lock); |
Linus Torvalds | 6072d13 | 2010-12-01 13:35:19 -0500 | [diff] [blame] | 599 | |
Matthew Wilcox (Oracle) | 78f4266 | 2021-07-28 15:52:34 -0400 | [diff] [blame] | 600 | filemap_free_folio(mapping, folio); |
Andrew Morton | bd4c8ce | 2006-09-30 23:29:29 -0700 | [diff] [blame] | 601 | return 1; |
| 602 | failed: |
Johannes Weiner | 3047250 | 2021-09-02 14:53:18 -0700 | [diff] [blame] | 603 | xa_unlock_irq(&mapping->i_pages); |
Johannes Weiner | 51b8c1f | 2021-11-08 18:31:24 -0800 | [diff] [blame] | 604 | spin_unlock(&mapping->host->i_lock); |
Andrew Morton | bd4c8ce | 2006-09-30 23:29:29 -0700 | [diff] [blame] | 605 | return 0; |
| 606 | } |
| 607 | |
Matthew Wilcox (Oracle) | affa80e | 2022-02-09 20:21:52 +0000 | [diff] [blame] | 608 | static int folio_launder(struct address_space *mapping, struct folio *folio) |
Trond Myklebust | e3db769 | 2007-01-10 23:15:39 -0800 | [diff] [blame] | 609 | { |
Matthew Wilcox (Oracle) | f6357c3 | 2021-05-20 08:17:44 -0400 | [diff] [blame] | 610 | if (!folio_test_dirty(folio)) |
Trond Myklebust | e3db769 | 2007-01-10 23:15:39 -0800 | [diff] [blame] | 611 | return 0; |
Matthew Wilcox (Oracle) | affa80e | 2022-02-09 20:21:52 +0000 | [diff] [blame] | 612 | if (folio->mapping != mapping || mapping->a_ops->launder_folio == NULL) |
Trond Myklebust | e3db769 | 2007-01-10 23:15:39 -0800 | [diff] [blame] | 613 | return 0; |
Matthew Wilcox (Oracle) | affa80e | 2022-02-09 20:21:52 +0000 | [diff] [blame] | 614 | return mapping->a_ops->launder_folio(folio); |
Trond Myklebust | e3db769 | 2007-01-10 23:15:39 -0800 | [diff] [blame] | 615 | } |
| 616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | /** |
| 618 | * invalidate_inode_pages2_range - remove range of pages from an address_space |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 619 | * @mapping: the address_space |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | * @start: the page offset 'from' which to invalidate |
| 621 | * @end: the page offset 'to' which to invalidate (inclusive) |
| 622 | * |
| 623 | * Any pages which are found to be mapped into pagetables are unmapped prior to |
| 624 | * invalidation. |
| 625 | * |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 626 | * Return: -EBUSY if any pages could not be invalidated. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | */ |
| 628 | int invalidate_inode_pages2_range(struct address_space *mapping, |
| 629 | pgoff_t start, pgoff_t end) |
| 630 | { |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 631 | pgoff_t indices[PAGEVEC_SIZE]; |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 632 | struct folio_batch fbatch; |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 633 | pgoff_t index; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | int i; |
| 635 | int ret = 0; |
Hisashi Hifumi | 0dd1334 | 2008-04-28 02:12:08 -0700 | [diff] [blame] | 636 | int ret2 = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | int did_range_unmap = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | |
Matthew Wilcox (Oracle) | 7716506 | 2021-05-04 18:32:45 -0700 | [diff] [blame] | 639 | if (mapping_empty(mapping)) |
Christoph Hellwig | 0a4ee51 | 2022-01-21 22:14:34 -0800 | [diff] [blame] | 640 | return 0; |
Andrey Ryabinin | 32691f0 | 2017-05-03 14:56:06 -0700 | [diff] [blame] | 641 | |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 642 | folio_batch_init(&fbatch); |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 643 | index = start; |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 644 | while (find_get_entries(mapping, index, end, &fbatch, indices)) { |
| 645 | for (i = 0; i < folio_batch_count(&fbatch); i++) { |
| 646 | struct folio *folio = fbatch.folios[i]; |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 647 | |
Matthew Wilcox (Oracle) | fae9bc4 | 2021-12-02 23:25:01 -0500 | [diff] [blame] | 648 | /* We rely upon deletion not changing folio->index */ |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 649 | index = indices[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 650 | |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 651 | if (xa_is_value(folio)) { |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 652 | if (!invalidate_exceptional_entry2(mapping, |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 653 | index, folio)) |
Jan Kara | c6dcf52 | 2016-08-10 17:22:44 +0200 | [diff] [blame] | 654 | ret = -EBUSY; |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 655 | continue; |
| 656 | } |
| 657 | |
Matthew Wilcox (Oracle) | fae9bc4 | 2021-12-02 23:25:01 -0500 | [diff] [blame] | 658 | if (!did_range_unmap && folio_mapped(folio)) { |
Hugh Dickins | 22061a1 | 2021-06-15 18:24:03 -0700 | [diff] [blame] | 659 | /* |
Matthew Wilcox (Oracle) | fae9bc4 | 2021-12-02 23:25:01 -0500 | [diff] [blame] | 660 | * If folio is mapped, before taking its lock, |
Hugh Dickins | 22061a1 | 2021-06-15 18:24:03 -0700 | [diff] [blame] | 661 | * zap the rest of the file in one hit. |
| 662 | */ |
| 663 | unmap_mapping_pages(mapping, index, |
| 664 | (1 + end - index), false); |
| 665 | did_range_unmap = 1; |
| 666 | } |
| 667 | |
Matthew Wilcox (Oracle) | fae9bc4 | 2021-12-02 23:25:01 -0500 | [diff] [blame] | 668 | folio_lock(folio); |
| 669 | VM_BUG_ON_FOLIO(!folio_contains(folio, index), folio); |
| 670 | if (folio->mapping != mapping) { |
| 671 | folio_unlock(folio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | continue; |
| 673 | } |
Matthew Wilcox (Oracle) | fae9bc4 | 2021-12-02 23:25:01 -0500 | [diff] [blame] | 674 | folio_wait_writeback(folio); |
Hugh Dickins | 22061a1 | 2021-06-15 18:24:03 -0700 | [diff] [blame] | 675 | |
Matthew Wilcox (Oracle) | fae9bc4 | 2021-12-02 23:25:01 -0500 | [diff] [blame] | 676 | if (folio_mapped(folio)) |
| 677 | unmap_mapping_folio(folio); |
| 678 | BUG_ON(folio_mapped(folio)); |
Hugh Dickins | 22061a1 | 2021-06-15 18:24:03 -0700 | [diff] [blame] | 679 | |
Matthew Wilcox (Oracle) | affa80e | 2022-02-09 20:21:52 +0000 | [diff] [blame] | 680 | ret2 = folio_launder(mapping, folio); |
Hisashi Hifumi | 0dd1334 | 2008-04-28 02:12:08 -0700 | [diff] [blame] | 681 | if (ret2 == 0) { |
Matthew Wilcox (Oracle) | 78f4266 | 2021-07-28 15:52:34 -0400 | [diff] [blame] | 682 | if (!invalidate_complete_folio2(mapping, folio)) |
Hisashi Hifumi | 6ccfa80 | 2008-09-02 14:35:40 -0700 | [diff] [blame] | 683 | ret2 = -EBUSY; |
Hisashi Hifumi | 0dd1334 | 2008-04-28 02:12:08 -0700 | [diff] [blame] | 684 | } |
| 685 | if (ret2 < 0) |
| 686 | ret = ret2; |
Matthew Wilcox (Oracle) | fae9bc4 | 2021-12-02 23:25:01 -0500 | [diff] [blame] | 687 | folio_unlock(folio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 688 | } |
Matthew Wilcox (Oracle) | 0e499ed | 2020-09-01 23:17:50 -0400 | [diff] [blame] | 689 | folio_batch_remove_exceptionals(&fbatch); |
| 690 | folio_batch_release(&fbatch); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | cond_resched(); |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 692 | index++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | } |
Jan Kara | cd65637 | 2017-05-12 15:46:50 -0700 | [diff] [blame] | 694 | /* |
Matthew Wilcox | 69b6c13 | 2017-11-25 22:52:46 -0500 | [diff] [blame] | 695 | * For DAX we invalidate page tables after invalidating page cache. We |
Jan Kara | cd65637 | 2017-05-12 15:46:50 -0700 | [diff] [blame] | 696 | * could invalidate page tables while invalidating each entry however |
| 697 | * that would be expensive. And doing range unmapping before doesn't |
Matthew Wilcox | 69b6c13 | 2017-11-25 22:52:46 -0500 | [diff] [blame] | 698 | * work as we have no cheap way to find whether page cache entry didn't |
Jan Kara | cd65637 | 2017-05-12 15:46:50 -0700 | [diff] [blame] | 699 | * get remapped later. |
| 700 | */ |
| 701 | if (dax_mapping(mapping)) { |
Matthew Wilcox | 977fbdc | 2018-01-31 16:17:36 -0800 | [diff] [blame] | 702 | unmap_mapping_pages(mapping, start, end - start + 1, false); |
Jan Kara | cd65637 | 2017-05-12 15:46:50 -0700 | [diff] [blame] | 703 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | return ret; |
| 705 | } |
| 706 | EXPORT_SYMBOL_GPL(invalidate_inode_pages2_range); |
| 707 | |
| 708 | /** |
| 709 | * invalidate_inode_pages2 - remove all pages from an address_space |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 710 | * @mapping: the address_space |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | * |
| 712 | * Any pages which are found to be mapped into pagetables are unmapped prior to |
| 713 | * invalidation. |
| 714 | * |
Mike Rapoport | a862f68 | 2019-03-05 15:48:42 -0800 | [diff] [blame] | 715 | * Return: -EBUSY if any pages could not be invalidated. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | */ |
| 717 | int invalidate_inode_pages2(struct address_space *mapping) |
| 718 | { |
| 719 | return invalidate_inode_pages2_range(mapping, 0, -1); |
| 720 | } |
| 721 | EXPORT_SYMBOL_GPL(invalidate_inode_pages2); |
npiggin@suse.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 722 | |
| 723 | /** |
| 724 | * truncate_pagecache - unmap and remove pagecache that has been truncated |
| 725 | * @inode: inode |
Hugh Dickins | 8a549be | 2011-07-25 17:12:24 -0700 | [diff] [blame] | 726 | * @newsize: new file size |
npiggin@suse.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 727 | * |
| 728 | * inode's new i_size must already be written before truncate_pagecache |
| 729 | * is called. |
| 730 | * |
| 731 | * This function should typically be called before the filesystem |
| 732 | * releases resources associated with the freed range (eg. deallocates |
| 733 | * blocks). This way, pagecache will always stay logically coherent |
| 734 | * with on-disk format, and the filesystem would not have to deal with |
| 735 | * situations such as writepage being called for a page that has already |
| 736 | * had its underlying blocks deallocated. |
| 737 | */ |
Kirill A. Shutemov | 7caef26 | 2013-09-12 15:13:56 -0700 | [diff] [blame] | 738 | void truncate_pagecache(struct inode *inode, loff_t newsize) |
npiggin@suse.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 739 | { |
OGAWA Hirofumi | cedabed | 2010-01-13 21:14:09 +0900 | [diff] [blame] | 740 | struct address_space *mapping = inode->i_mapping; |
Hugh Dickins | 8a549be | 2011-07-25 17:12:24 -0700 | [diff] [blame] | 741 | loff_t holebegin = round_up(newsize, PAGE_SIZE); |
npiggin@suse.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 742 | |
OGAWA Hirofumi | cedabed | 2010-01-13 21:14:09 +0900 | [diff] [blame] | 743 | /* |
| 744 | * unmap_mapping_range is called twice, first simply for |
| 745 | * efficiency so that truncate_inode_pages does fewer |
| 746 | * single-page unmaps. However after this first call, and |
| 747 | * before truncate_inode_pages finishes, it is possible for |
| 748 | * private pages to be COWed, which remain after |
| 749 | * truncate_inode_pages finishes, hence the second |
| 750 | * unmap_mapping_range call must be made for correctness. |
| 751 | */ |
Hugh Dickins | 8a549be | 2011-07-25 17:12:24 -0700 | [diff] [blame] | 752 | unmap_mapping_range(mapping, holebegin, 0, 1); |
| 753 | truncate_inode_pages(mapping, newsize); |
| 754 | unmap_mapping_range(mapping, holebegin, 0, 1); |
npiggin@suse.de | 25d9e2d | 2009-08-21 02:35:05 +1000 | [diff] [blame] | 755 | } |
| 756 | EXPORT_SYMBOL(truncate_pagecache); |
| 757 | |
| 758 | /** |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 759 | * truncate_setsize - update inode and pagecache for a new file size |
| 760 | * @inode: inode |
| 761 | * @newsize: new file size |
| 762 | * |
Jan Kara | 382e27d | 2011-01-20 14:44:26 -0800 | [diff] [blame] | 763 | * truncate_setsize updates i_size and performs pagecache truncation (if |
| 764 | * necessary) to @newsize. It will be typically be called from the filesystem's |
| 765 | * setattr function when ATTR_SIZE is passed in. |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 766 | * |
Jan Kara | 77783d0 | 2014-11-07 08:29:25 +1100 | [diff] [blame] | 767 | * Must be called with a lock serializing truncates and writes (generally |
Jan Kara | 9608703 | 2021-04-12 15:50:21 +0200 | [diff] [blame] | 768 | * i_rwsem but e.g. xfs uses a different lock) and before all filesystem |
Jan Kara | 77783d0 | 2014-11-07 08:29:25 +1100 | [diff] [blame] | 769 | * specific block truncation has been performed. |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 770 | */ |
| 771 | void truncate_setsize(struct inode *inode, loff_t newsize) |
| 772 | { |
Jan Kara | 90a8020 | 2014-10-01 21:49:18 -0400 | [diff] [blame] | 773 | loff_t oldsize = inode->i_size; |
| 774 | |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 775 | i_size_write(inode, newsize); |
Jan Kara | 90a8020 | 2014-10-01 21:49:18 -0400 | [diff] [blame] | 776 | if (newsize > oldsize) |
| 777 | pagecache_isize_extended(inode, oldsize, newsize); |
Kirill A. Shutemov | 7caef26 | 2013-09-12 15:13:56 -0700 | [diff] [blame] | 778 | truncate_pagecache(inode, newsize); |
Christoph Hellwig | 2c27c65 | 2010-06-04 11:30:04 +0200 | [diff] [blame] | 779 | } |
| 780 | EXPORT_SYMBOL(truncate_setsize); |
| 781 | |
| 782 | /** |
Jan Kara | 90a8020 | 2014-10-01 21:49:18 -0400 | [diff] [blame] | 783 | * pagecache_isize_extended - update pagecache after extension of i_size |
| 784 | * @inode: inode for which i_size was extended |
| 785 | * @from: original inode size |
| 786 | * @to: new inode size |
| 787 | * |
| 788 | * Handle extension of inode size either caused by extending truncate or by |
| 789 | * write starting after current i_size. We mark the page straddling current |
| 790 | * i_size RO so that page_mkwrite() is called on the nearest write access to |
| 791 | * the page. This way filesystem can be sure that page_mkwrite() is called on |
| 792 | * the page before user writes to the page via mmap after the i_size has been |
| 793 | * changed. |
| 794 | * |
| 795 | * The function must be called after i_size is updated so that page fault |
| 796 | * coming after we unlock the page will already see the new i_size. |
Jan Kara | 9608703 | 2021-04-12 15:50:21 +0200 | [diff] [blame] | 797 | * The function must be called while we still hold i_rwsem - this not only |
Jan Kara | 90a8020 | 2014-10-01 21:49:18 -0400 | [diff] [blame] | 798 | * makes sure i_size is stable but also that userspace cannot observe new |
| 799 | * i_size value before we are prepared to store mmap writes at new inode size. |
| 800 | */ |
| 801 | void pagecache_isize_extended(struct inode *inode, loff_t from, loff_t to) |
| 802 | { |
Fabian Frederick | 9340747 | 2017-02-27 14:28:32 -0800 | [diff] [blame] | 803 | int bsize = i_blocksize(inode); |
Jan Kara | 90a8020 | 2014-10-01 21:49:18 -0400 | [diff] [blame] | 804 | loff_t rounded_from; |
| 805 | struct page *page; |
| 806 | pgoff_t index; |
| 807 | |
Jan Kara | 90a8020 | 2014-10-01 21:49:18 -0400 | [diff] [blame] | 808 | WARN_ON(to > inode->i_size); |
| 809 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 810 | if (from >= to || bsize == PAGE_SIZE) |
Jan Kara | 90a8020 | 2014-10-01 21:49:18 -0400 | [diff] [blame] | 811 | return; |
| 812 | /* Page straddling @from will not have any hole block created? */ |
| 813 | rounded_from = round_up(from, bsize); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 814 | if (to <= rounded_from || !(rounded_from & (PAGE_SIZE - 1))) |
Jan Kara | 90a8020 | 2014-10-01 21:49:18 -0400 | [diff] [blame] | 815 | return; |
| 816 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 817 | index = from >> PAGE_SHIFT; |
Jan Kara | 90a8020 | 2014-10-01 21:49:18 -0400 | [diff] [blame] | 818 | page = find_lock_page(inode->i_mapping, index); |
| 819 | /* Page not cached? Nothing to do */ |
| 820 | if (!page) |
| 821 | return; |
| 822 | /* |
| 823 | * See clear_page_dirty_for_io() for details why set_page_dirty() |
| 824 | * is needed. |
| 825 | */ |
| 826 | if (page_mkclean(page)) |
| 827 | set_page_dirty(page); |
| 828 | unlock_page(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 829 | put_page(page); |
Jan Kara | 90a8020 | 2014-10-01 21:49:18 -0400 | [diff] [blame] | 830 | } |
| 831 | EXPORT_SYMBOL(pagecache_isize_extended); |
| 832 | |
| 833 | /** |
Hugh Dickins | 623e3db | 2012-03-28 14:42:40 -0700 | [diff] [blame] | 834 | * truncate_pagecache_range - unmap and remove pagecache that is hole-punched |
| 835 | * @inode: inode |
| 836 | * @lstart: offset of beginning of hole |
| 837 | * @lend: offset of last byte of hole |
| 838 | * |
| 839 | * This function should typically be called before the filesystem |
| 840 | * releases resources associated with the freed range (eg. deallocates |
| 841 | * blocks). This way, pagecache will always stay logically coherent |
| 842 | * with on-disk format, and the filesystem would not have to deal with |
| 843 | * situations such as writepage being called for a page that has already |
| 844 | * had its underlying blocks deallocated. |
| 845 | */ |
| 846 | void truncate_pagecache_range(struct inode *inode, loff_t lstart, loff_t lend) |
| 847 | { |
| 848 | struct address_space *mapping = inode->i_mapping; |
| 849 | loff_t unmap_start = round_up(lstart, PAGE_SIZE); |
| 850 | loff_t unmap_end = round_down(1 + lend, PAGE_SIZE) - 1; |
| 851 | /* |
| 852 | * This rounding is currently just for example: unmap_mapping_range |
| 853 | * expands its hole outwards, whereas we want it to contract the hole |
| 854 | * inwards. However, existing callers of truncate_pagecache_range are |
Lukas Czerner | 5a72039 | 2013-05-27 23:32:35 -0400 | [diff] [blame] | 855 | * doing their own page rounding first. Note that unmap_mapping_range |
| 856 | * allows holelen 0 for all, and we allow lend -1 for end of file. |
Hugh Dickins | 623e3db | 2012-03-28 14:42:40 -0700 | [diff] [blame] | 857 | */ |
| 858 | |
| 859 | /* |
| 860 | * Unlike in truncate_pagecache, unmap_mapping_range is called only |
| 861 | * once (before truncating pagecache), and without "even_cows" flag: |
| 862 | * hole-punching should not remove private COWed pages from the hole. |
| 863 | */ |
| 864 | if ((u64)unmap_end > (u64)unmap_start) |
| 865 | unmap_mapping_range(mapping, unmap_start, |
| 866 | 1 + unmap_end - unmap_start, 0); |
| 867 | truncate_inode_pages_range(mapping, lstart, lend); |
| 868 | } |
| 869 | EXPORT_SYMBOL(truncate_pagecache_range); |