Changeset a5a2dcf in mainline
- Timestamp:
- 2025-06-23T11:48:36Z (4 months ago)
- Children:
- f6590c4
- Parents:
- 13f4c85
- git-author:
- Miroslav Cimerman <mc@…> (2025-06-23 11:47:28)
- git-committer:
- Miroslav Cimerman <mc@…> (2025-06-23 11:48:36)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/hr/util.c
r13f4c85 ra5a2dcf 445 445 446 446 hr_ext_state_t old = vol->extents[ext_idx].state; 447 HR_ NOTE("\"%s\": changing extent %zu state: %s -> %s\n",447 HR_DEBUG("\"%s\": changing extent %zu state: %s -> %s\n", 448 448 vol->devname, ext_idx, hr_get_ext_state_str(old), 449 449 hr_get_ext_state_str(s)); … … 459 459 460 460 hr_ext_state_t old = vol->hotspares[hs_idx].state; 461 HR_ NOTE("\"%s\": changing hotspare %zu state: %s -> %s\n",461 HR_DEBUG("\"%s\": changing hotspare %zu state: %s -> %s\n", 462 462 vol->devname, hs_idx, hr_get_ext_state_str(old), 463 463 hr_get_ext_state_str(s)); … … 469 469 assert(fibril_rwlock_is_write_locked(&vol->states_lock)); 470 470 471 HR_NOTE("\"%s\": changing volume state: %s -> %s\n", vol->devname,471 HR_NOTE("\"%s\": volume state changed: %s -> %s\n", vol->devname, 472 472 hr_get_vol_state_str(vol->state), hr_get_vol_state_str(new)); 473 473 vol->state = new; … … 482 482 483 483 service_id_t old = vol->extents[ext_idx].svc_id; 484 HR_ NOTE("\"%s\": changing extent no. %zu svc_id: (%" PRIun ") -> "484 HR_DEBUG("\"%s\": changing extent no. %zu svc_id: (%" PRIun ") -> " 485 485 "(%" PRIun ")\n", vol->devname, ext_idx, old, new); 486 486 vol->extents[ext_idx].svc_id = new; … … 495 495 496 496 service_id_t old = vol->hotspares[hs_idx].svc_id; 497 HR_ NOTE("\"%s\": changing hotspare no. %zu svc_id: (%" PRIun ") -> "497 HR_DEBUG("\"%s\": changing hotspare no. %zu svc_id: (%" PRIun ") -> " 498 498 "(%" PRIun ")\n", vol->devname, hs_idx, old, new); 499 499 vol->hotspares[hs_idx].svc_id = new;
Note:
See TracChangeset
for help on using the changeset viewer.