Changeset 4198f9c3 in mainline for uspace/srv/fs/tmpfs/tmpfs.c
- Timestamp:
- 2009-06-28T13:43:15Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 852b801
- Parents:
- 6408be3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/tmpfs/tmpfs.c
r6408be3 r4198f9c3 99 99 case IPC_M_PHONE_HUNGUP: 100 100 return; 101 case VFS_ MOUNTED:101 case VFS_OUT_MOUNTED: 102 102 tmpfs_mounted(callid, &call); 103 103 break; 104 case VFS_ MOUNT:104 case VFS_OUT_MOUNT: 105 105 tmpfs_mount(callid, &call); 106 106 break; 107 case VFS_ LOOKUP:107 case VFS_OUT_LOOKUP: 108 108 tmpfs_lookup(callid, &call); 109 109 break; 110 case VFS_ READ:110 case VFS_OUT_READ: 111 111 tmpfs_read(callid, &call); 112 112 break; 113 case VFS_ WRITE:113 case VFS_OUT_WRITE: 114 114 tmpfs_write(callid, &call); 115 115 break; 116 case VFS_ TRUNCATE:116 case VFS_OUT_TRUNCATE: 117 117 tmpfs_truncate(callid, &call); 118 118 break; 119 case VFS_ CLOSE:119 case VFS_OUT_CLOSE: 120 120 tmpfs_close(callid, &call); 121 121 break; 122 case VFS_ DESTROY:122 case VFS_OUT_DESTROY: 123 123 tmpfs_destroy(callid, &call); 124 124 break; 125 case VFS_O PEN_NODE:125 case VFS_OUT_OPEN_NODE: 126 126 tmpfs_open_node(callid, &call); 127 127 break; 128 case VFS_ DEVICE:128 case VFS_OUT_DEVICE: 129 129 tmpfs_device(callid, &call); 130 130 break; 131 case VFS_ SYNC:131 case VFS_OUT_SYNC: 132 132 tmpfs_sync(callid, &call); 133 133 break; … … 153 153 return -1; 154 154 } 155 155 156 156 int rc = fs_register(vfs_phone, &tmpfs_reg, &tmpfs_vfs_info, 157 157 tmpfs_connection);
Note:
See TracChangeset
for help on using the changeset viewer.