]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ext4: clean up some wait_on_page_writeback calls
authorDarrick J. Wong <djwong@us.ibm.com>
Wed, 18 May 2011 17:53:20 +0000 (13:53 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Wed, 18 May 2011 17:53:20 +0000 (13:53 -0400)
wait_on_page_writeback already checks the writeback bit, so callers of it
needn't do that test.

Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
fs/ext4/inode.c
fs/ext4/move_extent.c

index 3424e82392ad5a7643efc1867772cdafbfa29b1b..f6caaac837319318ce859180d336764697ee763f 100644 (file)
@@ -2796,9 +2796,7 @@ static int write_cache_pages_da(struct address_space *mapping,
                                continue;
                        }
 
-                       if (PageWriteback(page))
-                               wait_on_page_writeback(page);
-
+                       wait_on_page_writeback(page);
                        BUG_ON(PageWriteback(page));
 
                        if (mpd->next_page != page->index)
index b9f3e7862f13834b2c166b21a1b96d3e36dde428..2b8304bf3c50e1d1363287e79a66d5641fccceaa 100644 (file)
@@ -876,8 +876,7 @@ move_extent_per_page(struct file *o_filp, struct inode *donor_inode,
         * It needs to call wait_on_page_writeback() to wait for the
         * writeback of the page.
         */
-       if (PageWriteback(page))
-               wait_on_page_writeback(page);
+       wait_on_page_writeback(page);
 
        /* Release old bh and drop refs */
        try_to_release_page(page, 0);