Changeset c02d098 in mainline for uspace/srv/bd/vbd/disk.c


Ignore:
Timestamp:
2015-07-29T20:35:40Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
100b1d1
Parents:
c43db5f
Message:

Most of logical partition support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/bd/vbd/disk.c

    rc43db5f rc02d098  
    346346        info->anblocks = linfo.anblocks;
    347347        info->block_size = disk->block_size;
     348        log_msg(LOG_DEFAULT, LVL_NOTE, "vbds_disk_info - block_size=%zu",
     349            info->block_size);
    348350        return EOK;
    349351}
     
    438440        disk->label = label;
    439441        disk->block_size = block_size;
     442        log_msg(LOG_DEFAULT, LVL_NOTE, "vbds_label_create: block_size=%zu",
     443            block_size);
    440444        list_initialize(&disk->parts);
    441445
     
    519523        lpspec.block0 = pspec->block0;
    520524        lpspec.nblocks = pspec->nblocks;
     525        lpspec.hdr_blocks = pspec->hdr_blocks;
    521526        lpspec.pkind = pspec->pkind;
    522527        lpspec.ptype = pspec->ptype;
Note: See TracChangeset for help on using the changeset viewer.