Lines Matching refs:match_id
905 struct sch_match_id *match_id = data; in __reipl_subchannel_match() local
910 (schib.pmcw.dev == match_id->devid.devno) && in __reipl_subchannel_match()
911 (schid.ssid == match_id->devid.ssid)) { in __reipl_subchannel_match()
912 match_id->schid = schid; in __reipl_subchannel_match()
913 match_id->rc = 0; in __reipl_subchannel_match()
922 struct sch_match_id match_id; in reipl_find_schid() local
924 match_id.devid = *devid; in reipl_find_schid()
925 match_id.rc = -ENODEV; in reipl_find_schid()
926 for_each_subchannel(__reipl_subchannel_match, &match_id); in reipl_find_schid()
927 if (match_id.rc == 0) in reipl_find_schid()
928 *schid = match_id.schid; in reipl_find_schid()
929 return match_id.rc; in reipl_find_schid()