blob: e07b1e682c38f5fca96436904eb1a9a262ce1426 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * mm/truncate.c - code for taking down pages from address_spaces
3 *
4 * Copyright (C) 2002, Linus Torvalds
5 *
6 * 10Sep2002 akpm@zip.com.au
7 * Initial version.
8 */
9
10#include <linux/kernel.h>
11#include <linux/mm.h>
Nick Piggin0fd0e6b2006-09-27 01:50:02 -070012#include <linux/swap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/module.h>
14#include <linux/pagemap.h>
15#include <linux/pagevec.h>
16#include <linux/buffer_head.h> /* grr. try_to_release_page,
Jan Karaaaa40592005-10-30 15:00:16 -080017 do_invalidatepage */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19
David Howellscf9a2ae2006-08-29 19:05:54 +010020/**
21 * do_invalidatepage - invalidate part of all of a page
22 * @page: the page which is affected
23 * @offset: the index of the truncation point
24 *
25 * do_invalidatepage() is called when all or part of the page has become
26 * invalidated by a truncate operation.
27 *
28 * do_invalidatepage() does not have to release all buffers, but it must
29 * ensure that no dirty buffer is left outside @offset and that no I/O
30 * is underway against any of the blocks which are outside the truncation
31 * point. Because the caller is about to free (and possibly reuse) those
32 * blocks on-disk.
33 */
34void do_invalidatepage(struct page *page, unsigned long offset)
35{
36 void (*invalidatepage)(struct page *, unsigned long);
37 invalidatepage = page->mapping->a_ops->invalidatepage;
David Howells93614012006-09-30 20:45:40 +020038#ifdef CONFIG_BLOCK
David Howellscf9a2ae2006-08-29 19:05:54 +010039 if (!invalidatepage)
40 invalidatepage = block_invalidatepage;
David Howells93614012006-09-30 20:45:40 +020041#endif
David Howellscf9a2ae2006-08-29 19:05:54 +010042 if (invalidatepage)
43 (*invalidatepage)(page, offset);
44}
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static inline void truncate_partial_page(struct page *page, unsigned partial)
47{
48 memclear_highpage_flush(page, partial, PAGE_CACHE_SIZE-partial);
49 if (PagePrivate(page))
50 do_invalidatepage(page, partial);
51}
52
53/*
54 * If truncate cannot remove the fs-private metadata from the page, the page
55 * becomes anonymous. It will be left on the LRU and may even be mapped into
56 * user pagetables if we're racing with filemap_nopage().
57 *
58 * We need to bale out if page->mapping is no longer equal to the original
59 * mapping. This happens a) when the VM reclaimed the page while we waited on
60 * its lock, b) when a concurrent invalidate_inode_pages got there first and
61 * c) when tmpfs swizzles a page between a tmpfs inode and swapper_space.
62 */
63static void
64truncate_complete_page(struct address_space *mapping, struct page *page)
65{
66 if (page->mapping != mapping)
67 return;
68
69 if (PagePrivate(page))
70 do_invalidatepage(page, 0);
71
72 clear_page_dirty(page);
73 ClearPageUptodate(page);
74 ClearPageMappedToDisk(page);
75 remove_from_page_cache(page);
76 page_cache_release(page); /* pagecache ref */
77}
78
79/*
80 * This is for invalidate_inode_pages(). That function can be called at
81 * any time, and is not supposed to throw away dirty pages. But pages can
Nick Piggin0fd0e6b2006-09-27 01:50:02 -070082 * be marked dirty at any time too, so use remove_mapping which safely
83 * discards clean, unused pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 *
85 * Returns non-zero if the page was successfully invalidated.
86 */
87static int
88invalidate_complete_page(struct address_space *mapping, struct page *page)
89{
Nick Piggin0fd0e6b2006-09-27 01:50:02 -070090 int ret;
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (page->mapping != mapping)
93 return 0;
94
95 if (PagePrivate(page) && !try_to_release_page(page, 0))
96 return 0;
97
Nick Piggin0fd0e6b2006-09-27 01:50:02 -070098 ret = remove_mapping(mapping, page);
Nick Piggin0fd0e6b2006-09-27 01:50:02 -070099
100 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103/**
Hans Reiserd7339072006-01-06 00:10:36 -0800104 * truncate_inode_pages - truncate range of pages specified by start and
105 * end byte offsets
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * @mapping: mapping to truncate
107 * @lstart: offset from which to truncate
Hans Reiserd7339072006-01-06 00:10:36 -0800108 * @lend: offset to which to truncate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 *
Hans Reiserd7339072006-01-06 00:10:36 -0800110 * Truncate the page cache, removing the pages that are between
111 * specified offsets (and zeroing out partial page
112 * (if lstart is not page aligned)).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 *
114 * Truncate takes two passes - the first pass is nonblocking. It will not
115 * block on page locks and it will not block on writeback. The second pass
116 * will wait. This is to prevent as much IO as possible in the affected region.
117 * The first pass will remove most pages, so the search cost of the second pass
118 * is low.
119 *
120 * When looking at page->index outside the page lock we need to be careful to
121 * copy it into a local to avoid races (it could change at any time).
122 *
123 * We pass down the cache-hot hint to the page freeing code. Even if the
124 * mapping is large, it is probably the case that the final pages are the most
125 * recently touched, and freeing happens in ascending file offset order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 */
Hans Reiserd7339072006-01-06 00:10:36 -0800127void truncate_inode_pages_range(struct address_space *mapping,
128 loff_t lstart, loff_t lend)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 const pgoff_t start = (lstart + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
Hans Reiserd7339072006-01-06 00:10:36 -0800131 pgoff_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 const unsigned partial = lstart & (PAGE_CACHE_SIZE - 1);
133 struct pagevec pvec;
134 pgoff_t next;
135 int i;
136
137 if (mapping->nrpages == 0)
138 return;
139
Hans Reiserd7339072006-01-06 00:10:36 -0800140 BUG_ON((lend & (PAGE_CACHE_SIZE - 1)) != (PAGE_CACHE_SIZE - 1));
141 end = (lend >> PAGE_CACHE_SHIFT);
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 pagevec_init(&pvec, 0);
144 next = start;
Hans Reiserd7339072006-01-06 00:10:36 -0800145 while (next <= end &&
146 pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 for (i = 0; i < pagevec_count(&pvec); i++) {
148 struct page *page = pvec.pages[i];
149 pgoff_t page_index = page->index;
150
Hans Reiserd7339072006-01-06 00:10:36 -0800151 if (page_index > end) {
152 next = page_index;
153 break;
154 }
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 if (page_index > next)
157 next = page_index;
158 next++;
159 if (TestSetPageLocked(page))
160 continue;
161 if (PageWriteback(page)) {
162 unlock_page(page);
163 continue;
164 }
165 truncate_complete_page(mapping, page);
166 unlock_page(page);
167 }
168 pagevec_release(&pvec);
169 cond_resched();
170 }
171
172 if (partial) {
173 struct page *page = find_lock_page(mapping, start - 1);
174 if (page) {
175 wait_on_page_writeback(page);
176 truncate_partial_page(page, partial);
177 unlock_page(page);
178 page_cache_release(page);
179 }
180 }
181
182 next = start;
183 for ( ; ; ) {
184 cond_resched();
185 if (!pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
186 if (next == start)
187 break;
188 next = start;
189 continue;
190 }
Hans Reiserd7339072006-01-06 00:10:36 -0800191 if (pvec.pages[0]->index > end) {
192 pagevec_release(&pvec);
193 break;
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 for (i = 0; i < pagevec_count(&pvec); i++) {
196 struct page *page = pvec.pages[i];
197
Hans Reiserd7339072006-01-06 00:10:36 -0800198 if (page->index > end)
199 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 lock_page(page);
201 wait_on_page_writeback(page);
202 if (page->index > next)
203 next = page->index;
204 next++;
205 truncate_complete_page(mapping, page);
206 unlock_page(page);
207 }
208 pagevec_release(&pvec);
209 }
210}
Hans Reiserd7339072006-01-06 00:10:36 -0800211EXPORT_SYMBOL(truncate_inode_pages_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Hans Reiserd7339072006-01-06 00:10:36 -0800213/**
214 * truncate_inode_pages - truncate *all* the pages from an offset
215 * @mapping: mapping to truncate
216 * @lstart: offset from which to truncate
217 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800218 * Called under (and serialised by) inode->i_mutex.
Hans Reiserd7339072006-01-06 00:10:36 -0800219 */
220void truncate_inode_pages(struct address_space *mapping, loff_t lstart)
221{
222 truncate_inode_pages_range(mapping, lstart, (loff_t)-1);
223}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224EXPORT_SYMBOL(truncate_inode_pages);
225
226/**
227 * invalidate_mapping_pages - Invalidate all the unlocked pages of one inode
228 * @mapping: the address_space which holds the pages to invalidate
229 * @start: the offset 'from' which to invalidate
230 * @end: the offset 'to' which to invalidate (inclusive)
231 *
232 * This function only removes the unlocked pages, if you want to
233 * remove all the pages of one inode, you must call truncate_inode_pages.
234 *
235 * invalidate_mapping_pages() will not block on IO activity. It will not
236 * invalidate pages which are dirty, locked, under writeback or mapped into
237 * pagetables.
238 */
239unsigned long invalidate_mapping_pages(struct address_space *mapping,
240 pgoff_t start, pgoff_t end)
241{
242 struct pagevec pvec;
243 pgoff_t next = start;
244 unsigned long ret = 0;
245 int i;
246
247 pagevec_init(&pvec, 0);
248 while (next <= end &&
249 pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
250 for (i = 0; i < pagevec_count(&pvec); i++) {
251 struct page *page = pvec.pages[i];
NeilBrowne0f23602006-06-23 02:05:48 -0700252 pgoff_t index;
253 int lock_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
NeilBrowne0f23602006-06-23 02:05:48 -0700255 lock_failed = TestSetPageLocked(page);
256
257 /*
258 * We really shouldn't be looking at the ->index of an
259 * unlocked page. But we're not allowed to lock these
260 * pages. So we rely upon nobody altering the ->index
261 * of this (pinned-by-us) page.
262 */
263 index = page->index;
264 if (index > next)
265 next = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 next++;
NeilBrowne0f23602006-06-23 02:05:48 -0700267 if (lock_failed)
268 continue;
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 if (PageDirty(page) || PageWriteback(page))
271 goto unlock;
272 if (page_mapped(page))
273 goto unlock;
274 ret += invalidate_complete_page(mapping, page);
275unlock:
276 unlock_page(page);
277 if (next > end)
278 break;
279 }
280 pagevec_release(&pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282 return ret;
283}
284
285unsigned long invalidate_inode_pages(struct address_space *mapping)
286{
287 return invalidate_mapping_pages(mapping, 0, ~0UL);
288}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289EXPORT_SYMBOL(invalidate_inode_pages);
290
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700291/*
292 * This is like invalidate_complete_page(), except it ignores the page's
293 * refcount. We do this because invalidate_inode_pages2() needs stronger
294 * invalidation guarantees, and cannot afford to leave pages behind because
295 * shrink_list() has a temp ref on them, or because they're transiently sitting
296 * in the lru_cache_add() pagevecs.
297 */
298static int
299invalidate_complete_page2(struct address_space *mapping, struct page *page)
300{
301 if (page->mapping != mapping)
302 return 0;
303
Trond Myklebust887ed2f2006-10-11 01:21:58 -0700304 if (PagePrivate(page) && !try_to_release_page(page, GFP_KERNEL))
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700305 return 0;
306
307 write_lock_irq(&mapping->tree_lock);
308 if (PageDirty(page))
309 goto failed;
310
311 BUG_ON(PagePrivate(page));
312 __remove_from_page_cache(page);
313 write_unlock_irq(&mapping->tree_lock);
314 ClearPageUptodate(page);
315 page_cache_release(page); /* pagecache ref */
316 return 1;
317failed:
318 write_unlock_irq(&mapping->tree_lock);
319 return 0;
320}
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322/**
323 * invalidate_inode_pages2_range - remove range of pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700324 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * @start: the page offset 'from' which to invalidate
326 * @end: the page offset 'to' which to invalidate (inclusive)
327 *
328 * Any pages which are found to be mapped into pagetables are unmapped prior to
329 * invalidation.
330 *
331 * Returns -EIO if any pages could not be invalidated.
332 */
333int invalidate_inode_pages2_range(struct address_space *mapping,
334 pgoff_t start, pgoff_t end)
335{
336 struct pagevec pvec;
337 pgoff_t next;
338 int i;
339 int ret = 0;
340 int did_range_unmap = 0;
341 int wrapped = 0;
342
343 pagevec_init(&pvec, 0);
344 next = start;
345 while (next <= end && !ret && !wrapped &&
346 pagevec_lookup(&pvec, mapping, next,
347 min(end - next, (pgoff_t)PAGEVEC_SIZE - 1) + 1)) {
348 for (i = 0; !ret && i < pagevec_count(&pvec); i++) {
349 struct page *page = pvec.pages[i];
350 pgoff_t page_index;
351 int was_dirty;
352
353 lock_page(page);
354 if (page->mapping != mapping) {
355 unlock_page(page);
356 continue;
357 }
358 page_index = page->index;
359 next = page_index + 1;
360 if (next == 0)
361 wrapped = 1;
362 if (page_index > end) {
363 unlock_page(page);
364 break;
365 }
366 wait_on_page_writeback(page);
367 while (page_mapped(page)) {
368 if (!did_range_unmap) {
369 /*
370 * Zap the rest of the file in one hit.
371 */
372 unmap_mapping_range(mapping,
Oleg Drokin479ef592005-11-23 13:37:47 -0800373 (loff_t)page_index<<PAGE_CACHE_SHIFT,
374 (loff_t)(end - page_index + 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 << PAGE_CACHE_SHIFT,
376 0);
377 did_range_unmap = 1;
378 } else {
379 /*
380 * Just zap this page
381 */
382 unmap_mapping_range(mapping,
Oleg Drokin479ef592005-11-23 13:37:47 -0800383 (loff_t)page_index<<PAGE_CACHE_SHIFT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 PAGE_CACHE_SIZE, 0);
385 }
386 }
387 was_dirty = test_clear_page_dirty(page);
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700388 if (!invalidate_complete_page2(mapping, page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (was_dirty)
390 set_page_dirty(page);
391 ret = -EIO;
392 }
393 unlock_page(page);
394 }
395 pagevec_release(&pvec);
396 cond_resched();
397 }
Andrew Morton8258d4a2006-10-11 01:21:53 -0700398 WARN_ON_ONCE(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return ret;
400}
401EXPORT_SYMBOL_GPL(invalidate_inode_pages2_range);
402
403/**
404 * invalidate_inode_pages2 - remove all pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700405 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 *
407 * Any pages which are found to be mapped into pagetables are unmapped prior to
408 * invalidation.
409 *
410 * Returns -EIO if any pages could not be invalidated.
411 */
412int invalidate_inode_pages2(struct address_space *mapping)
413{
414 return invalidate_inode_pages2_range(mapping, 0, -1);
415}
416EXPORT_SYMBOL_GPL(invalidate_inode_pages2);