Lines Matching refs:rc
129 int rc; in cpi_req() local
132 rc = sclp_register(&sclp_cpi_event); in cpi_req()
133 if (rc) in cpi_req()
136 rc = -EOPNOTSUPP; in cpi_req()
142 rc = PTR_ERR(req); in cpi_req()
150 rc = sclp_add_request(req); in cpi_req()
151 if (rc) in cpi_req()
159 rc = -EIO; in cpi_req()
167 rc = -EIO; in cpi_req()
177 return rc; in cpi_req()
224 int rc; in system_name_show() local
227 rc = snprintf(page, PAGE_SIZE, "%s\n", system_name); in system_name_show()
229 return rc; in system_name_show()
237 int rc; in system_name_store() local
239 rc = check_string("system_name", buf); in system_name_store()
240 if (rc) in system_name_store()
241 return rc; in system_name_store()
256 int rc; in sysplex_name_show() local
259 rc = snprintf(page, PAGE_SIZE, "%s\n", sysplex_name); in sysplex_name_show()
261 return rc; in sysplex_name_show()
269 int rc; in sysplex_name_store() local
271 rc = check_string("sysplex_name", buf); in sysplex_name_store()
272 if (rc) in sysplex_name_store()
273 return rc; in sysplex_name_store()
288 int rc; in system_type_show() local
291 rc = snprintf(page, PAGE_SIZE, "%s\n", system_type); in system_type_show()
293 return rc; in system_type_show()
301 int rc; in system_type_store() local
303 rc = check_string("system_type", buf); in system_type_store()
304 if (rc) in system_type_store()
305 return rc; in system_type_store()
358 int rc; in set_store() local
361 rc = cpi_req(); in set_store()
363 if (rc) in set_store()
364 return rc; in set_store()
389 int rc; in sclp_cpi_set_data() local
391 rc = check_string("system_name", system); in sclp_cpi_set_data()
392 if (rc) in sclp_cpi_set_data()
393 return rc; in sclp_cpi_set_data()
394 rc = check_string("sysplex_name", sysplex); in sclp_cpi_set_data()
395 if (rc) in sclp_cpi_set_data()
396 return rc; in sclp_cpi_set_data()
397 rc = check_string("system_type", type); in sclp_cpi_set_data()
398 if (rc) in sclp_cpi_set_data()
399 return rc; in sclp_cpi_set_data()
407 rc = cpi_req(); in sclp_cpi_set_data()
410 return rc; in sclp_cpi_set_data()
416 int rc; in cpi_init() local
422 rc = sysfs_create_group(&cpi_kset->kobj, &cpi_attr_group); in cpi_init()
423 if (rc) in cpi_init()
426 return rc; in cpi_init()