From patchwork Thu Nov 15 05:47:43 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [3.5.yuz, extended, stable] Patch "block: remove the duplicated setting for" has been added to staging queue Date: Wed, 14 Nov 2012 19:47:43 -0000 From: Herton Ronaldo Krzesinski X-Patchwork-Id: 199142 Message-Id: <1352958463-15179-1-git-send-email-herton.krzesinski@canonical.com> To: Jaehoon Chung Cc: Jens Axboe , Kyungmin Park , kernel-team@lists.ubuntu.com This is a note to let you know that I have just added a patch titled block: remove the duplicated setting for to the linux-3.5.y-queue branch of the 3.5.yuz extended stable tree which can be found at: http://kernel.ubuntu.com/git?p=ubuntu/linux.git;a=shortlog;h=refs/heads/linux-3.5.y-queue If you, or anyone else, feels it should not be added to this tree, please reply to this email. For more information about the 3.5.yuz tree, see https://wiki.ubuntu.com/Kernel/Dev/ExtendedStable Thanks. -Herton ------ >From f604ff934f932d9f90e28fb6a1689e207c6fff24 Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Fri, 31 Aug 2012 17:24:13 +0900 Subject: [PATCH] block: remove the duplicated setting for congestion_threshold commit e32463b2f7801d6561887c01db37b34958504635 upstream. Before call the blk_queue_congestion_threshold(), the blk_queue_congestion_threshold() is already called at blk_queue_make_rquest(). Because this code is the duplicated, it has removed. Signed-off-by: Jaehoon Chung Signed-off-by: Kyungmin Park Signed-off-by: Jens Axboe [ herton: only a cleanup, but allows clean application of commit 749fefe ] Signed-off-by: Herton Ronaldo Krzesinski --- block/blk-core.c | 2 -- 1 file changed, 2 deletions(-) -- 1.7.9.5 diff --git a/block/blk-core.c b/block/blk-core.c index 93eb3e4..ad39394 100644 --- a/block/blk-core.c +++ b/block/blk-core.c @@ -703,8 +703,6 @@ blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn, if (elevator_init(q, NULL)) return NULL; - blk_queue_congestion_threshold(q); - /* all done, end the initial bypass */ blk_queue_bypass_end(q); return q;