2013-08-13 18:59:30 +02:00
|
|
|
From 10c6ce2dff0a0e14108bc948510ef35c93a369fd 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>
|
|
|
|
---
|
2013-07-30 14:36:48 +02:00
|
|
|
linux-user/mmap.c | 14 ++++++++++++++
|
|
|
|
1 file changed, 14 insertions(+)
|
2009-08-11 17:37:13 +02:00
|
|
|
|
|
|
|
diff --git a/linux-user/mmap.c b/linux-user/mmap.c
|
2013-07-30 14:36:48 +02:00
|
|
|
index a249f0c..34a5615 100644
|
2009-08-11 17:37:13 +02:00
|
|
|
--- a/linux-user/mmap.c
|
|
|
|
+++ b/linux-user/mmap.c
|
2013-07-30 14:36:48 +02:00
|
|
|
@@ -366,6 +366,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)
|
2013-07-30 14:36:48 +02:00
|
|
|
@@ -400,6 +403,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;
|