Changeset 16d17ca in mainline for uspace/srv


Ignore:
Timestamp:
2009-05-22T19:18:39Z (16 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4ef6645
Parents:
3ecc02e
Message:

Add fs_handle argument to libfs_mount() needed to recognize homogenous mounts.

Location:
uspace/srv/fs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/fat/fat_ops.c

    r3ecc02e r16d17ca  
    889889void fat_mount(ipc_callid_t rid, ipc_call_t *request)
    890890{
    891         libfs_mount(&fat_libfs_ops, rid, request);
     891        libfs_mount(&fat_libfs_ops, fat_reg.fs_handle, rid, request);
    892892}
    893893
  • uspace/srv/fs/tmpfs/tmpfs_ops.c

    r3ecc02e r16d17ca  
    410410void tmpfs_mount(ipc_callid_t rid, ipc_call_t *request)
    411411{
    412         libfs_mount(&tmpfs_libfs_ops, rid, request);
     412        libfs_mount(&tmpfs_libfs_ops, tmpfs_reg.fs_handle, rid, request);
    413413}
    414414
Note: See TracChangeset for help on using the changeset viewer.