Changeset 43861 in vbox for trunk/include
- Timestamp:
- Nov 13, 2012 10:35:55 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vd.h
r42859 r43861 152 152 153 153 /** 154 * Auxiliary data structure for difference between GPT and MBR 155 * disks. 156 */ 157 enum PARTITIONING_TYPE 154 * Auxiliary data structure for difference between GPT and MBR 155 * disks. 156 */ 157 enum PARTITIONING_TYPE 158 158 { 159 159 MBR, … … 179 179 /** Pointer to the partition descriptor array. */ 180 180 PVBOXHDDRAWPARTDESC pPartDescs; 181 /**partitioning type of the disk */ 181 /**partitioning type of the disk */ 182 182 PARTITIONING_TYPE uPartitioningType; 183 183 … … 231 231 */ 232 232 #define VD_OPEN_FLAGS_INFORM_ABOUT_ZERO_BLOCKS RT_BIT(9) 233 /** 234 * Don't do unnecessary consistency checks when opening the image. 235 * Only valid when the image is opened in readonly because inconsistencies 236 * can lead to corrupted images in read-write mode. 237 */ 238 #define VD_OPEN_FLAGS_SKIP_CONSISTENCY_CHECKS RT_BIT(10) 233 239 /** Mask of valid flags. */ 234 #define VD_OPEN_FLAGS_MASK (VD_OPEN_FLAGS_NORMAL | VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_HONOR_ZEROES | VD_OPEN_FLAGS_HONOR_SAME | VD_OPEN_FLAGS_INFO | VD_OPEN_FLAGS_ASYNC_IO | VD_OPEN_FLAGS_SHAREABLE | VD_OPEN_FLAGS_SEQUENTIAL | VD_OPEN_FLAGS_DISCARD | VD_OPEN_FLAGS_IGNORE_FLUSH | VD_OPEN_FLAGS_INFORM_ABOUT_ZERO_BLOCKS )240 #define VD_OPEN_FLAGS_MASK (VD_OPEN_FLAGS_NORMAL | VD_OPEN_FLAGS_READONLY | VD_OPEN_FLAGS_HONOR_ZEROES | VD_OPEN_FLAGS_HONOR_SAME | VD_OPEN_FLAGS_INFO | VD_OPEN_FLAGS_ASYNC_IO | VD_OPEN_FLAGS_SHAREABLE | VD_OPEN_FLAGS_SEQUENTIAL | VD_OPEN_FLAGS_DISCARD | VD_OPEN_FLAGS_IGNORE_FLUSH | VD_OPEN_FLAGS_INFORM_ABOUT_ZERO_BLOCKS | VD_OPEN_FLAGS_SKIP_CONSISTENCY_CHECKS) 235 241 /** @}*/ 236 242
Note:
See TracChangeset
for help on using the changeset viewer.