Index: uspace/lib/libfs/libfs.c
===================================================================
--- uspace/lib/libfs/libfs.c	(revision 0daba2122dbae0532b6060c324edd987cb367f6a)
+++ uspace/lib/libfs/libfs.c	(revision d8ef374853a3cffc0874d515566beaa840c79111)
@@ -91,5 +91,5 @@
 	 * Send our VFS info structure to VFS.
 	 */
-	int rc = ipc_data_write_start(vfs_phone, info, sizeof(*info)); 
+	int rc = async_data_write_start(vfs_phone, info, sizeof(*info)); 
 	if (rc != EOK) {
 		async_wait_for(req, NULL);
@@ -114,5 +114,5 @@
 	 * Request sharing the Path Lookup Buffer with VFS.
 	 */
-	rc = ipc_share_in_start_0_0(vfs_phone, reg->plb_ro, PLB_SIZE);
+	rc = async_share_in_start_0_0(vfs_phone, reg->plb_ro, PLB_SIZE);
 	if (rc) {
 		async_wait_for(req, NULL);
@@ -169,5 +169,5 @@
 	ipc_answer_0(callid, EOK);	/* acknowledge the mountee_phone */
 	
-	res = ipc_data_write_receive(&callid, NULL);
+	res = async_data_write_receive(&callid, NULL);
 	if (!res) {
 		ipc_hangup(mountee_phone);
@@ -486,5 +486,5 @@
 	ipc_callid_t callid;
 	size_t size;
-	if (!ipc_data_read_receive(&callid, &size) ||
+	if (!async_data_read_receive(&callid, &size) ||
 	    size != sizeof(struct stat)) {
 		ipc_answer_0(callid, EINVAL);
@@ -503,5 +503,5 @@
 	stat.size = ops->size_get(fn);
 
-	ipc_data_read_finalize(callid, &stat, sizeof(struct stat));
+	async_data_read_finalize(callid, &stat, sizeof(struct stat));
 	ipc_answer_0(rid, EOK);
 }
