Changeset 4b6635a7 in mainline for uspace/lib/c


Ignore:
Timestamp:
2015-10-12T15:42:23Z (10 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
edebb4a1
Parents:
6a0db524
Message:

Volsrv empty partition detection.

Location:
uspace/lib/c/include
Files:
1 added
2 edited

Legend:

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

    r6a0db524 r4b6635a7  
    8787        /** Number of blocks */
    8888        aoff64_t nblocks;
     89        /** Service ID */
     90        service_id_t svc_id;
    8991} vbd_part_info_t;
    9092
  • uspace/lib/c/include/vol.h

    r6a0db524 r4b6635a7  
    4040#include <stdint.h>
    4141#include <types/label.h>
     42#include <types/vol.h>
    4243
    4344/** Volume service */
     
    4647        async_sess_t *sess;
    4748} vol_t;
    48 
    49 typedef enum {
    50         /** Partition is empty */
    51         vpc_empty,
    52         /** Partition contains a recognized filesystem */
    53         vpc_fs,
    54         /** Partition contains unrecognized data */
    55         vpc_unknown
    56 } vol_part_cnt_t;
    57 
    58 /** File system type */
    59 typedef enum {
    60         fs_exfat,
    61         fs_fat,
    62         fs_minix,
    63         fs_ext4
    64 } vol_fstype_t;
    6549
    6650/** Partition information */
Note: See TracChangeset for help on using the changeset viewer.