ext4: remove an unneeded check in mext_page_mkuptodate()
authorDan Carpenter <dan.carpenter@oracle.com>
Tue, 18 Feb 2014 01:46:40 +0000 (20:46 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Tue, 18 Feb 2014 01:46:40 +0000 (20:46 -0500)
"err" is zero here, there is no need to check again.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/move_extent.c

index 773b503..f39a88a 100644 (file)
@@ -861,8 +861,7 @@ mext_page_mkuptodate(struct page *page, unsigned from, unsigned to)
                        }
                        if (!buffer_mapped(bh)) {
                                zero_user(page, block_start, blocksize);
-                               if (!err)
-                                       set_buffer_uptodate(bh);
+                               set_buffer_uptodate(bh);
                                continue;
                        }
                }