Changeset 14394141 in mainline
- Timestamp:
- 2025-04-20T13:45:48Z (7 weeks ago)
- Children:
- 58c43d4
- Parents:
- 50603405
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/hr/util.c
r50603405 r14394141 249 249 rc = block_init(svc_id); 250 250 if (rc != EOK) { 251 HR_DEBUG("%s(): initing (%" PRIun ") failed, aborting\n",252 __func__, svc_id);251 HR_DEBUG("%s(): initing (%" PRIun ") failed, " 252 "aborting\n", __func__, svc_id); 253 253 goto error; 254 254 } … … 300 300 for (i = 0; i < vol->extent_no; i++) { 301 301 if (vol->extents[i].svc_id != 0) { 302 HR_DEBUG("hr_fini_devs(): block_fini() on (%" PRIun ")\n",303 vol->extents[i].svc_id);302 HR_DEBUG("hr_fini_devs(): block_fini() on " 303 "(%" PRIun ")\n", vol->extents[i].svc_id); 304 304 block_fini(vol->extents[i].svc_id); 305 305 } … … 308 308 for (i = 0; i < vol->hotspare_no; i++) { 309 309 if (vol->hotspares[i].svc_id != 0) { 310 HR_DEBUG("hr_fini_devs(): block_fini() on (%" PRIun ")\n", 310 HR_DEBUG("hr_fini_devs(): block_fini() on " 311 "(%" PRIun ")\n", 311 312 vol->hotspares[i].svc_id); 312 313 block_fini(vol->hotspares[i].svc_id); … … 627 628 while (!list_empty(list)) { 628 629 dev_id = list_pop(list, struct dev_list_member, link); 630 629 631 free_dev_list_member(dev_id); 630 632 }
Note:
See TracChangeset
for help on using the changeset viewer.