Changeset 7a3529a8 in mainline
- Timestamp:
- 2024-12-28T20:31:24Z (5 months ago)
- Children:
- 685c0ab
- Parents:
- 723f1d9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/hr/util.c
r723f1d9 r7a3529a8 213 213 void hr_update_ext_status(hr_volume_t *vol, size_t extent, hr_ext_status_t s) 214 214 { 215 assert(extent < vol->extent_no); 216 215 217 hr_ext_status_t old = vol->extents[extent].status; 216 218 HR_WARN("\"%s\": changing extent %lu state: %s -> %s\n", … … 222 224 void hr_update_hotspare_status(hr_volume_t *vol, size_t hs, hr_ext_status_t s) 223 225 { 226 assert(hs < vol->hotspare_no); 227 224 228 hr_ext_status_t old = vol->hotspares[hs].status; 225 229 HR_WARN("\"%s\": changing hotspare %lu state: %s -> %s\n",
Note:
See TracChangeset
for help on using the changeset viewer.