Changeset 985e26d2 in mainline for contrib/arch/uspace/srv/fs/tmpfs/tmpfs.bp
- Timestamp:
- 2010-01-07T19:06:59Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8190e63
- Parents:
- 743e17b (diff), eca2435 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/uspace/srv/fs/tmpfs/tmpfs.bp
r743e17b r985e26d2 1 !ns.IPC_M_CONNECT_ME_TO /* vfs */ ;2 [../../../lib/libfs/fs_register] ;3 1 ( 4 ? fs.IPC_M_CONNECT_ME_TO;2 ?ipc_m_connect_me_to ; 5 3 ( 6 ?fs.VFS_OUT_MOUNTED { 7 ?fs.IPC_M_DATA_WRITE /* mount options */ 4 ?mounted { 5 ?ipc_m_data_write /* mount options */ ; 6 tentative { 7 [fnc.tmpfs_restore] 8 } 8 9 } + 9 10 10 ? fs.VFS_OUT_MOUNT{11 [ ../../../lib/libfs/libfs_mount]11 ?mount { 12 [/uspace/lib/libfs/fnc.libfs_mount] 12 13 } + 13 14 14 ? fs.VFS_OUT_LOOKUP{15 [ ../../../lib/libfs/libfs_lookup]15 ?lookup { 16 [/uspace/lib/libfs/fnc.libfs_lookup] 16 17 } + 17 18 18 ? fs.VFS_OUT_READ{19 ?fs.IPC_M_DATA_READ /* payload */19 ?open_node { 20 [/uspace/lib/libfs/fnc.libfs_open_node] 20 21 } + 21 22 22 ?fs.VFS_OUT_WRITE { 23 ?fs.IPC_M_DATA_WRITE /* payload */ 23 ?read { 24 tentative { 25 ?ipc_m_data_read /* payload */ 26 } 24 27 } + 25 28 26 ?fs.VFS_OUT_TRUNCATE + 27 28 ?fs.VFS_OUT_CLOSE + 29 30 ?fs.VFS_OUT_DESTROY + 31 32 ?fs.VFS_OUT_OPEN_NODE { 33 [../../../lib/libfs/libfs_open_node] 29 ?write { 30 tentative { 31 ?ipc_m_data_write /* payload */ 32 } 34 33 } + 35 34 36 ? fs.VFS_OUT_STAT{37 [ ../../../lib/libfs/libfs_stat]35 ?stat { 36 [/uspace/lib/libfs/fnc.libfs_stat] 38 37 } + 39 38 40 ?fs.VFS_OUT_SYNC 41 39 ?truncate + 40 ?close + 41 ?destroy + 42 ?sync 42 43 )* ; 43 ? fs.IPC_M_PHONE_HUNGUP44 ?ipc_m_phone_hungup 44 45 )* ; 45 !vfs. IPC_M_PHONE_HUNGUP46 !vfs.ipc_m_phone_hungup
Note:
See TracChangeset
for help on using the changeset viewer.