Changeset 4636a60 in mainline for uspace/lib/c/generic/vfs


Ignore:
Timestamp:
2013-07-30T22:54:10Z (12 years ago)
Author:
Jiri Zarevucky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
06256b0
Parents:
5bcd5b7
Message:

Handle mounts at the server side, instead of in the endpoints.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/vfs/vfs.c

    r5bcd5b7 r4636a60  
    260260        }
    261261       
    262         /* Ask VFS whether it likes fs_name. */
    263         rc = async_req_0_0(exch, VFS_IN_PING);
    264         if (rc != EOK) {
    265                 vfs_exchange_end(exch);
    266                 free(mpa);
    267                 async_wait_for(req, &rc_orig);
    268                
    269                 if (null_id != -1)
    270                         loc_null_destroy(null_id);
    271                
    272                 if (rc_orig == EOK)
    273                         return (int) rc;
    274                 else
    275                         return (int) rc_orig;
    276         }
    277        
    278262        vfs_exchange_end(exch);
    279263        free(mpa);
Note: See TracChangeset for help on using the changeset viewer.