From: Chris Mason Date: Fri, 11 Sep 2009 16:36:29 +0000 (-0400) Subject: Btrfs: zero page past end of inline file items X-Git-Tag: v2.6.32-rc1~57^2^2~26^2 X-Git-Url: http://bbs.cooldavid.org/git/?a=commitdiff_plain;h=93c82d575055f1bd0277acae6f966bebafd80dd5;hp=50a9b214bc6c052caa05a210ebfc1bdf0d7085b2;p=net-next-2.6.git Btrfs: zero page past end of inline file items When btrfs_get_extent is reading inline file items for readpage, it needs to copy the inline extent into the page. If the inline extent doesn't cover all of the page, that means there is a hole in the file, or that our file is smaller than one page. readpage does zeroing for the case where the file is smaller than one page, but nobody is currently zeroing for the case where there is a hole after the inline item. This commit changes btrfs_get_extent to zero fill the page past the end of the inline item. Signed-off-by: Chris Mason --- diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c index c846482e798..88f9df7bfda 100644 --- a/fs/btrfs/inode.c +++ b/fs/btrfs/inode.c @@ -4233,6 +4233,11 @@ again: map = kmap(page); read_extent_buffer(leaf, map + pg_offset, ptr, copy_size); + if (pg_offset + copy_size < PAGE_CACHE_SIZE) { + memset(map + pg_offset + copy_size, 0, + PAGE_CACHE_SIZE - pg_offset - + copy_size); + } kunmap(page); } flush_dcache_page(page);