Changeset 37a9c1e in mainline for uspace/srv/bd/hr/superblock.c


Ignore:
Timestamp:
2024-12-23T11:06:35Z (10 months ago)
Author:
Miroslav Cimerman <mc@…>
Children:
8137d36
Parents:
6784abc
Message:

hr: hr_volume_t: rename RLQ → layout

File:
1 edited

Legend:

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

    r6784abc r37a9c1e  
    157157        /* index filled separately for each extent */
    158158        metadata->level = host2uint32_t_le(vol->level);
    159         metadata->layout = host2uint32_t_le(vol->RLQ);
     159        metadata->layout = host2uint32_t_le(vol->layout);
    160160        metadata->strip_size = host2uint32_t_le(vol->strip_size);
    161161        metadata->nblocks = host2uint64_t_le(vol->nblocks);
     
    237237        /* TODO: handle version */
    238238        vol->level = uint32_t_le2host(metadata->level);
    239         vol->RLQ = (uint8_t)uint32_t_le2host(metadata->layout);
     239        vol->layout = (uint8_t)uint32_t_le2host(metadata->layout);
    240240        vol->strip_size = uint32_t_le2host(metadata->strip_size);
    241241        vol->nblocks = uint64_t_le2host(metadata->nblocks);
Note: See TracChangeset for help on using the changeset viewer.