mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-15 05:11:32 +00:00
dm: reduce the queue delay used in dm_request_fn from 100ms to 10ms
Commit 7eaceaccab
("block: remove per-queue plugging") didn't justify
DM's use of a 100ms delay; such an extended delay is a liability when
there is reason to re-kick the queue.
Signed-off-by: Mike Snitzer <snitzer@redhat.com>
This commit is contained in:
parent
9d1deb83d4
commit
d548b34b06
@ -1997,7 +1997,7 @@ static void dm_request_fn(struct request_queue *q)
|
|||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
delay_and_out:
|
delay_and_out:
|
||||||
blk_delay_queue(q, HZ / 10);
|
blk_delay_queue(q, HZ / 100);
|
||||||
out:
|
out:
|
||||||
dm_put_live_table(md, srcu_idx);
|
dm_put_live_table(md, srcu_idx);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user