Changeset b7a4d06 in mainline for uspace/lib/label/include
- Timestamp:
- 2015-07-18T12:55:12Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c43db5f
- Parents:
- 70815a24
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/label/include/types/liblabel.h
r70815a24 rb7a4d06 68 68 /** Label type */ 69 69 label_type_t ltype; 70 /** Label flags */ 71 label_flags_t flags; 70 72 /** First block that can be allocated */ 71 73 aoff64_t ablock0; … … 77 79 /** Partition index */ 78 80 int index; 81 /** Partition kind */ 82 label_pkind_t pkind; 79 83 /** Address of first block */ 80 84 aoff64_t block0; … … 88 92 struct label *label; 89 93 /** Link to label_t.parts */ 90 link_t llabel; 94 link_t lparts; 95 /** Link to label_t.pri_parts */ 96 link_t lpri; 97 /** Link to label_t.log_parts */ 98 link_t llog; 91 99 /** Index */ 92 100 int index; … … 109 117 /** Number of blocks */ 110 118 aoff64_t nblocks; 119 /** Partition kind */ 120 label_pkind_t pkind; 111 121 /** Partition type */ 112 122 uint64_t ptype; … … 135 145 /** Partitions */ 136 146 list_t parts; /* of label_part_t */ 147 /** Primary partitions */ 148 list_t pri_parts; /* of label_part_t */ 149 /** Logical partitions */ 150 list_t log_parts; /* of label_part_t */ 137 151 /** First block that can be allocated */ 138 152 aoff64_t ablock0; … … 141 155 /** Number of primary partition entries */ 142 156 int pri_entries; 157 /** Index of extended partition or -1 if there is none */ 158 int ext_part_idx; 143 159 /** Block size */ 144 160 size_t block_size;
Note:
See TracChangeset
for help on using the changeset viewer.