diff options
author | Tejun Heo <tj@kernel.org> | 2013-05-14 16:52:31 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2013-05-14 16:52:31 -0400 |
commit | 2db6314c213bb21102dd1dad06cfda6a8682d624 (patch) | |
tree | bd24cda363c47d2d4d09b700cb6a2e0128b05cc8 /block | |
parent | 2a4fd070ee8561d918a3776388331bb7e92ea59e (diff) |
blk-throttle: remove spurious throtl_enqueue_tg() call from throtl_select_dispatch()
throtl_select_dispatch() calls throtl_enqueue_tg() right after
tg_update_disptime(), which always calls the function anyway. The
call is, while harmless, unnecessary. Remove it.
This patch doesn't introduce any behavior difference.
Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Vivek Goyal <vgoyal@redhat.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/blk-throttle.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/block/blk-throttle.c b/block/blk-throttle.c index 31146225f3d0..3960787358b6 100644 --- a/block/blk-throttle.c +++ b/block/blk-throttle.c | |||
@@ -816,10 +816,8 @@ static int throtl_select_dispatch(struct throtl_data *td, struct bio_list *bl) | |||
816 | 816 | ||
817 | nr_disp += throtl_dispatch_tg(td, tg, bl); | 817 | nr_disp += throtl_dispatch_tg(td, tg, bl); |
818 | 818 | ||
819 | if (tg->nr_queued[0] || tg->nr_queued[1]) { | 819 | if (tg->nr_queued[0] || tg->nr_queued[1]) |
820 | tg_update_disptime(td, tg); | 820 | tg_update_disptime(td, tg); |
821 | throtl_enqueue_tg(td, tg); | ||
822 | } | ||
823 | 821 | ||
824 | if (nr_disp >= throtl_quantum) | 822 | if (nr_disp >= throtl_quantum) |
825 | break; | 823 | break; |