Changeset c08c355 in mainline for uspace/srv


Ignore:
Timestamp:
2009-04-18T13:37:59Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c259b9b
Parents:
58d7280
Message:

Make IPC_M_PING part of the VFS_MOUNT protocol again.

File:
1 edited

Legend:

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

    r58d7280 rc08c355  
    321321        }
    322322        fs_name[size] = '\0';
    323        
     323
     324        /*
     325         * Wait for IPC_M_PING so that we can return an error if we don't know
     326         * fs_name.
     327         */
     328        ipc_call_t data;
     329        callid = async_get_call(&data);
     330        if (IPC_GET_METHOD(data) != IPC_M_PING) {
     331                ipc_answer_0(callid, ENOTSUP);
     332                ipc_answer_0(rid, ENOTSUP);
     333                free(mp);
     334                free(fs_name);
     335                return;
     336        }
     337
    324338        /*
    325339         * Check if we know a file system with the same name as is in fs_name.
     
    329343        if (!fs_handle) {
    330344                if (flags & IPC_FLAG_BLOCKING) {
     345                        pending_req_t *pr;
     346
    331347                        /* Blocking mount, add to pending list */
    332                         pending_req_t *pr = (pending_req_t *) malloc(sizeof(pending_req_t));
     348                        pr = (pending_req_t *) malloc(sizeof(pending_req_t));
    333349                        if (!pr) {
    334350                                ipc_answer_0(callid, ENOMEM);
Note: See TracChangeset for help on using the changeset viewer.