mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-10 13:04:36 -05:00
ceph: use page_offset() in ceph_writepages_start()
There's one spot in ceph_writepages_start() that open-codes what
page_offset() does safely. Use the macro so we don't have to worry
about wrapping.
This resolves:
http://tracker.ceph.com/issues/4648
Signed-off-by: Alex Elder <elder@inktank.com>
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
This commit is contained in:
@@ -900,7 +900,7 @@ static int ceph_writepages_start(struct address_space *mapping,
|
||||
}
|
||||
|
||||
/* submit the write */
|
||||
offset = req->r_data_out.pages[0]->index << PAGE_CACHE_SHIFT;
|
||||
offset = page_offset(req->r_data_out.pages[0]);
|
||||
len = min((snap_size ? snap_size : i_size_read(inode)) - offset,
|
||||
(u64)locked_pages << PAGE_CACHE_SHIFT);
|
||||
dout("writepages got %d pages at %llu~%llu\n",
|
||||
|
||||
Reference in New Issue
Block a user