Changeset 64b67c3 in mainline for uspace/srv/fs/tmpfs/tmpfs_ops.c


Ignore:
Timestamp:
2008-05-18T21:58:54Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
92f9baca
Parents:
ce7311fc
Message:

Make VFS_MOUNT call even when mounting the root file system.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/tmpfs/tmpfs_ops.c

    rce7311fc r64b67c3  
    394394}
    395395
     396void tmpfs_mount(ipc_callid_t rid, ipc_call_t *request)
     397{
     398        dev_handle_t mr_dev_handle = (dev_handle_t)IPC_GET_ARG1(*request);
     399        fs_index_t mr_index = (fs_index_t)IPC_GET_ARG2(*request);
     400        fs_handle_t mp_fs_handle = (fs_handle_t)IPC_GET_ARG3(*request);
     401        dev_handle_t mp_dev_handle = (dev_handle_t)IPC_GET_ARG4(*request);
     402        fs_index_t mp_index = (fs_index_t)IPC_GET_ARG5(*request);
     403        if ((mr_index == root->index) &&
     404            (mp_fs_handle == tmpfs_reg.fs_handle) &&
     405            (mp_index == mr_index))
     406                ipc_answer_0(rid, EOK);
     407        else
     408                ipc_answer_0(rid, ENOTSUP);
     409}
     410
    396411void tmpfs_lookup(ipc_callid_t rid, ipc_call_t *request)
    397412{
Note: See TracChangeset for help on using the changeset viewer.