summaryrefslogtreecommitdiffstats
path: root/fs/ceph/addr.c
diff options
context:
space:
mode:
authorAlex Elder2013-03-02 01:00:15 +0100
committerSage Weil2013-05-02 06:16:21 +0200
commitcf7b7e1492e97dd0c44479239742eb4cb752eeed (patch)
tree83ed8068f3b0c1138601a763657aa3a2335fd24e /fs/ceph/addr.c
parentlibceph: no need for alignment for mds message (diff)
downloadkernel-qcow2-linux-cf7b7e1492e97dd0c44479239742eb4cb752eeed.tar.gz
kernel-qcow2-linux-cf7b7e1492e97dd0c44479239742eb4cb752eeed.tar.xz
kernel-qcow2-linux-cf7b7e1492e97dd0c44479239742eb4cb752eeed.zip
ceph: use calc_pages_for() in start_read()
There's a spot that computes the number of pages to allocate for a page-aligned length by just shifting it. Use calc_pages_for() instead, to be consistent with usage everywhere else. The result is the same. The reason for this is to make it clearer in an upcoming patch that this calculation is duplicated. Signed-off-by: Alex Elder <elder@inktank.com> Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
Diffstat (limited to 'fs/ceph/addr.c')
-rw-r--r--fs/ceph/addr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c
index 2a571fb4803b..e53f24b15b12 100644
--- a/fs/ceph/addr.c
+++ b/fs/ceph/addr.c
@@ -314,7 +314,7 @@ static int start_read(struct inode *inode, struct list_head *page_list, int max)
return PTR_ERR(req);
/* build page vector */
- nr_pages = len >> PAGE_CACHE_SHIFT;
+ nr_pages = calc_pages_for(0, len);
pages = kmalloc(sizeof(*pages) * nr_pages, GFP_NOFS);
ret = -ENOMEM;
if (!pages)