Changeset 6843a9c in mainline for uspace/srv/bd/part/guid_part/guid_part.c
- Timestamp:
- 2012-06-29T13:02:14Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 722912e
- Parents:
- ba72f2b (diff), 0bbd13e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/bd/part/guid_part/guid_part.c
rba72f2b r6843a9c 164 164 165 165 /* Register server with location service. */ 166 rc = loc_server_register(NAME, gpt_connection); 166 async_set_client_connection(gpt_connection); 167 rc = loc_server_register(NAME); 167 168 if (rc != EOK) { 168 169 printf(NAME ": Unable to register server.\n"); 169 170 return rc; 170 171 } 171 172 172 173 /* 173 174 * Create partition devices. … … 348 349 } 349 350 350 fs_va = as_get_mappable_page(comm_size);351 if (fs_va == NULL) {351 (void) async_share_out_finalize(callid, &fs_va); 352 if (fs_va == AS_MAP_FAILED) { 352 353 async_answer_0(callid, EHANGUP); 353 354 return; 354 355 } 355 356 (void) async_share_out_finalize(callid, fs_va);357 356 358 357 while (true) {
Note:
See TracChangeset
for help on using the changeset viewer.