Changes in uspace/srv/vfs/vfs_register.c [1e4cada:9593bc8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/vfs/vfs_register.c
r1e4cada r9593bc8 46 46 #include <ctype.h> 47 47 #include <bool.h> 48 #include <fibril_sync h.h>48 #include <fibril_sync.h> 49 49 #include <adt/list.h> 50 50 #include <as.h> … … 122 122 * VFS info structure from the client FS. 123 123 */ 124 if (! async_data_write_receive(&callid, &size)) {124 if (!ipc_data_write_receive(&callid, &size)) { 125 125 /* 126 126 * The client doesn't obey the same protocol as we do. … … 163 163 fibril_mutex_initialize(&fs_info->phone_lock); 164 164 165 rc = async_data_write_finalize(callid, &fs_info->vfs_info, size);165 rc = ipc_data_write_finalize(callid, &fs_info->vfs_info, size); 166 166 if (rc != EOK) { 167 167 dprintf("Failed to deliver the VFS info into our AS, rc=%d.\n", … … 229 229 */ 230 230 231 if (! async_share_in_receive(&callid, &size)) {231 if (!ipc_share_in_receive(&callid, &size)) { 232 232 dprintf("Unexpected call, method = %d\n", IPC_GET_METHOD(call)); 233 233 list_remove(&fs_info->fs_link); … … 257 257 * Commit to read-only sharing the PLB with the client. 258 258 */ 259 (void) async_share_in_finalize(callid, plb,259 (void) ipc_share_in_finalize(callid, plb, 260 260 AS_AREA_READ | AS_AREA_CACHEABLE); 261 261
Note:
See TracChangeset
for help on using the changeset viewer.