aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/block/ll_rw_blk.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/block/ll_rw_blk.c b/drivers/block/ll_rw_blk.c
index 1197462bb6ba..692a5fced76e 100644
--- a/drivers/block/ll_rw_blk.c
+++ b/drivers/block/ll_rw_blk.c
@@ -1917,10 +1917,9 @@ get_rq:
1917 * limit of requests, otherwise we could have thousands of requests 1917 * limit of requests, otherwise we could have thousands of requests
1918 * allocated with any setting of ->nr_requests 1918 * allocated with any setting of ->nr_requests
1919 */ 1919 */
1920 if (rl->count[rw] >= (3 * q->nr_requests / 2)) { 1920 if (rl->count[rw] >= (3 * q->nr_requests / 2))
1921 spin_unlock_irq(q->queue_lock);
1922 goto out; 1921 goto out;
1923 } 1922
1924 rl->count[rw]++; 1923 rl->count[rw]++;
1925 rl->starved[rw] = 0; 1924 rl->starved[rw] = 0;
1926 if (rl->count[rw] >= queue_congestion_on_threshold(q)) 1925 if (rl->count[rw] >= queue_congestion_on_threshold(q))