Changeset cf2af94 in mainline for uspace/srv/vfs/vfs_lookup.c


Ignore:
Timestamp:
2011-02-09T11:46:47Z (14 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
cb15135a
Parents:
a49c4002 (diff), 0b37882 (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 mainline changes

Local modifications:

  • change pipefs and ext2 to build again (use async_* calls instead of ipc_*)
File:
1 edited

Legend:

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

    ra49c4002 rcf2af94  
    3737
    3838#include "vfs.h"
    39 #include <ipc/ipc.h>
    4039#include <macros.h>
    4140#include <async.h>
     
    161160        ipc_call_t answer;
    162161        int phone = vfs_grab_phone(root->fs_handle);
    163         aid_t req = async_send_5(phone, VFS_OUT_LOOKUP, (ipcarg_t) first,
    164             (ipcarg_t) (first + len - 1) % PLB_SIZE,
    165             (ipcarg_t) root->devmap_handle, (ipcarg_t) lflag, (ipcarg_t) index,
     162        aid_t req = async_send_5(phone, VFS_OUT_LOOKUP, (sysarg_t) first,
     163            (sysarg_t) (first + len - 1) % PLB_SIZE,
     164            (sysarg_t) root->devmap_handle, (sysarg_t) lflag, (sysarg_t) index,
    166165            &answer);
    167166       
    168         ipcarg_t rc;
     167        sysarg_t rc;
    169168        async_wait_for(req, &rc);
    170169        vfs_release_phone(root->fs_handle, phone);
     
    179178        fibril_mutex_unlock(&plb_mutex);
    180179       
    181         if (((int) rc < EOK) || (!result))
     180        if ((int) rc < EOK)
    182181                return (int) rc;
     182
     183        if (!result)
     184                return EOK;
    183185       
    184186        result->triplet.fs_handle = (fs_handle_t) rc;
     
    210212        ipc_call_t answer;
    211213        aid_t req = async_send_2(phone, VFS_OUT_OPEN_NODE,
    212             (ipcarg_t) result->triplet.devmap_handle,
    213             (ipcarg_t) result->triplet.index, &answer);
    214        
    215         ipcarg_t rc;
     214            (sysarg_t) result->triplet.devmap_handle,
     215            (sysarg_t) result->triplet.index, &answer);
     216       
     217        sysarg_t rc;
    216218        async_wait_for(req, &rc);
    217219        vfs_release_phone(result->triplet.fs_handle, phone);
Note: See TracChangeset for help on using the changeset viewer.