From: David Howells Date: Tue, 2 Jan 2018 10:02:19 +0000 (+0000) Subject: afs: Fix missing error handling in afs_write_end() X-Git-Tag: v4.14.24~51 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=622ded58410c69c821bd5e4b9b5be2dbc0af2c01;p=users%2Fjedix%2Flinux-maple.git afs: Fix missing error handling in afs_write_end() [ Upstream commit afae457d874860a7e299d334f59eede5f3ad4b47 ] afs_write_end() is missing page unlock and put if afs_fill_page() fails. Reported-by: Al Viro Signed-off-by: David Howells Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/afs/write.c b/fs/afs/write.c index 106e43db1115..926d4d68f791 100644 --- a/fs/afs/write.c +++ b/fs/afs/write.c @@ -282,7 +282,7 @@ int afs_write_end(struct file *file, struct address_space *mapping, ret = afs_fill_page(vnode, key, pos + copied, len - copied, page); if (ret < 0) - return ret; + goto out; } SetPageUptodate(page); } @@ -290,10 +290,12 @@ int afs_write_end(struct file *file, struct address_space *mapping, set_page_dirty(page); if (PageDirty(page)) _debug("dirtied"); + ret = copied; + +out: unlock_page(page); put_page(page); - - return copied; + return ret; } /*