mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-22 09:48:49 +07: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:
parent
ef4859d647
commit
25d71cb92d
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user