blk_start_queue
Name
blk_start_queue -- restart a previously stopped queue
Synopsis
void blk_start_queue (request_queue_t * q);
Arguments
- q
The &request_queue_t in question
Description
blk_start_queue will clear the stop flag on the queue, and call
the request_fn for the queue if it was in a stopped state when
entered. Also see blk_stop_queue. Must not be called from driver
request function due to recursion issues. Queue lock must be held.