1. NAME▲
__blk_end_request - Helper function for drivers to complete the request.
2. SYNOPSIS ▲
bool __blk_end_request(struct request * rq , int error , unsigned int nr_bytes );
3. ARGUMENTS ▲
rq
the request being processed
error
0 for success, < 0 for error
nr_bytes
number of bytes to complete
4. DESCRIPTION ▲
Must be called with queue lock held unlike blk_end_request.
5. RETURN ▲
false - we are done with this request true - still buffers pending for this request
6. COPYRIGHT ▲