Changes in contrib/arch/uspace/srv/vfs/vfs.bp [b988db0:0e8ad0b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/uspace/srv/vfs/vfs.bp
rb988db0 r0e8ad0b 22 22 /* root fs */ 23 23 alternative (fs; tmpfs; fat; devfs) { 24 !fs.mounted { 25 !fs.ipc_m_data_write /* mount options */ 26 } 24 !fs.mounted ; 25 !fs.ipc_m_data_write /* mount options */ 27 26 } 28 27 ) + … … 94 93 alternative (fs; tmpfs; fat; devfs) { 95 94 [fnc.vfs_grab_phone] ; 96 !fs.read { 97 !fs.ipc_m_data_read /* forward payload */ 98 } ; 95 !fs.read ; 96 !fs.ipc_m_data_read /* forward payload */ ; 99 97 [fnc.vfs_release_phone] 100 98 } … … 108 106 alternative (fs; tmpfs; fat; devfs) { 109 107 [fnc.vfs_grab_phone] ; 110 !fs.write { 111 !fs.ipc_m_data_write /* forward payload */ 112 } ; 108 !fs.write ; 109 !fs.ipc_m_data_write /* forward payload */ ; 113 110 [fnc.vfs_release_phone] 114 111 } … … 132 129 alternative (fs; tmpfs; fat; devfs) { 133 130 [fnc.vfs_grab_phone] ; 134 !fs.stat { 135 !fs.ipc_m_data_read /* forward struct stat */ 136 } ; 131 !fs.stat ; 132 !fs.ipc_m_data_read /* forward struct stat */ ; 137 133 [fnc.vfs_release_phone] 138 134 } … … 148 144 [fnc.vfs_lookup_internal] ; 149 145 tentative { 150 !fs.stat { 151 !fs.ipc_m_data_read /* forward struct stat */ 152 } 146 !fs.stat ; 147 !fs.ipc_m_data_read /* forward struct stat */ 153 148 } 154 149 }
Note:
See TracChangeset
for help on using the changeset viewer.