Changes in uspace/lib/fs/libfs.c [faba839:fbcdeb8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/fs/libfs.c
rfaba839 rfbcdeb8 320 320 if (rc != EOK) { 321 321 async_exchange_end(exch); 322 async_ forget(req);322 async_wait_for(req, NULL); 323 323 return rc; 324 324 } … … 339 339 */ 340 340 rc = async_share_in_start_0_0(exch, PLB_SIZE, (void *) ®.plb_ro); 341 if (reg.plb_ro == AS_MAP_FAILED) {341 if (reg.plb_ro == (void *) -1) { 342 342 async_exchange_end(exch); 343 async_ forget(req);343 async_wait_for(req, NULL); 344 344 return ENOMEM; 345 345 } … … 348 348 349 349 if (rc) { 350 async_ forget(req);350 async_wait_for(req, NULL); 351 351 return rc; 352 352 } … … 404 404 405 405 async_exch_t *exch = async_exchange_begin(mountee_sess); 406 async_sess_t *sess = async_c lone_establish(EXCHANGE_PARALLEL, exch);406 async_sess_t *sess = async_connect_me(EXCHANGE_PARALLEL, exch); 407 407 408 408 if (!sess) {
Note:
See TracChangeset
for help on using the changeset viewer.