Changeset 09e01d23 in mainline


Ignore:
Timestamp:
2025-07-14T21:38:07Z (8 days ago)
Author:
Miroslav Cimerman <mc@…>
Children:
c1c1c41
Parents:
a0abd46
Message:

hr: type fixes for 32-bit archs

Location:
uspace/srv/bd/hr
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/bd/hr/raid1.c

    ra0abd46 r09e01d23  
    669669        hr_range_lock_t *rl = NULL;
    670670
    671         HR_NOTE("\"%s\": REBUILD started on extent no. %zu at block %lu.\n",
    672             vol->devname, rebuild_idx, ba);
     671        HR_NOTE("\"%s\": REBUILD started on extent no. %zu at "
     672            "block %" PRIu64 ".\n", vol->devname, rebuild_idx, ba);
    673673
    674674        uint64_t written = 0;
  • uspace/srv/bd/hr/raid5.c

    ra0abd46 r09e01d23  
    6060    uint64_t);
    6161static size_t hr_raid5_data_extent(hr_level_t, hr_layout_t, size_t, uint64_t,
    62     uint64_t);
     62    size_t);
    6363static errno_t hr_raid5_rebuild(void *);
    6464
     
    745745            false);
    746746
    747         HR_NOTE("\"%s\": REBUILD started on extent no. %zu at block %lu.\n",
     747        HR_NOTE("\"%s\": REBUILD started on extent no. %zu at "
     748            "block %" PRIu64 ".\n",
    748749            vol->devname, rebuild_idx, ba);
    749750
Note: See TracChangeset for help on using the changeset viewer.