]> git.hungrycats.org Git - linux/commitdiff
btrfs: need_resched not needed with cond_resched
authorDavid Sterba <dsterba@suse.cz>
Thu, 8 Jan 2015 14:15:19 +0000 (15:15 +0100)
committerZygo Blaxell <zblaxell@serenity.furryterror.org>
Mon, 4 May 2015 00:41:40 +0000 (20:41 -0400)
Cleanup, no special reason to do

if (need_resched())
        cond_resched();

Signed-off-by: David Sterba <dsterba@suse.cz>
(cherry picked from commit 853d8ec4b288ce52b49e12beeef0f3659ac423ce)

fs/btrfs/volumes.c

index d3ce1f7a1857e2de5f955ab9349d5ee1f466c40d..3460444b7ec88f53bd8dc816a4c647d3b14cc074 100644 (file)
@@ -366,8 +366,8 @@ loop_lock:
                btrfsic_submit_bio(cur->bi_rw, cur);
                num_run++;
                batch_run++;
-               if (need_resched())
-                       cond_resched();
+
+               cond_resched();
 
                /*
                 * we made progress, there is more work to do and the bdi
@@ -400,8 +400,7 @@ loop_lock:
                                 * against it before looping
                                 */
                                last_waited = ioc->last_waited;
-                               if (need_resched())
-                                       cond_resched();
+                               cond_resched();
                                continue;
                        }
                        spin_lock(&device->io_lock);