1. NAME

blk_delay_queue - restart queueing after defined interval

2. SYNOPSIS

void blk_delay_queue(struct request_queue *  q , unsigned long  msecs );

3. ARGUMENTS

q
    The struct request_queue in question

msecs
    Delay in msecs

4. DESCRIPTION

Sometimes queueing needs to be postponed for a little while, to allow resources to come back. This function will make sure that queueing is restarted around the specified time. Queue lock must be held.

5. COPYRIGHT