Index: generic/src/ipc/sysipc.c
===================================================================
--- generic/src/ipc/sysipc.c	(revision ad575d7241a9d9c1d833f3e02eeb6d3840216922)
+++ generic/src/ipc/sysipc.c	(revision 897f2e76d9d234f4e6d10c0049e3a68e116b8b0a)
@@ -65,5 +65,5 @@
 static inline int is_forwardable(__native method)
 {
-	if (method == IPC_M_PHONE_HUNGUP)
+	if (method == IPC_M_PHONE_HUNGUP || method == IPC_M_AS_SEND)
 		return 0; /* This message is meant only for the receiver */
 	return 1;
@@ -397,4 +397,8 @@
 	int rc;
 
+	/* Do not answer notification callids */
+	if (callid & IPC_CALLID_NOTIFICATION)
+		return 0;
+
 	call = get_call(callid);
 	if (!call)
@@ -422,4 +426,8 @@
 	int saveddata = 0;
 	int rc;
+
+	/* Do not answer notification callids */
+	if (callid & IPC_CALLID_NOTIFICATION)
+		return 0;
 
 	call = get_call(callid);
