Changeset 5b5d25f in mainline


Ignore:
Timestamp:
2007-10-03T06:46:47Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
116d3f6f
Parents:
96858e8
Message:

Don't explicitly answer the IPC_M_DATA_SEND call in VFS_REGISTER.
It is done automatically in ipc_data_deliver().

File:
1 edited

Legend:

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

    r96858e8 r5b5d25f  
    234234         * Add fs_info to the list of registered FS's.
    235235         */
    236         dprintf("Adding FS into the registered list.\n");
     236        dprintf("Inserting FS into the list of registered file systems.\n");
    237237        list_append(&fs_info->fs_link, &fs_head);
    238238
    239         /*
    240          * ACK receiving a properly formatted, non-duplicit vfs_info.
    241          */
    242         ipc_answer_fast(callid, EOK, 0, 0);
    243        
    244239        /*
    245240         * Now we want the client to send us the IPC_M_CONNECT_TO_ME call so
     
    312307        dprintf("\"%s\" filesystem successfully registered, handle=%d.\n",
    313308            fs_info->vfs_info.name, fs_info->fs_handle);
    314 
    315309}
    316310
Note: See TracChangeset for help on using the changeset viewer.