blob: 4a38dd1a4ce85efffaa8275ccaaf1b42251f0ae9 [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>
Andrew Mortone08748ce2006-12-10 02:19:31 -080016#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/buffer_head.h> /* grr. try_to_release_page,
Jan Karaaaa40592005-10-30 15:00:16 -080018 do_invalidatepage */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20
David Howellscf9a2ae2006-08-29 19:05:54 +010021/**
22 * do_invalidatepage - invalidate part of all of a page
23 * @page: the page which is affected
24 * @offset: the index of the truncation point
25 *
26 * do_invalidatepage() is called when all or part of the page has become
27 * invalidated by a truncate operation.
28 *
29 * do_invalidatepage() does not have to release all buffers, but it must
30 * ensure that no dirty buffer is left outside @offset and that no I/O
31 * is underway against any of the blocks which are outside the truncation
32 * point. Because the caller is about to free (and possibly reuse) those
33 * blocks on-disk.
34 */
35void do_invalidatepage(struct page *page, unsigned long offset)
36{
37 void (*invalidatepage)(struct page *, unsigned long);
38 invalidatepage = page->mapping->a_ops->invalidatepage;
David Howells93614012006-09-30 20:45:40 +020039#ifdef CONFIG_BLOCK
David Howellscf9a2ae2006-08-29 19:05:54 +010040 if (!invalidatepage)
41 invalidatepage = block_invalidatepage;
David Howells93614012006-09-30 20:45:40 +020042#endif
David Howellscf9a2ae2006-08-29 19:05:54 +010043 if (invalidatepage)
44 (*invalidatepage)(page, offset);
45}
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static inline void truncate_partial_page(struct page *page, unsigned partial)
48{
49 memclear_highpage_flush(page, partial, PAGE_CACHE_SIZE-partial);
50 if (PagePrivate(page))
51 do_invalidatepage(page, partial);
52}
53
Linus Torvaldsfba25912006-12-20 13:46:42 -080054void cancel_dirty_page(struct page *page, unsigned int account_size)
55{
56 /* If we're cancelling the page, it had better not be mapped any more */
57 if (page_mapped(page)) {
58 static unsigned int warncount;
59
60 WARN_ON(++warncount < 5);
61 }
62
Andrew Morton5f2a1052006-12-22 01:04:48 -080063 if (TestClearPageDirty(page) && account_size &&
64 mapping_cap_account_dirty(page->mapping)) {
Andrew Morton3e67c092006-12-21 11:00:33 -080065 dec_zone_page_state(page, NR_FILE_DIRTY);
Linus Torvaldsfba25912006-12-20 13:46:42 -080066 task_io_account_cancelled_write(account_size);
Andrew Morton3e67c092006-12-21 11:00:33 -080067 }
Linus Torvaldsfba25912006-12-20 13:46:42 -080068}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070/*
71 * If truncate cannot remove the fs-private metadata from the page, the page
72 * becomes anonymous. It will be left on the LRU and may even be mapped into
73 * user pagetables if we're racing with filemap_nopage().
74 *
75 * We need to bale out if page->mapping is no longer equal to the original
76 * mapping. This happens a) when the VM reclaimed the page while we waited on
77 * its lock, b) when a concurrent invalidate_inode_pages got there first and
78 * c) when tmpfs swizzles a page between a tmpfs inode and swapper_space.
79 */
80static void
81truncate_complete_page(struct address_space *mapping, struct page *page)
82{
83 if (page->mapping != mapping)
84 return;
85
Andrew Morton3e67c092006-12-21 11:00:33 -080086 cancel_dirty_page(page, PAGE_CACHE_SIZE);
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 if (PagePrivate(page))
89 do_invalidatepage(page, 0);
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 ClearPageUptodate(page);
92 ClearPageMappedToDisk(page);
93 remove_from_page_cache(page);
94 page_cache_release(page); /* pagecache ref */
95}
96
97/*
98 * This is for invalidate_inode_pages(). That function can be called at
99 * any time, and is not supposed to throw away dirty pages. But pages can
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700100 * be marked dirty at any time too, so use remove_mapping which safely
101 * discards clean, unused pages.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
103 * Returns non-zero if the page was successfully invalidated.
104 */
105static int
106invalidate_complete_page(struct address_space *mapping, struct page *page)
107{
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700108 int ret;
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (page->mapping != mapping)
111 return 0;
112
113 if (PagePrivate(page) && !try_to_release_page(page, 0))
114 return 0;
115
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700116 ret = remove_mapping(mapping, page);
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700117
118 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121/**
Hans Reiserd7339072006-01-06 00:10:36 -0800122 * truncate_inode_pages - truncate range of pages specified by start and
123 * end byte offsets
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * @mapping: mapping to truncate
125 * @lstart: offset from which to truncate
Hans Reiserd7339072006-01-06 00:10:36 -0800126 * @lend: offset to which to truncate
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 *
Hans Reiserd7339072006-01-06 00:10:36 -0800128 * Truncate the page cache, removing the pages that are between
129 * specified offsets (and zeroing out partial page
130 * (if lstart is not page aligned)).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 *
132 * Truncate takes two passes - the first pass is nonblocking. It will not
133 * block on page locks and it will not block on writeback. The second pass
134 * will wait. This is to prevent as much IO as possible in the affected region.
135 * The first pass will remove most pages, so the search cost of the second pass
136 * is low.
137 *
138 * When looking at page->index outside the page lock we need to be careful to
139 * copy it into a local to avoid races (it could change at any time).
140 *
141 * We pass down the cache-hot hint to the page freeing code. Even if the
142 * mapping is large, it is probably the case that the final pages are the most
143 * recently touched, and freeing happens in ascending file offset order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 */
Hans Reiserd7339072006-01-06 00:10:36 -0800145void truncate_inode_pages_range(struct address_space *mapping,
146 loff_t lstart, loff_t lend)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 const pgoff_t start = (lstart + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
Hans Reiserd7339072006-01-06 00:10:36 -0800149 pgoff_t end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 const unsigned partial = lstart & (PAGE_CACHE_SIZE - 1);
151 struct pagevec pvec;
152 pgoff_t next;
153 int i;
154
155 if (mapping->nrpages == 0)
156 return;
157
Hans Reiserd7339072006-01-06 00:10:36 -0800158 BUG_ON((lend & (PAGE_CACHE_SIZE - 1)) != (PAGE_CACHE_SIZE - 1));
159 end = (lend >> PAGE_CACHE_SHIFT);
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 pagevec_init(&pvec, 0);
162 next = start;
Hans Reiserd7339072006-01-06 00:10:36 -0800163 while (next <= end &&
164 pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 for (i = 0; i < pagevec_count(&pvec); i++) {
166 struct page *page = pvec.pages[i];
167 pgoff_t page_index = page->index;
168
Hans Reiserd7339072006-01-06 00:10:36 -0800169 if (page_index > end) {
170 next = page_index;
171 break;
172 }
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (page_index > next)
175 next = page_index;
176 next++;
177 if (TestSetPageLocked(page))
178 continue;
179 if (PageWriteback(page)) {
180 unlock_page(page);
181 continue;
182 }
183 truncate_complete_page(mapping, page);
184 unlock_page(page);
185 }
186 pagevec_release(&pvec);
187 cond_resched();
188 }
189
190 if (partial) {
191 struct page *page = find_lock_page(mapping, start - 1);
192 if (page) {
193 wait_on_page_writeback(page);
194 truncate_partial_page(page, partial);
195 unlock_page(page);
196 page_cache_release(page);
197 }
198 }
199
200 next = start;
201 for ( ; ; ) {
202 cond_resched();
203 if (!pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
204 if (next == start)
205 break;
206 next = start;
207 continue;
208 }
Hans Reiserd7339072006-01-06 00:10:36 -0800209 if (pvec.pages[0]->index > end) {
210 pagevec_release(&pvec);
211 break;
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 for (i = 0; i < pagevec_count(&pvec); i++) {
214 struct page *page = pvec.pages[i];
215
Hans Reiserd7339072006-01-06 00:10:36 -0800216 if (page->index > end)
217 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 lock_page(page);
219 wait_on_page_writeback(page);
220 if (page->index > next)
221 next = page->index;
222 next++;
223 truncate_complete_page(mapping, page);
224 unlock_page(page);
225 }
226 pagevec_release(&pvec);
227 }
228}
Hans Reiserd7339072006-01-06 00:10:36 -0800229EXPORT_SYMBOL(truncate_inode_pages_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Hans Reiserd7339072006-01-06 00:10:36 -0800231/**
232 * truncate_inode_pages - truncate *all* the pages from an offset
233 * @mapping: mapping to truncate
234 * @lstart: offset from which to truncate
235 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800236 * Called under (and serialised by) inode->i_mutex.
Hans Reiserd7339072006-01-06 00:10:36 -0800237 */
238void truncate_inode_pages(struct address_space *mapping, loff_t lstart)
239{
240 truncate_inode_pages_range(mapping, lstart, (loff_t)-1);
241}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242EXPORT_SYMBOL(truncate_inode_pages);
243
244/**
245 * invalidate_mapping_pages - Invalidate all the unlocked pages of one inode
246 * @mapping: the address_space which holds the pages to invalidate
247 * @start: the offset 'from' which to invalidate
248 * @end: the offset 'to' which to invalidate (inclusive)
249 *
250 * This function only removes the unlocked pages, if you want to
251 * remove all the pages of one inode, you must call truncate_inode_pages.
252 *
253 * invalidate_mapping_pages() will not block on IO activity. It will not
254 * invalidate pages which are dirty, locked, under writeback or mapped into
255 * pagetables.
256 */
257unsigned long invalidate_mapping_pages(struct address_space *mapping,
258 pgoff_t start, pgoff_t end)
259{
260 struct pagevec pvec;
261 pgoff_t next = start;
262 unsigned long ret = 0;
263 int i;
264
265 pagevec_init(&pvec, 0);
266 while (next <= end &&
267 pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE)) {
268 for (i = 0; i < pagevec_count(&pvec); i++) {
269 struct page *page = pvec.pages[i];
NeilBrowne0f23602006-06-23 02:05:48 -0700270 pgoff_t index;
271 int lock_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
NeilBrowne0f23602006-06-23 02:05:48 -0700273 lock_failed = TestSetPageLocked(page);
274
275 /*
276 * We really shouldn't be looking at the ->index of an
277 * unlocked page. But we're not allowed to lock these
278 * pages. So we rely upon nobody altering the ->index
279 * of this (pinned-by-us) page.
280 */
281 index = page->index;
282 if (index > next)
283 next = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 next++;
NeilBrowne0f23602006-06-23 02:05:48 -0700285 if (lock_failed)
286 continue;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (PageDirty(page) || PageWriteback(page))
289 goto unlock;
290 if (page_mapped(page))
291 goto unlock;
292 ret += invalidate_complete_page(mapping, page);
293unlock:
294 unlock_page(page);
295 if (next > end)
296 break;
297 }
298 pagevec_release(&pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300 return ret;
301}
302
303unsigned long invalidate_inode_pages(struct address_space *mapping)
304{
305 return invalidate_mapping_pages(mapping, 0, ~0UL);
306}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307EXPORT_SYMBOL(invalidate_inode_pages);
308
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700309/*
310 * This is like invalidate_complete_page(), except it ignores the page's
311 * refcount. We do this because invalidate_inode_pages2() needs stronger
312 * invalidation guarantees, and cannot afford to leave pages behind because
313 * shrink_list() has a temp ref on them, or because they're transiently sitting
314 * in the lru_cache_add() pagevecs.
315 */
316static int
317invalidate_complete_page2(struct address_space *mapping, struct page *page)
318{
319 if (page->mapping != mapping)
320 return 0;
321
Trond Myklebust887ed2f2006-10-11 01:21:58 -0700322 if (PagePrivate(page) && !try_to_release_page(page, GFP_KERNEL))
Andrew Mortonbd4c8ce2006-09-30 23:29:29 -0700323 return 0;
324
325 write_lock_irq(&mapping->tree_lock);
326 if (PageDirty(page))
327 goto failed;
328
329 BUG_ON(PagePrivate(page));
330 __remove_from_page_cache(page);
331 write_unlock_irq(&mapping->tree_lock);
332 ClearPageUptodate(page);
333 page_cache_release(page); /* pagecache ref */
334 return 1;
335failed:
336 write_unlock_irq(&mapping->tree_lock);
337 return 0;
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340/**
341 * invalidate_inode_pages2_range - remove range of pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700342 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 * @start: the page offset 'from' which to invalidate
344 * @end: the page offset 'to' which to invalidate (inclusive)
345 *
346 * Any pages which are found to be mapped into pagetables are unmapped prior to
347 * invalidation.
348 *
349 * Returns -EIO if any pages could not be invalidated.
350 */
351int invalidate_inode_pages2_range(struct address_space *mapping,
352 pgoff_t start, pgoff_t end)
353{
354 struct pagevec pvec;
355 pgoff_t next;
356 int i;
357 int ret = 0;
358 int did_range_unmap = 0;
359 int wrapped = 0;
360
361 pagevec_init(&pvec, 0);
362 next = start;
363 while (next <= end && !ret && !wrapped &&
364 pagevec_lookup(&pvec, mapping, next,
365 min(end - next, (pgoff_t)PAGEVEC_SIZE - 1) + 1)) {
366 for (i = 0; !ret && i < pagevec_count(&pvec); i++) {
367 struct page *page = pvec.pages[i];
368 pgoff_t page_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 lock_page(page);
371 if (page->mapping != mapping) {
372 unlock_page(page);
373 continue;
374 }
375 page_index = page->index;
376 next = page_index + 1;
377 if (next == 0)
378 wrapped = 1;
379 if (page_index > end) {
380 unlock_page(page);
381 break;
382 }
383 wait_on_page_writeback(page);
384 while (page_mapped(page)) {
385 if (!did_range_unmap) {
386 /*
387 * Zap the rest of the file in one hit.
388 */
389 unmap_mapping_range(mapping,
Oleg Drokin479ef592005-11-23 13:37:47 -0800390 (loff_t)page_index<<PAGE_CACHE_SHIFT,
391 (loff_t)(end - page_index + 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 << PAGE_CACHE_SHIFT,
393 0);
394 did_range_unmap = 1;
395 } else {
396 /*
397 * Just zap this page
398 */
399 unmap_mapping_range(mapping,
Oleg Drokin479ef592005-11-23 13:37:47 -0800400 (loff_t)page_index<<PAGE_CACHE_SHIFT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 PAGE_CACHE_SIZE, 0);
402 }
403 }
Linus Torvaldsfba25912006-12-20 13:46:42 -0800404 if (!invalidate_complete_page2(mapping, page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 unlock_page(page);
407 }
408 pagevec_release(&pvec);
409 cond_resched();
410 }
Andrew Morton8258d4a2006-10-11 01:21:53 -0700411 WARN_ON_ONCE(ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return ret;
413}
414EXPORT_SYMBOL_GPL(invalidate_inode_pages2_range);
415
416/**
417 * invalidate_inode_pages2 - remove all pages from an address_space
Martin Waitz67be2dd2005-05-01 08:59:26 -0700418 * @mapping: the address_space
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 *
420 * Any pages which are found to be mapped into pagetables are unmapped prior to
421 * invalidation.
422 *
423 * Returns -EIO if any pages could not be invalidated.
424 */
425int invalidate_inode_pages2(struct address_space *mapping)
426{
427 return invalidate_inode_pages2_range(mapping, 0, -1);
428}
429EXPORT_SYMBOL_GPL(invalidate_inode_pages2);