Lines Matching refs:request
25 static struct sclp_req *request; variable
132 request->command = SCLP_CMDW_WRITE_EVENT_DATA; in sclp_async_send_wait()
133 request->sccb = sccb; in sclp_async_send_wait()
134 request->status = SCLP_REQ_FILLED; in sclp_async_send_wait()
145 rc = sclp_add_request(request); in sclp_async_send_wait()
149 while (request->status != SCLP_REQ_DONE && in sclp_async_send_wait()
150 request->status != SCLP_REQ_FAILED) { in sclp_async_send_wait()
154 if (request->status != SCLP_REQ_DONE) in sclp_async_send_wait()
157 request->sccb)->header.response_code; in sclp_async_send_wait()
179 request = kzalloc(sizeof(struct sclp_req), GFP_KERNEL); in sclp_async_init()
181 if (!request || !sccb) in sclp_async_init()
188 kfree(request); in sclp_async_init()
205 kfree(request); in sclp_async_exit()