2012-03-04 00:28:15 +01:00
|
|
|
From 361d8917165009c3897a5116a5b6e87c2db2dd68 Mon Sep 17 00:00:00 2001
|
2011-12-11 03:42:09 +01:00
|
|
|
From: Alexander Graf <agraf@suse.de>
|
2009-08-11 17:37:13 +02:00
|
|
|
Date: Tue, 14 Apr 2009 16:24:15 +0200
|
2012-02-01 00:10:40 +01:00
|
|
|
Subject: [PATCH] qemu-cvs-alsa_mmap
|
2009-08-11 17:37:13 +02:00
|
|
|
|
|
|
|
Hack to prevent ALSA from using mmap() interface to simplify emulation.
|
|
|
|
|
2011-12-11 03:42:09 +01:00
|
|
|
Signed-off-by: Alexander Graf <agraf@suse.de>
|
2009-08-11 17:37:13 +02:00
|
|
|
Signed-off-by: Ulrich Hecht <uli@suse.de>
|
|
|
|
---
|
|
|
|
linux-user/mmap.c | 14 ++++++++++++++
|
|
|
|
1 files changed, 14 insertions(+), 0 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/linux-user/mmap.c b/linux-user/mmap.c
|
2011-12-14 02:35:41 +01:00
|
|
|
index 46e8bf8..e4db455 100644
|
2009-08-11 17:37:13 +02:00
|
|
|
--- a/linux-user/mmap.c
|
|
|
|
+++ b/linux-user/mmap.c
|
2011-12-14 02:35:41 +01:00
|
|
|
@@ -364,6 +364,9 @@ abi_ulong mmap_find_vma(abi_ulong start, abi_ulong size)
|
2011-02-16 20:30:51 +01:00
|
|
|
}
|
2007-07-10 18:55:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+#define SNDRV_PCM_MMAP_OFFSET_STATUS 0x80000000
|
|
|
|
+#define SNDRV_PCM_MMAP_OFFSET_CONTROL 0x81000000
|
|
|
|
+
|
|
|
|
/* NOTE: all the constants are the HOST ones */
|
2007-11-13 21:32:02 +01:00
|
|
|
abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
|
|
|
|
int flags, int fd, abi_ulong offset)
|
2011-12-14 02:35:41 +01:00
|
|
|
@@ -399,6 +402,17 @@ abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
|
2007-07-10 18:55:54 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+ /* Alsa tries to communcate with the kernel via mmap. This usually
|
2011-12-11 03:42:09 +01:00
|
|
|
+ * is a good idea when user- and kernelspace are running on the
|
2007-07-10 18:55:54 +02:00
|
|
|
+ * same architecture but does not work out when not. To make alsa
|
|
|
|
+ * not to use mmap, we can just have it fail on the mmap calls that
|
|
|
|
+ * would initiate this.
|
|
|
|
+ */
|
|
|
|
+ if(offset == SNDRV_PCM_MMAP_OFFSET_STATUS || offset == SNDRV_PCM_MMAP_OFFSET_CONTROL) {
|
|
|
|
+ errno = EINVAL;
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
if (offset & ~TARGET_PAGE_MASK) {
|
|
|
|
errno = EINVAL;
|
2009-08-11 17:37:13 +02:00
|
|
|
goto fail;
|