Changeset 991f645 in mainline for uspace/srv/bd/part
- Timestamp:
- 2010-11-18T17:39:28Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0b5a4131
- Parents:
- 51a268f
- Location:
- uspace/srv/bd/part
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/part/guid_part/guid_part.c
r51a268f r991f645 83 83 aoff64_t length; 84 84 /** Device representing the partition (outbound device) */ 85 dev _handle_t dev;85 devmap_handle_t dev; 86 86 /** Points to next partition structure. */ 87 87 struct part *next; … … 91 91 92 92 /** Partitioned device (inbound device) */ 93 static dev _handle_t indev_handle;93 static devmap_handle_t indev_handle; 94 94 95 95 /** List of partitions. This structure is an empty head. */ … … 130 130 int i; 131 131 char *name; 132 dev _handle_t dev;132 devmap_handle_t dev; 133 133 uint64_t size_mb; 134 134 part_t *part; … … 316 316 ipc_call_t call; 317 317 ipcarg_t method; 318 dev _handle_t dh;318 devmap_handle_t dh; 319 319 int flags; 320 320 int retval; -
uspace/srv/bd/part/mbr_part/mbr_part.c
r51a268f r991f645 101 101 aoff64_t length; 102 102 /** Device representing the partition (outbound device) */ 103 dev _handle_t dev;103 devmap_handle_t dev; 104 104 /** Points to next partition structure. */ 105 105 struct part *next; … … 142 142 143 143 /** Partitioned device (inbound device) */ 144 static dev _handle_t indev_handle;144 static devmap_handle_t indev_handle; 145 145 146 146 /** List of partitions. This structure is an empty head. */ … … 181 181 int i; 182 182 char *name; 183 dev _handle_t dev;183 devmap_handle_t dev; 184 184 uint64_t size_mb; 185 185 part_t *part; … … 394 394 ipc_call_t call; 395 395 ipcarg_t method; 396 dev _handle_t dh;396 devmap_handle_t dh; 397 397 int flags; 398 398 int retval;
Note:
See TracChangeset
for help on using the changeset viewer.