aboutsummaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
Diffstat (limited to 'block')
-rw-r--r--block/ll_rw_blk.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/block/ll_rw_blk.c b/block/ll_rw_blk.c
index 556a3d354eab..9c3a06bcb7ba 100644
--- a/block/ll_rw_blk.c
+++ b/block/ll_rw_blk.c
@@ -2801,6 +2801,18 @@ long blk_congestion_wait(int rw, long timeout)
2801 2801
2802EXPORT_SYMBOL(blk_congestion_wait); 2802EXPORT_SYMBOL(blk_congestion_wait);
2803 2803
2804/**
2805 * blk_congestion_end - wake up sleepers on a congestion queue
2806 * @rw: READ or WRITE
2807 */
2808void blk_congestion_end(int rw)
2809{
2810 wait_queue_head_t *wqh = &congestion_wqh[rw];
2811
2812 if (waitqueue_active(wqh))
2813 wake_up(wqh);
2814}
2815
2804/* 2816/*
2805 * Has to be called with the request spinlock acquired 2817 * Has to be called with the request spinlock acquired
2806 */ 2818 */