aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYan, Zheng <zheng.z.yan@linux.intel.com>2011-01-18 00:34:40 -0500
committerChris Mason <chris.mason@oracle.com>2011-02-07 14:13:51 -0500
commit3a90983dbdcb2f4f48c0d771d8e5b4d88f27fae6 (patch)
tree3179f5e834e482cc3f782e709a53b08591416c76
parent8e4eef7a60eeca0fe7503e5cbd3b24ff4941c732 (diff)
Btrfs: Fix page count calculation
take offset of start position into account when calculating page count. Signed-off-by: Yan, Zheng <zheng.z.yan@intel.com> Signed-off-by: Chris Mason <chris.mason@oracle.com>
-rw-r--r--fs/btrfs/file.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/btrfs/file.c b/fs/btrfs/file.c
index 9e097fbfc78d..b0ff34b96607 100644
--- a/fs/btrfs/file.c
+++ b/fs/btrfs/file.c
@@ -991,8 +991,8 @@ static ssize_t btrfs_file_aio_write(struct kiocb *iocb,
991 size_t write_bytes = min(iov_iter_count(&i), 991 size_t write_bytes = min(iov_iter_count(&i),
992 nrptrs * (size_t)PAGE_CACHE_SIZE - 992 nrptrs * (size_t)PAGE_CACHE_SIZE -
993 offset); 993 offset);
994 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >> 994 size_t num_pages = (write_bytes + offset +
995 PAGE_CACHE_SHIFT; 995 PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
996 996
997 WARN_ON(num_pages > nrptrs); 997 WARN_ON(num_pages > nrptrs);
998 memset(pages, 0, sizeof(struct page *) * nrptrs); 998 memset(pages, 0, sizeof(struct page *) * nrptrs);
@@ -1022,8 +1022,8 @@ static ssize_t btrfs_file_aio_write(struct kiocb *iocb,
1022 1022
1023 copied = btrfs_copy_from_user(pos, num_pages, 1023 copied = btrfs_copy_from_user(pos, num_pages,
1024 write_bytes, pages, &i); 1024 write_bytes, pages, &i);
1025 dirty_pages = (copied + PAGE_CACHE_SIZE - 1) >> 1025 dirty_pages = (copied + offset + PAGE_CACHE_SIZE - 1) >>
1026 PAGE_CACHE_SHIFT; 1026 PAGE_CACHE_SHIFT;
1027 1027
1028 if (num_pages > dirty_pages) { 1028 if (num_pages > dirty_pages) {
1029 if (copied > 0) 1029 if (copied > 0)