Index: abi/include/abi/ipc/methods.h
===================================================================
--- abi/include/abi/ipc/methods.h	(revision 78fd6ef3950e019246df5fcf81cf827e5434fdda)
+++ abi/include/abi/ipc/methods.h	(revision f8048d1b96f0b84d1c64179e0aaed6c7f1352f87)
@@ -157,11 +157,18 @@
 	/** Receive data from another address space over IPC.
 	 *
-	 * - ARG1 - destination virtual address in the source address space
-	 * - ARG2 - size of data to be received, may be cropped by the recipient
-	 *
-	 * on answer, the recipient must set:
-	 *
-	 * - ARG1 - source virtual address in the destination address space
-	 * - ARG2 - final size of data to be copied
+	 * Sender:
+	 *  - uspace: arg1 .. sender's destination buffer address
+	 *            arg2 .. sender's destination buffer size
+	 *            arg3 .. flags (IPC_XF_RESTRICT)
+	 *            arg4 .. <unused>
+	 *            arg5 .. <unused>
+	 *
+	 * Recipient:
+	 *  - uspace: arg1 .. recipient's source buffer address
+	 *            arg2 .. recipient's source buffer size
+	 *            arg3 .. <unused>
+	 *            arg4 .. <unused>
+	 *            arg5 .. <unused>
+	 *
 	 */
 	IPC_M_DATA_READ,
@@ -169,11 +176,18 @@
 	/** Send data to another address space over IPC.
 	 *
-	 * - ARG1 - source address space virtual address
-	 * - ARG2 - size of data to be copied, may be overriden by the recipient
-	 *
-	 * on answer, the recipient must set:
-	 *
-	 * - ARG1 - final destination address space virtual address
-	 * - ARG2 - final size of data to be copied
+	 * Sender:
+	 *  - uspace: arg1 .. sender's source buffer address
+	 *            arg2 .. sender's source buffer size
+	 *            arg3 .. flags (IPC_XF_RESTRICT)
+	 *            arg4 .. <unused>
+	 *            arg5 .. <unused>
+	 *
+	 * Recipient:
+	 *  - uspace: arg1 .. recipient's destination buffer address
+	 *            arg2 .. recipient's destination buffer size
+	 *            arg3 .. <unused>
+	 *            arg4 .. <unused>
+	 *            arg5 .. <unused>
+	 *
 	 */
 	IPC_M_DATA_WRITE,
