Lines Matching refs:schib
176 struct schib *schib)
180 switch (schib->pmcw.st) {
183 if (!css_sch_is_valid(schib))
185 else if (is_blacklisted(schid.ssid, schib->pmcw.dev)) {
188 schib->pmcw.dev, schid.ssid);
200 schid.ssid, schid.sch_no, schib->pmcw.st);
206 struct schib *schib)
211 ret = css_validate_subchannel(schid, schib);
220 sch->schib = *schib;
221 sch->st = schib->pmcw.st;
307 ssd_from_pmcw(&sch->ssd_info, &sch->schib.pmcw);
422 struct pmcw *pmcw = &sch->schib.pmcw;
434 struct pmcw *pmcw = &sch->schib.pmcw;
499 static int css_probe_device(struct subchannel_id schid, struct schib *schib)
504 sch = css_alloc_subchannel(schid, schib);
538 * @schib: subchannel information block for the subchannel
540 int css_sch_is_valid(struct schib *schib)
542 if ((schib->pmcw.st == SUBCHANNEL_TYPE_IO) && !schib->pmcw.dnv)
544 if ((schib->pmcw.st == SUBCHANNEL_TYPE_MSG) && !schib->pmcw.w)
552 struct schib schib;
565 ccode = stsch(schid, &schib);
569 return css_probe_device(schid, &schib);