Changeset 372df8f in mainline for uspace/srv/volsrv/types/part.h


Ignore:
Timestamp:
2015-10-09T07:00:23Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ecfc62
Parents:
0bde8523
Message:

Let VBD handle unlabeled devices too. Now volsrv only cares about partitions.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • uspace/srv/volsrv/types/part.h

    r0bde8523 r372df8f  
    3535 */
    3636
    37 #ifndef TYPES_DISK_H_
    38 #define TYPES_DISK_H_
     37#ifndef TYPES_PART_H_
     38#define TYPES_PART_H_
    3939
    4040#include <types/label.h>
    4141
    42 /** Disk */
     42/** Partition */
    4343typedef struct {
    44         /** Link to vol_disks */
    45         link_t ldisks;
     44        /** Link to vol_parts */
     45        link_t lparts;
    4646        /** Service ID */
    4747        service_id_t svc_id;
     
    5252        /** Label type */
    5353        label_type_t ltype;
    54 } vol_disk_t;
     54} vol_part_t;
    5555
    5656#endif
Note: See TracChangeset for help on using the changeset viewer.