瀏覽代碼

[patch] cleanup: use blk_queue_stopped

This cleanup the source to use blk_queue_stopped.

Signed-off-by: Coywolf Qi Hunt <qiyong@freeforge.net>
Signed-off-by: Jens Axboe <axboe@suse.de>
Coywolf Qi Hunt 19 年之前
父節點
當前提交
7daac49020
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      block/ll_rw_blk.c

+ 2 - 2
block/ll_rw_blk.c

@@ -1554,7 +1554,7 @@ void blk_plug_device(request_queue_t *q)
 	 * don't plug a stopped queue, it must be paired with blk_start_queue()
 	 * don't plug a stopped queue, it must be paired with blk_start_queue()
 	 * which will restart the queueing
 	 * which will restart the queueing
 	 */
 	 */
-	if (test_bit(QUEUE_FLAG_STOPPED, &q->queue_flags))
+	if (blk_queue_stopped(q))
 		return;
 		return;
 
 
 	if (!test_and_set_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags)) {
 	if (!test_and_set_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags)) {
@@ -1587,7 +1587,7 @@ EXPORT_SYMBOL(blk_remove_plug);
  */
  */
 void __generic_unplug_device(request_queue_t *q)
 void __generic_unplug_device(request_queue_t *q)
 {
 {
-	if (unlikely(test_bit(QUEUE_FLAG_STOPPED, &q->queue_flags)))
+	if (unlikely(blk_queue_stopped(q)))
 		return;
 		return;
 
 
 	if (!blk_remove_plug(q))
 	if (!blk_remove_plug(q))