1. NAME

blk_execute_rq_nowait - insert a request into queue for execution

2. SYNOPSIS

void blk_execute_rq_nowait(struct request_queue *  q , struct gendisk *  bd_disk , struct request *  rq , int  at_head , rq_end_io_fn *  done );

3. ARGUMENTS

q
    queue to insert the request in

bd_disk
    matching gendisk

rq
    request to insert

at_head
    insert request at head or tail of queue

done
    I/O completion handler

4. DESCRIPTION

Insert a fully prepared request at the back of the I/O scheduler queue for execution. DonAqt wait for completion.

5. NOTE

This function will invoke done directly if the queue is dead.

6. COPYRIGHT