Lines Matching refs:request
75 its state throughout execution. Each request goes through these stages:
77 a. osd_start_request() allocates the request.
79 b. Any of the osd_req_* methods is used to encode a request of the specified
84 can be called multiple times on the same request. However, only one
88 and signs the request using the provided capability key and integrity-
91 e. osd_execute_request() may be called to execute the request via the block
92 layer and wait for its completion. The request can be executed
95 f. After execution, osd_req_decode_sense() can be called to decode the request's
101 h. osd_end_request() must be called to deallocate the request and any resource
102 associated with it. Note that osd_end_request cleans up the request at any
152 A block device request can carry bidirectional payload by means of associating
153 a bidi_read request with a main write-request. Each in/out request is described
154 by a chain of BIOs associated with each request.