Changeset 4f5dc18 in mainline for uspace/srv/vfs/vfs_register.c


Ignore:
Timestamp:
2009-11-03T21:36:54Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1647323
Parents:
bbddafb (diff), b1c21c2 (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.
Message:

Merge with mainline.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/vfs/vfs_register.c

    rbbddafb r4f5dc18  
    122122         * VFS info structure from the client FS.
    123123         */
    124         if (!ipc_data_write_receive(&callid, &size)) {
     124        if (!async_data_write_receive(&callid, &size)) {
    125125                /*
    126126                 * The client doesn't obey the same protocol as we do.
     
    163163        fibril_mutex_initialize(&fs_info->phone_lock);
    164164               
    165         rc = ipc_data_write_finalize(callid, &fs_info->vfs_info, size);
     165        rc = async_data_write_finalize(callid, &fs_info->vfs_info, size);
    166166        if (rc != EOK) {
    167167                dprintf("Failed to deliver the VFS info into our AS, rc=%d.\n",
     
    229229         */
    230230
    231         if (!ipc_share_in_receive(&callid, &size)) {
     231        if (!async_share_in_receive(&callid, &size)) {
    232232                dprintf("Unexpected call, method = %d\n", IPC_GET_METHOD(call));
    233233                list_remove(&fs_info->fs_link);
     
    257257         * Commit to read-only sharing the PLB with the client.
    258258         */
    259         (void) ipc_share_in_finalize(callid, plb,
     259        (void) async_share_in_finalize(callid, plb,
    260260            AS_AREA_READ | AS_AREA_CACHEABLE);
    261261
Note: See TracChangeset for help on using the changeset viewer.