1. NAME

blk_unprep_request - unprepare a request

2. SYNOPSIS

void blk_unprep_request(struct request *  req );

3. ARGUMENTS

req
    the request

4. DESCRIPTION

This function makes a request ready for complete resubmission (or completion). It happens only after all error handling is complete, so represents the appropriate moment to deallocate any resources that were allocated to the request in the prep_rq_fn. The queue lock is held when calling this.

5. COPYRIGHT