Changeset fbcdeb8 in mainline for uspace/lib/fs/libfs.c
- Timestamp:
- 2011-12-19T17:30:39Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 58f6229
- Parents:
- 24cf31f1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/fs/libfs.c
r24cf31f1 rfbcdeb8 336 336 337 337 /* 338 * Allocate piece of address space for PLB.339 */ 340 r eg.plb_ro = as_get_mappable_page(PLB_SIZE);341 if ( !reg.plb_ro) {338 * Request sharing the Path Lookup Buffer with VFS. 339 */ 340 rc = async_share_in_start_0_0(exch, PLB_SIZE, (void *) ®.plb_ro); 341 if (reg.plb_ro == (void *) -1) { 342 342 async_exchange_end(exch); 343 343 async_wait_for(req, NULL); 344 344 return ENOMEM; 345 345 } 346 347 /*348 * Request sharing the Path Lookup Buffer with VFS.349 */350 rc = async_share_in_start_0_0(exch, reg.plb_ro, PLB_SIZE);351 346 352 347 async_exchange_end(exch);
Note:
See TracChangeset
for help on using the changeset viewer.