Skip to content
Snippets Groups Projects
Commit 458c4703 authored by Minfei Huang's avatar Minfei Huang Committed by Ilya Dryomov
Browse files

ceph: Avoid to propagate the invalid page point


The variant pagep will still get the invalid page point, although ceph
fails in function ceph_update_writeable_page.

To fix this issue, Assigne the page to pagep until there is no failure
in function ceph_update_writeable_page.

Signed-off-by: default avatarMinfei Huang <mnfhuang@gmail.com>
Signed-off-by: default avatarYan, Zheng <zyan@redhat.com>
parent f9cac5ac
No related branches found
No related tags found
No related merge requests found
......@@ -1149,7 +1149,6 @@ static int ceph_write_begin(struct file *file, struct address_space *mapping,
page = grab_cache_page_write_begin(mapping, index, 0);
if (!page)
return -ENOMEM;
*pagep = page;
dout("write_begin file %p inode %p page %p %d~%d\n", file,
inode, page, (int)pos, (int)len);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment