|
From: <sv...@va...> - 2015-08-13 14:53:28
|
Author: sewardj
Date: Thu Aug 13 15:53:17 2015
New Revision: 15537
Log:
Bug 339563 - The DVB demux DMX_STOP ioctl doesn't have a wrapper.
Patch from mc...@in... (Mauro Carvalho Chehab).
Modified:
trunk/coregrind/m_syswrap/syswrap-linux.c
trunk/include/vki/vki-linux.h
Modified: trunk/coregrind/m_syswrap/syswrap-linux.c
==============================================================================
--- trunk/coregrind/m_syswrap/syswrap-linux.c (original)
+++ trunk/coregrind/m_syswrap/syswrap-linux.c Thu Aug 13 15:53:17 2015
@@ -5552,6 +5552,9 @@
/* V4L2 */
case VKI_V4L2_LOG_STATUS:
+
+ /* DVB */
+ case VKI_DMX_STOP:
PRINT("sys_ioctl ( %lu, 0x%lx )", ARG1, ARG2);
PRE_REG_READ2(long, "ioctl",
unsigned int, fd, unsigned int, request);
Modified: trunk/include/vki/vki-linux.h
==============================================================================
--- trunk/include/vki/vki-linux.h (original)
+++ trunk/include/vki/vki-linux.h Thu Aug 13 15:53:17 2015
@@ -4635,6 +4635,9 @@
#define VKI_MEDIA_IOC_ENUM_LINKS _VKI_IOWR('|', 0x02, struct vki_media_links_enum)
#define VKI_MEDIA_IOC_SETUP_LINK _VKI_IOWR('|', 0x03, struct vki_media_link_desc)
+/* DVB demux API */
+#define VKI_DMX_STOP _VKI_IO('o', 42)
+
/* Comparison type */
enum vki_kcmp_type {
VKI_KCMP_FILE,
|