Changeset 26f2af0 in mainline for uspace/srv/vfs/vfs.c


Ignore:
Timestamp:
2007-09-18T19:58:19Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
47a776f9
Parents:
c3b25510
Message:

VFS work.
Implement VFS_REGISTER part of the protocol in the FAT file system.

IPC work.
Rename ipc_data_send_accept() to ipc_data_receive() and ipc_data_send_answer()
to ipc_data_deliver(). Introduce ipc_data_send().

File:
1 edited

Legend:

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

    rc3b25510 r26f2af0  
    124124         * VFS info structure from the client FS.
    125125         */
    126         if (!ipc_data_send_accept(&callid, &call, NULL, &size)) {
     126        if (!ipc_data_receive(&callid, &call, NULL, &size)) {
    127127                /*
    128128                 * The client doesn't obey the same protocol as we do.
     
    159159        link_initialize(&fs_info->fs_link);
    160160               
    161         rc = ipc_data_send_answer(callid, &call, &fs_info->vfs_info, size);
     161        rc = ipc_data_deliver(callid, &call, &fs_info->vfs_info, size);
    162162        if (!rc) {
    163163                free(fs_info);
Note: See TracChangeset for help on using the changeset viewer.