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


Ignore:
Timestamp:
2015-11-02T20:54:19Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d8513177
Parents:
3feeab2 (diff), 5265eea4 (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.

File:
1 edited

Legend:

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

    r3feeab2 rff381a7  
    113113void vfs_register(ipc_callid_t rid, ipc_call_t *request)
    114114{
    115         dprintf("Processing VFS_REGISTER request received from %p.\n",
     115        dprintf("Processing VFS_REGISTER request received from %zx.\n",
    116116            request->in_phone_hash);
    117117       
     
    162162                fibril_mutex_unlock(&fs_list_lock);
    163163                free(fs_info);
    164                 async_answer_0(rid, EEXISTS);
     164                async_answer_0(rid, EEXIST);
    165165                return;
    166166        }
     
    196196        ipc_callid_t callid;
    197197        if (!async_share_in_receive(&callid, &size)) {
    198                 dprintf("Unexpected call, method = %d\n", IPC_GET_IMETHOD(call));
     198                dprintf("Unexpected call\n");
    199199                list_remove(&fs_info->fs_link);
    200200                fibril_mutex_unlock(&fs_list_lock);
     
    210210         */
    211211        if (size != PLB_SIZE) {
    212                 dprintf("Client suggests wrong size of PFB, size = %d\n", size);
     212                dprintf("Client suggests wrong size of PFB, size = %zu\n", size);
    213213                list_remove(&fs_info->fs_link);
    214214                fibril_mutex_unlock(&fs_list_lock);
Note: See TracChangeset for help on using the changeset viewer.