Changeset 372df8f in mainline for uspace/lib/c/include/vol.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 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/include/vol.h

    r0bde8523 r372df8f  
    4747} vol_t;
    4848
    49 /** Disk information */
     49/** Partition information */
    5050typedef struct {
    51         /** Disk contents */
     51        /** Partition contents */
    5252        label_disk_cnt_t dcnt;
    53         /** Label type, if disk contents is label */
     53        /** Label type, if partition contents is label XXX */
    5454        label_type_t ltype;
    5555        /** Label flags */
    5656        label_flags_t flags;
    57 } vol_disk_info_t;
     57} vol_part_info_t;
    5858
    5959extern int vol_create(vol_t **);
    6060extern void vol_destroy(vol_t *);
    61 extern int vol_get_disks(vol_t *, service_id_t **, size_t *);
    62 extern int vol_disk_info(vol_t *, service_id_t, vol_disk_info_t *);
    63 extern int vol_label_create(vol_t *, service_id_t, label_type_t);
    64 extern int vol_disk_empty(vol_t *, service_id_t);
     61extern int vol_get_parts(vol_t *, service_id_t **, size_t *);
     62extern int vol_part_info(vol_t *, service_id_t, vol_part_info_t *);
     63extern int vol_part_empty(vol_t *, service_id_t);
    6564
    6665#endif
Note: See TracChangeset for help on using the changeset viewer.