Rev 2643 | Rev 2677 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 2643 | Rev 2660 | ||
|---|---|---|---|
| Line 69... | Line 69... | ||
| 69 | aid_t req = async_send_0(vfs_phone, VFS_REGISTER, &answer); |
69 | aid_t req = async_send_0(vfs_phone, VFS_REGISTER, &answer); |
| 70 | 70 | ||
| 71 | /* |
71 | /* |
| 72 | * Send our VFS info structure to VFS. |
72 | * Send our VFS info structure to VFS. |
| 73 | */ |
73 | */ |
| 74 | int rc = ipc_data_send(vfs_phone, info, sizeof(*info)); |
74 | int rc = ipc_data_write_send(vfs_phone, info, sizeof(*info)); |
| 75 | if (rc != EOK) { |
75 | if (rc != EOK) { |
| 76 | async_wait_for(req, NULL); |
76 | async_wait_for(req, NULL); |
| 77 | return rc; |
77 | return rc; |
| 78 | } |
78 | } |
| 79 | 79 | ||