Changeset 1993f9a in mainline for contrib/arch/uspace/srv/fs
- Timestamp:
- 2009-09-15T13:45:23Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ea5f46d
- Parents:
- ec8bab59
- Location:
- contrib/arch/uspace/srv/fs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/uspace/srv/fs/devfs/devfs.bp
rec8bab59 r1993f9a 1 [ ../../../lib/libc/devmap_get_phone] ;1 [/uspace/lib/libc/fnc.devmap_get_phone] ; 2 2 !ns.IPC_M_CONNECT_ME_TO /* vfs */ ; 3 [ ../../../lib/libfs/fs_register] ;3 [/uspace/lib/libfs/fnc.fs_register] ; 4 4 ( 5 5 ?fs.IPC_M_CONNECT_ME_TO ; … … 13 13 ?fs.VFS_OUT_LOOKUP { 14 14 ( 15 [ ../../../lib/libc/devmap_device_get_handle] ;16 [ ../../../lib/libc/devmap_device_connect]15 [/uspace/lib/libc/fnc.devmap_device_get_handle] ; 16 [/uspace/lib/libc/fnc.devmap_device_connect] 17 17 ) + 18 18 NULL … … 26 26 ) + 27 27 ( 28 [ ../../../lib/libc/devmap_device_get_count] ;29 [ ../../../lib/libc/devmap_device_get_devices]28 [/uspace/lib/libc/fnc.devmap_device_get_count] ; 29 [/uspace/lib/libc/fnc.devmap_device_get_devices] 30 30 ) 31 31 } … … 51 51 52 52 ?fs.VFS_OUT_OPEN_NODE { 53 [ ../../../lib/libc/devmap_device_connect] +53 [/uspace/lib/libc/fnc.devmap_device_connect] + 54 54 NULL 55 55 } + -
contrib/arch/uspace/srv/fs/fat/fat.bp
rec8bab59 r1993f9a 1 1 !ns.IPC_M_CONNECT_ME_TO /* vfs */ ; 2 [ ../../../lib/libfs/fs_register] ;2 [/uspace/lib/libfs/fnc.fs_register] ; 3 3 ( 4 4 ?fs.IPC_M_CONNECT_ME_TO ; … … 9 9 10 10 ?fs.VFS_OUT_MOUNT { 11 [ ../../../lib/libfs/libfs_mount]11 [/uspace/lib/libfs/fnc.libfs_mount] 12 12 } + 13 13 14 14 ?fs.VFS_OUT_LOOKUP { 15 [ ../../../lib/libfs/libfs_lookup]15 [/uspace/lib/libfs/fnc.libfs_lookup] 16 16 } + 17 17 … … 31 31 32 32 ?fs.VFS_OUT_OPEN_NODE { 33 [ ../../../lib/libfs/libfs_open_node]33 [/uspace/lib/libfs/fnc.libfs_open_node] 34 34 } + 35 35 36 36 ?fs.VFS_OUT_STAT { 37 [ ../../../lib/libfs/libfs_stat]37 [/uspace/lib/libfs/fnc.libfs_stat] 38 38 } + 39 39 -
contrib/arch/uspace/srv/fs/tmpfs/tmpfs.bp
rec8bab59 r1993f9a 1 1 !ns.IPC_M_CONNECT_ME_TO /* vfs */ ; 2 [ ../../../lib/libfs/fs_register] ;2 [/uspace/lib/libfs/fnc.fs_register] ; 3 3 ( 4 4 ?fs.IPC_M_CONNECT_ME_TO ; … … 9 9 10 10 ?fs.VFS_OUT_MOUNT { 11 [ ../../../lib/libfs/libfs_mount]11 [/uspace/lib/libfs/fnc.libfs_mount] 12 12 } + 13 13 14 14 ?fs.VFS_OUT_LOOKUP { 15 [ ../../../lib/libfs/libfs_lookup]15 [/uspace/lib/libfs/fnc.libfs_lookup] 16 16 } + 17 17 … … 31 31 32 32 ?fs.VFS_OUT_OPEN_NODE { 33 [ ../../../lib/libfs/libfs_open_node]33 [/uspace/lib/libfs/fnc.libfs_open_node] 34 34 } + 35 35 36 36 ?fs.VFS_OUT_STAT { 37 [ ../../../lib/libfs/libfs_stat]37 [/uspace/lib/libfs/fnc.libfs_stat] 38 38 } + 39 39
Note:
See TracChangeset
for help on using the changeset viewer.