* [PATCH] ext4: hole-punch use truncate_pagecache_range
@ 2012-05-13 20:47 Hugh Dickins
2012-06-01 4:17 ` Ted Ts'o
0 siblings, 1 reply; 2+ messages in thread
From: Hugh Dickins @ 2012-05-13 20:47 UTC (permalink / raw)
To: Theodore Ts'o; +Cc: Christoph Hellwig, linux-ext4, linux-fsdevel, linux-mm
When truncating a file, we unmap pages from userspace first, as that's
usually more efficient than relying, page by page, on the fallback in
truncate_inode_page() - particularly if the file is mapped many times.
Do the same when punching a hole: 3.4 added truncate_pagecache_range()
to do the unmap and trunc, so use it in ext4_ext_punch_hole(), instead
of calling truncate_inode_pages_range() directly.
Signed-off-by: Hugh Dickins <hughd@google.com>
---
fs/ext4/extents.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
--- next-20120511/fs/ext4/extents.c 2012-05-11 00:22:26.011158147 -0700
+++ linux/fs/ext4/extents.c 2012-05-12 18:01:14.988654723 -0700
@@ -4789,8 +4789,8 @@ int ext4_ext_punch_hole(struct file *fil
/* Now release the pages */
if (last_page_offset > first_page_offset) {
- truncate_inode_pages_range(mapping, first_page_offset,
- last_page_offset-1);
+ truncate_pagecache_range(inode, first_page_offset,
+ last_page_offset - 1);
}
/* finish any pending end_io work */
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] ext4: hole-punch use truncate_pagecache_range
2012-05-13 20:47 [PATCH] ext4: hole-punch use truncate_pagecache_range Hugh Dickins
@ 2012-06-01 4:17 ` Ted Ts'o
0 siblings, 0 replies; 2+ messages in thread
From: Ted Ts'o @ 2012-06-01 4:17 UTC (permalink / raw)
To: Hugh Dickins; +Cc: Christoph Hellwig, linux-ext4, linux-fsdevel, linux-mm
On Sun, May 13, 2012 at 01:47:00PM -0700, Hugh Dickins wrote:
> When truncating a file, we unmap pages from userspace first, as that's
> usually more efficient than relying, page by page, on the fallback in
> truncate_inode_page() - particularly if the file is mapped many times.
>
> Do the same when punching a hole: 3.4 added truncate_pagecache_range()
> to do the unmap and trunc, so use it in ext4_ext_punch_hole(), instead
> of calling truncate_inode_pages_range() directly.
>
> Signed-off-by: Hugh Dickins <hughd@google.com>
Applied, thanks.
- Ted
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-06-01 4:17 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-13 20:47 [PATCH] ext4: hole-punch use truncate_pagecache_range Hugh Dickins
2012-06-01 4:17 ` Ted Ts'o
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).