Changeset eb522e8 in mainline for uspace/srv/vfs/vfs_register.c


Ignore:
Timestamp:
2011-06-01T08:43:42Z (14 years ago)
Author:
Lubos Slovak <lubos.slovak@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8d6c1f1
Parents:
9e2e715 (diff), e51a514 (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:

Huuuuuge merge from development - all the work actually :)

File:
1 edited

Legend:

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

    r9e2e715 reb522e8  
    3636 */
    3737
    38 #include <ipc/ipc.h>
    3938#include <ipc/services.h>
    4039#include <async.h>
    41 #include <async_rel.h>
    4240#include <fibril.h>
    4341#include <fibril_synch.h>
     
    111109void vfs_register(ipc_callid_t rid, ipc_call_t *request)
    112110{
     111        int phone;
     112       
    113113        dprintf("Processing VFS_REGISTER request received from %p.\n",
    114114            request->in_phone_hash);
     
    121121                dprintf("Failed to deliver the VFS info into our AS, rc=%d.\n",
    122122                    rc);
    123                 ipc_answer_0(rid, rc);
     123                async_answer_0(rid, rc);
    124124                return;
    125125        }
     
    131131        if (!fs_info) {
    132132                dprintf("Could not allocate memory for FS info.\n");
    133                 ipc_answer_0(rid, ENOMEM);
     133                async_answer_0(rid, ENOMEM);
    134134                return;
    135135        }
    136136       
    137137        link_initialize(&fs_info->fs_link);
    138         fibril_mutex_initialize(&fs_info->phone_lock);
    139138        fs_info->vfs_info = *vfs_info;
    140139        free(vfs_info);
     
    144143        if (!vfs_info_sane(&fs_info->vfs_info)) {
    145144                free(fs_info);
    146                 ipc_answer_0(rid, EINVAL);
     145                async_answer_0(rid, EINVAL);
    147146                return;
    148147        }
     
    160159                fibril_mutex_unlock(&fs_head_lock);
    161160                free(fs_info);
    162                 ipc_answer_0(rid, EEXISTS);
     161                async_answer_0(rid, EEXISTS);
    163162                return;
    164163        }
     
    177176        ipc_call_t call;
    178177        ipc_callid_t callid = async_get_call(&call);
    179         if (IPC_GET_METHOD(call) != IPC_M_CONNECT_TO_ME) {
    180                 dprintf("Unexpected call, method = %d\n", IPC_GET_METHOD(call));
     178        if (IPC_GET_IMETHOD(call) != IPC_M_CONNECT_TO_ME) {
     179                dprintf("Unexpected call, method = %d\n", IPC_GET_IMETHOD(call));
    181180                list_remove(&fs_info->fs_link);
    182181                fibril_mutex_unlock(&fs_head_lock);
    183182                free(fs_info);
    184                 ipc_answer_0(callid, EINVAL);
    185                 ipc_answer_0(rid, EINVAL);
    186                 return;
    187         }
    188         fs_info->phone = IPC_GET_ARG5(call);
    189         ipc_answer_0(callid, EOK);
     183                async_answer_0(callid, EINVAL);
     184                async_answer_0(rid, EINVAL);
     185                return;
     186        }
     187       
     188        phone = IPC_GET_ARG5(call);
     189        async_session_create(&fs_info->session, phone, 0);
     190        async_answer_0(callid, EOK);
    190191       
    191192        dprintf("Callback connection to FS created.\n");
     
    197198        size_t size;
    198199        if (!async_share_in_receive(&callid, &size)) {
    199                 dprintf("Unexpected call, method = %d\n", IPC_GET_METHOD(call));
     200                dprintf("Unexpected call, method = %d\n", IPC_GET_IMETHOD(call));
    200201                list_remove(&fs_info->fs_link);
    201202                fibril_mutex_unlock(&fs_head_lock);
    202                 ipc_hangup(fs_info->phone);
    203                 free(fs_info);
    204                 ipc_answer_0(callid, EINVAL);
    205                 ipc_answer_0(rid, EINVAL);
     203                async_session_destroy(&fs_info->session);
     204                async_hangup(phone);
     205                free(fs_info);
     206                async_answer_0(callid, EINVAL);
     207                async_answer_0(rid, EINVAL);
    206208                return;
    207209        }
     
    214216                list_remove(&fs_info->fs_link);
    215217                fibril_mutex_unlock(&fs_head_lock);
    216                 ipc_hangup(fs_info->phone);
    217                 free(fs_info);
    218                 ipc_answer_0(callid, EINVAL);
    219                 ipc_answer_0(rid, EINVAL);
     218                async_session_destroy(&fs_info->session);
     219                async_hangup(phone);
     220                free(fs_info);
     221                async_answer_0(callid, EINVAL);
     222                async_answer_0(rid, EINVAL);
    220223                return;
    221224        }
     
    235238         */
    236239        fs_info->fs_handle = (fs_handle_t) atomic_postinc(&fs_handle_next);
    237         ipc_answer_1(rid, EOK, (ipcarg_t) fs_info->fs_handle);
     240        async_answer_1(rid, EOK, (sysarg_t) fs_info->fs_handle);
    238241       
    239242        fibril_condvar_broadcast(&fs_head_cv);
     
    269272                if (fs->fs_handle == handle) {
    270273                        fibril_mutex_unlock(&fs_head_lock);
    271                         fibril_mutex_lock(&fs->phone_lock);
    272                         phone = async_relation_create(fs->phone);
    273                         fibril_mutex_unlock(&fs->phone_lock);
     274                        phone = async_exchange_begin(&fs->session);
    274275
    275276                        assert(phone > 0);
     
    295296                if (fs->fs_handle == handle) {
    296297                        fibril_mutex_unlock(&fs_head_lock);
    297                         fibril_mutex_lock(&fs->phone_lock);
    298                         async_relation_destroy(fs->phone, phone);
    299                         fibril_mutex_unlock(&fs->phone_lock);
     298                        async_exchange_end(&fs->session, phone);
    300299                        return;
    301300                }
     
    333332}
    334333
     334/** Find the VFS info structure.
     335 *
     336 * @param handle        FS handle for which the VFS info structure is sought.
     337 * @return              VFS info structure on success or NULL otherwise.
     338 */
     339vfs_info_t *fs_handle_to_info(fs_handle_t handle)
     340{
     341        vfs_info_t *info = NULL;
     342        link_t *cur;
     343
     344        fibril_mutex_lock(&fs_head_lock);
     345        for (cur = fs_head.next; cur != &fs_head; cur = cur->next) {
     346                fs_info_t *fs = list_get_instance(cur, fs_info_t, fs_link);
     347                if (fs->fs_handle == handle) {
     348                        info = &fs->vfs_info;
     349                        break;
     350                }
     351        }
     352        fibril_mutex_unlock(&fs_head_lock);
     353
     354        return info;
     355}
     356
    335357/**
    336358 * @}
Note: See TracChangeset for help on using the changeset viewer.