Changeset 4198f9c3 in mainline for uspace/srv/fs
- 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
- Location:
- uspace/srv/fs
- Files:
-
- 3 edited
-
devfs/devfs.c (modified) (1 diff)
-
fat/fat.c (modified) (1 diff)
-
tmpfs/tmpfs.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/fs/devfs/devfs.c
r6408be3 r4198f9c3 68 68 case IPC_M_PHONE_HUNGUP: 69 69 return; 70 case VFS_ MOUNTED:70 case VFS_OUT_MOUNTED: 71 71 devfs_mounted(callid, &call); 72 72 break; 73 case VFS_ MOUNT:73 case VFS_OUT_MOUNT: 74 74 devfs_mount(callid, &call); 75 75 break; 76 case VFS_ LOOKUP:76 case VFS_OUT_LOOKUP: 77 77 devfs_lookup(callid, &call); 78 78 break; 79 case VFS_O PEN_NODE:79 case VFS_OUT_OPEN_NODE: 80 80 devfs_open_node(callid, &call); 81 81 break; 82 case VFS_ DEVICE:82 case VFS_OUT_DEVICE: 83 83 devfs_device(callid, &call); 84 84 break; 85 case VFS_ READ:85 case VFS_OUT_READ: 86 86 devfs_read(callid, &call); 87 87 break; 88 case VFS_ WRITE:88 case VFS_OUT_WRITE: 89 89 devfs_write(callid, &call); 90 90 break; 91 case VFS_ TRUNCATE:91 case VFS_OUT_TRUNCATE: 92 92 devfs_truncate(callid, &call); 93 93 break; 94 case VFS_ CLOSE:94 case VFS_OUT_CLOSE: 95 95 devfs_close(callid, &call); 96 96 break; 97 case VFS_ SYNC:97 case VFS_OUT_SYNC: 98 98 devfs_sync(callid, &call); 99 99 break; 100 case VFS_ DESTROY:100 case VFS_OUT_DESTROY: 101 101 devfs_destroy(callid, &call); 102 102 break; -
uspace/srv/fs/fat/fat.c
r6408be3 r4198f9c3 92 92 case IPC_M_PHONE_HUNGUP: 93 93 return; 94 case VFS_ MOUNTED:94 case VFS_OUT_MOUNTED: 95 95 fat_mounted(callid, &call); 96 96 break; 97 case VFS_ MOUNT:97 case VFS_OUT_MOUNT: 98 98 fat_mount(callid, &call); 99 99 break; 100 case VFS_ LOOKUP:100 case VFS_OUT_LOOKUP: 101 101 fat_lookup(callid, &call); 102 102 break; 103 case VFS_ READ:103 case VFS_OUT_READ: 104 104 fat_read(callid, &call); 105 105 break; 106 case VFS_ WRITE:106 case VFS_OUT_WRITE: 107 107 fat_write(callid, &call); 108 108 break; 109 case VFS_ TRUNCATE:109 case VFS_OUT_TRUNCATE: 110 110 fat_truncate(callid, &call); 111 111 break; 112 case VFS_ CLOSE:112 case VFS_OUT_CLOSE: 113 113 fat_close(callid, &call); 114 114 break; 115 case VFS_ DESTROY:115 case VFS_OUT_DESTROY: 116 116 fat_destroy(callid, &call); 117 117 break; 118 case VFS_O PEN_NODE:118 case VFS_OUT_OPEN_NODE: 119 119 fat_open_node(callid, &call); 120 120 break; 121 case VFS_ DEVICE:121 case VFS_OUT_DEVICE: 122 122 fat_device(callid, &call); 123 123 break; 124 case VFS_ SYNC:124 case VFS_OUT_SYNC: 125 125 fat_sync(callid, &call); 126 126 break; -
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.
