Ignore:
Timestamp:
2010-01-07T19:06:59Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • contrib/arch/uspace/srv/fs/fat/fat.bp

    r743e17b r985e26d2  
    1 !ns.IPC_M_CONNECT_ME_TO /* vfs */ ;
    2 [../../../lib/libfs/fs_register] ;
     1!ns.ipc_m_connect_me_to /* vfs */ ;
     2[/uspace/lib/libfs/fnc.fs_register] ;
    33(
    4         ?fs.IPC_M_CONNECT_ME_TO ;
     4        ?ipc_m_connect_me_to ;
    55        (
    6                 ?fs.VFS_OUT_MOUNTED {
    7                         ?fs.IPC_M_DATA_WRITE /* mount options */
     6                ?mounted {
     7                        ?ipc_m_data_write /* mount options */ ;
     8                        tentative {
     9                                [/uspace/lib/libblock/fnc.block_init%rd]
     10                        }
    811                } +
    912               
    10                 ?fs.VFS_OUT_MOUNT {
    11                         [../../../lib/libfs/libfs_mount]
     13                ?mount {
     14                        [/uspace/lib/libfs/fnc.libfs_mount]
    1215                } +
    1316               
    14                 ?fs.VFS_OUT_LOOKUP {
    15                         [../../../lib/libfs/libfs_lookup]
     17                ?lookup {
     18                        [/uspace/lib/libfs/fnc.libfs_lookup]
    1619                } +
    1720               
    18                 ?fs.VFS_OUT_READ {
    19                         ?fs.IPC_M_DATA_READ /* payload */
     21                ?open_node {
     22                        [/uspace/lib/libfs/fnc.libfs_open_node]
    2023                } +
    2124               
    22                 ?fs.VFS_OUT_WRITE {
    23                         ?fs.IPC_M_DATA_WRITE /* payload */
     25                ?read {
     26                        tentative {
     27                                ?ipc_m_data_read /* payload */
     28                        }
    2429                } +
    2530               
    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]
     31                ?write {
     32                        tentative {
     33                                ?ipc_m_data_write /* payload */
     34                        }
    3435                } +
    3536               
    36                 ?fs.VFS_OUT_STAT {
    37                         [../../../lib/libfs/libfs_stat]
     37                ?stat {
     38                        [/uspace/lib/libfs/fnc.libfs_stat]
    3839                } +
    3940               
    40                 ?fs.VFS_OUT_SYNC
    41                
     41                ?truncate +
     42                ?close +
     43                ?destroy +
     44                ?sync
    4245        )* ;
    43         ?fs.IPC_M_PHONE_HUNGUP
     46        ?ipc_m_phone_hungup
    4447)* ;
    45 !vfs.IPC_M_PHONE_HUNGUP
     48!vfs.ipc_m_phone_hungup
Note: See TracChangeset for help on using the changeset viewer.