2 * mm/truncate.c - code for taking down pages from address_spaces
4 * Copyright (C) 2002, Linus Torvalds
6 * 10Sep2002 akpm@zip.com.au
10 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/pagemap.h>
14 #include <linux/pagevec.h>
15 #include <linux/buffer_head.h> /* grr. try_to_release_page,
19 static inline void truncate_partial_page(struct page
*page
, unsigned partial
)
21 memclear_highpage_flush(page
, partial
, PAGE_CACHE_SIZE
-partial
);
22 if (PagePrivate(page
))
23 do_invalidatepage(page
, partial
);
27 * If truncate cannot remove the fs-private metadata from the page, the page
28 * becomes anonymous. It will be left on the LRU and may even be mapped into
29 * user pagetables if we're racing with filemap_nopage().
31 * We need to bale out if page->mapping is no longer equal to the original
32 * mapping. This happens a) when the VM reclaimed the page while we waited on
33 * its lock, b) when a concurrent invalidate_inode_pages got there first and
34 * c) when tmpfs swizzles a page between a tmpfs inode and swapper_space.
37 truncate_complete_page(struct address_space
*mapping
, struct page
*page
)
39 if (page
->mapping
!= mapping
)
42 if (PagePrivate(page
))
43 do_invalidatepage(page
, 0);
45 clear_page_dirty(page
);
46 ClearPageUptodate(page
);
47 ClearPageMappedToDisk(page
);
48 remove_from_page_cache(page
);
49 page_cache_release(page
); /* pagecache ref */
53 * This is for invalidate_inode_pages(). That function can be called at
54 * any time, and is not supposed to throw away dirty pages. But pages can
55 * be marked dirty at any time too. So we re-check the dirtiness inside
56 * ->tree_lock. That provides exclusion against the __set_page_dirty
59 * Returns non-zero if the page was successfully invalidated.
62 invalidate_complete_page(struct address_space
*mapping
, struct page
*page
)
64 if (page
->mapping
!= mapping
)
67 if (PagePrivate(page
) && !try_to_release_page(page
, 0))
70 write_lock_irq(&mapping
->tree_lock
);
71 if (PageDirty(page
)) {
72 write_unlock_irq(&mapping
->tree_lock
);
76 BUG_ON(PagePrivate(page
));
77 __remove_from_page_cache(page
);
78 write_unlock_irq(&mapping
->tree_lock
);
79 ClearPageUptodate(page
);
80 page_cache_release(page
); /* pagecache ref */
85 * truncate_inode_pages - truncate range of pages specified by start and
87 * @mapping: mapping to truncate
88 * @lstart: offset from which to truncate
89 * @lend: offset to which to truncate
91 * Truncate the page cache, removing the pages that are between
92 * specified offsets (and zeroing out partial page
93 * (if lstart is not page aligned)).
95 * Truncate takes two passes - the first pass is nonblocking. It will not
96 * block on page locks and it will not block on writeback. The second pass
97 * will wait. This is to prevent as much IO as possible in the affected region.
98 * The first pass will remove most pages, so the search cost of the second pass
101 * When looking at page->index outside the page lock we need to be careful to
102 * copy it into a local to avoid races (it could change at any time).
104 * We pass down the cache-hot hint to the page freeing code. Even if the
105 * mapping is large, it is probably the case that the final pages are the most
106 * recently touched, and freeing happens in ascending file offset order.
108 void truncate_inode_pages_range(struct address_space
*mapping
,
109 loff_t lstart
, loff_t lend
)
111 const pgoff_t start
= (lstart
+ PAGE_CACHE_SIZE
-1) >> PAGE_CACHE_SHIFT
;
113 const unsigned partial
= lstart
& (PAGE_CACHE_SIZE
- 1);
118 if (mapping
->nrpages
== 0)
121 BUG_ON((lend
& (PAGE_CACHE_SIZE
- 1)) != (PAGE_CACHE_SIZE
- 1));
122 end
= (lend
>> PAGE_CACHE_SHIFT
);
124 pagevec_init(&pvec
, 0);
126 while (next
<= end
&&
127 pagevec_lookup(&pvec
, mapping
, next
, PAGEVEC_SIZE
)) {
128 for (i
= 0; i
< pagevec_count(&pvec
); i
++) {
129 struct page
*page
= pvec
.pages
[i
];
130 pgoff_t page_index
= page
->index
;
132 if (page_index
> end
) {
137 if (page_index
> next
)
140 if (TestSetPageLocked(page
))
142 if (PageWriteback(page
)) {
146 truncate_complete_page(mapping
, page
);
149 pagevec_release(&pvec
);
154 struct page
*page
= find_lock_page(mapping
, start
- 1);
156 wait_on_page_writeback(page
);
157 truncate_partial_page(page
, partial
);
159 page_cache_release(page
);
166 if (!pagevec_lookup(&pvec
, mapping
, next
, PAGEVEC_SIZE
)) {
172 if (pvec
.pages
[0]->index
> end
) {
173 pagevec_release(&pvec
);
176 for (i
= 0; i
< pagevec_count(&pvec
); i
++) {
177 struct page
*page
= pvec
.pages
[i
];
179 if (page
->index
> end
)
182 wait_on_page_writeback(page
);
183 if (page
->index
> next
)
186 truncate_complete_page(mapping
, page
);
189 pagevec_release(&pvec
);
192 EXPORT_SYMBOL(truncate_inode_pages_range
);
195 * truncate_inode_pages - truncate *all* the pages from an offset
196 * @mapping: mapping to truncate
197 * @lstart: offset from which to truncate
199 * Called under (and serialised by) inode->i_mutex.
201 void truncate_inode_pages(struct address_space
*mapping
, loff_t lstart
)
203 truncate_inode_pages_range(mapping
, lstart
, (loff_t
)-1);
205 EXPORT_SYMBOL(truncate_inode_pages
);
208 * invalidate_mapping_pages - Invalidate all the unlocked pages of one inode
209 * @mapping: the address_space which holds the pages to invalidate
210 * @start: the offset 'from' which to invalidate
211 * @end: the offset 'to' which to invalidate (inclusive)
213 * This function only removes the unlocked pages, if you want to
214 * remove all the pages of one inode, you must call truncate_inode_pages.
216 * invalidate_mapping_pages() will not block on IO activity. It will not
217 * invalidate pages which are dirty, locked, under writeback or mapped into
220 unsigned long invalidate_mapping_pages(struct address_space
*mapping
,
221 pgoff_t start
, pgoff_t end
)
224 pgoff_t next
= start
;
225 unsigned long ret
= 0;
228 pagevec_init(&pvec
, 0);
229 while (next
<= end
&&
230 pagevec_lookup(&pvec
, mapping
, next
, PAGEVEC_SIZE
)) {
231 for (i
= 0; i
< pagevec_count(&pvec
); i
++) {
232 struct page
*page
= pvec
.pages
[i
];
234 if (TestSetPageLocked(page
)) {
238 if (page
->index
> next
)
241 if (PageDirty(page
) || PageWriteback(page
))
243 if (page_mapped(page
))
245 ret
+= invalidate_complete_page(mapping
, page
);
251 pagevec_release(&pvec
);
256 unsigned long invalidate_inode_pages(struct address_space
*mapping
)
258 return invalidate_mapping_pages(mapping
, 0, ~0UL);
261 EXPORT_SYMBOL(invalidate_inode_pages
);
264 * invalidate_inode_pages2_range - remove range of pages from an address_space
265 * @mapping: the address_space
266 * @start: the page offset 'from' which to invalidate
267 * @end: the page offset 'to' which to invalidate (inclusive)
269 * Any pages which are found to be mapped into pagetables are unmapped prior to
272 * Returns -EIO if any pages could not be invalidated.
274 int invalidate_inode_pages2_range(struct address_space
*mapping
,
275 pgoff_t start
, pgoff_t end
)
281 int did_range_unmap
= 0;
284 pagevec_init(&pvec
, 0);
286 while (next
<= end
&& !ret
&& !wrapped
&&
287 pagevec_lookup(&pvec
, mapping
, next
,
288 min(end
- next
, (pgoff_t
)PAGEVEC_SIZE
- 1) + 1)) {
289 for (i
= 0; !ret
&& i
< pagevec_count(&pvec
); i
++) {
290 struct page
*page
= pvec
.pages
[i
];
295 if (page
->mapping
!= mapping
) {
299 page_index
= page
->index
;
300 next
= page_index
+ 1;
303 if (page_index
> end
) {
307 wait_on_page_writeback(page
);
308 while (page_mapped(page
)) {
309 if (!did_range_unmap
) {
311 * Zap the rest of the file in one hit.
313 unmap_mapping_range(mapping
,
314 (loff_t
)page_index
<<PAGE_CACHE_SHIFT
,
315 (loff_t
)(end
- page_index
+ 1)
323 unmap_mapping_range(mapping
,
324 (loff_t
)page_index
<<PAGE_CACHE_SHIFT
,
328 was_dirty
= test_clear_page_dirty(page
);
329 if (!invalidate_complete_page(mapping
, page
)) {
331 set_page_dirty(page
);
336 pagevec_release(&pvec
);
341 EXPORT_SYMBOL_GPL(invalidate_inode_pages2_range
);
344 * invalidate_inode_pages2 - remove all pages from an address_space
345 * @mapping: the address_space
347 * Any pages which are found to be mapped into pagetables are unmapped prior to
350 * Returns -EIO if any pages could not be invalidated.
352 int invalidate_inode_pages2(struct address_space
*mapping
)
354 return invalidate_inode_pages2_range(mapping
, 0, -1);
356 EXPORT_SYMBOL_GPL(invalidate_inode_pages2
);