summaryrefslogtreecommitdiffstats
path: root/fs/ext4/inline.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/ext4/inline.c')
-rw-r--r--fs/ext4/inline.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c
index 9c4bac18cc6c..27373d88b5f0 100644
--- a/fs/ext4/inline.c
+++ b/fs/ext4/inline.c
@@ -705,8 +705,11 @@ int ext4_try_to_write_inline_data(struct address_space *mapping,
705 705
706 if (!PageUptodate(page)) { 706 if (!PageUptodate(page)) {
707 ret = ext4_read_inline_page(inode, page); 707 ret = ext4_read_inline_page(inode, page);
708 if (ret < 0) 708 if (ret < 0) {
709 unlock_page(page);
710 put_page(page);
709 goto out_up_read; 711 goto out_up_read;
712 }
710 } 713 }
711 714
712 ret = 1; 715 ret = 1;