Lines Matching refs:ccode
132 int ccode; in cio_start_key() local
154 ccode = ssch(sch->schid, orb); in cio_start_key()
157 CIO_HEX_EVENT(5, &ccode, sizeof(ccode)); in cio_start_key()
159 switch (ccode) { in cio_start_key()
172 return ccode; in cio_start_key()
188 int ccode; in cio_resume() local
193 ccode = rsch (sch->schid); in cio_resume()
195 CIO_HEX_EVENT(4, &ccode, sizeof(ccode)); in cio_resume()
197 switch (ccode) { in cio_resume()
220 int ccode; in cio_halt() local
231 ccode = hsch (sch->schid); in cio_halt()
233 CIO_HEX_EVENT(2, &ccode, sizeof(ccode)); in cio_halt()
235 switch (ccode) { in cio_halt()
253 int ccode; in cio_clear() local
264 ccode = csch (sch->schid); in cio_clear()
266 CIO_HEX_EVENT(2, &ccode, sizeof(ccode)); in cio_clear()
268 switch (ccode) { in cio_clear()
287 int ccode; in cio_cancel() local
295 ccode = xsch (sch->schid); in cio_cancel()
297 CIO_HEX_EVENT(2, &ccode, sizeof(ccode)); in cio_cancel()
299 switch (ccode) { in cio_cancel()
347 int ccode, retry, ret = 0; in cio_commit_config() local
357 ccode = msch_err(sch->schid, &schib); in cio_commit_config()
358 if (ccode < 0) /* -EIO if msch gets a program check. */ in cio_commit_config()
359 return ccode; in cio_commit_config()
360 switch (ccode) { in cio_commit_config()
514 int ccode; in cio_validate_subchannel() local
526 ccode = stsch_err(schid, &sch->schib); in cio_validate_subchannel()
527 if (ccode) { in cio_validate_subchannel()
528 err = (ccode == 3) ? -ENXIO : ccode; in cio_validate_subchannel()