From: Sage Weil Date: Thu, 22 Apr 2010 20:48:59 +0000 (-0700) Subject: ceph: fix direct io truncate offset X-Git-Tag: v2.6.34-rc7~32^2~3 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=5c6a2cdb4fe8aaf6b54f022c14f13d2a12b45914;p=linux-block.git ceph: fix direct io truncate offset truncate_inode_pages_range wants the end offset to align with the last byte in a page. Signed-off-by: Sage Weil --- diff --git a/fs/ceph/file.c b/fs/ceph/file.c index 4add3d5da2c1..ed6f19721d6e 100644 --- a/fs/ceph/file.c +++ b/fs/ceph/file.c @@ -665,7 +665,8 @@ more: * throw out any page cache pages in this range. this * may block. */ - truncate_inode_pages_range(inode->i_mapping, pos, pos+len); + truncate_inode_pages_range(inode->i_mapping, pos, + (pos+len) | (PAGE_CACHE_SIZE-1)); } else { pages = alloc_page_vector(num_pages); if (IS_ERR(pages)) {