summaryrefslogtreecommitdiff
path: root/emulators/qemu-devel/files/extra-patch-1ebbb5b56e890741f1461662fae9728da0c76e27
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/qemu-devel/files/extra-patch-1ebbb5b56e890741f1461662fae9728da0c76e27')
-rw-r--r--emulators/qemu-devel/files/extra-patch-1ebbb5b56e890741f1461662fae9728da0c76e2772
1 files changed, 0 insertions, 72 deletions
diff --git a/emulators/qemu-devel/files/extra-patch-1ebbb5b56e890741f1461662fae9728da0c76e27 b/emulators/qemu-devel/files/extra-patch-1ebbb5b56e890741f1461662fae9728da0c76e27
deleted file mode 100644
index 2ce53dcf5d9a..000000000000
--- a/emulators/qemu-devel/files/extra-patch-1ebbb5b56e890741f1461662fae9728da0c76e27
+++ /dev/null
@@ -1,72 +0,0 @@
-From 1ebbb5b56e890741f1461662fae9728da0c76e27 Mon Sep 17 00:00:00 2001
-From: Stacey Son <sson@FreeBSD.org>
-Date: Thu, 6 Nov 2014 22:35:01 +0000
-Subject: [PATCH] Add JHB's ioctl decoding to unknown ioctl message.
-
----
- bsd-user/bsd-ioctl.c | 31 ++++++++++++++++++++++++++++---
- 1 file changed, 28 insertions(+), 3 deletions(-)
-
-diff --git a/bsd-user/bsd-ioctl.c b/bsd-user/bsd-ioctl.c
-index 95505a4..10e8e54 100644
---- a/bsd-user/bsd-ioctl.c
-+++ b/bsd-user/bsd-ioctl.c
-@@ -19,6 +19,7 @@
-
- #include <sys/types.h>
- #include <sys/param.h>
-+#include <sys/ioccom.h>
- #include <sys/ioctl.h>
- #if defined(__FreeBSD_version) && __FreeBSD_version > 900000
- #include <sys/_termios.h>
-@@ -307,6 +308,29 @@ static IOCTLEntry ioctl_entries[] = {
- { 0, 0 },
- };
-
-+static void log_unsupported_ioctl(unsigned long cmd)
-+{
-+ gemu_log("cmd=0x%08lx dir=", cmd);
-+ switch (cmd & IOC_DIRMASK) {
-+ case IOC_VOID:
-+ gemu_log("VOID ");
-+ break;
-+ case IOC_OUT:
-+ gemu_log("OUT ");
-+ break;
-+ case IOC_IN:
-+ gemu_log("IN ");
-+ break;
-+ case IOC_INOUT:
-+ gemu_log("INOUT");
-+ break;
-+ default:
-+ gemu_log("%01lx ???", (cmd & IOC_DIRMASK) >> 29);
-+ break;
-+ }
-+ gemu_log(" '%c' %3d %lu\n", (char)IOCGROUP(cmd), (int)(cmd & 0xff), IOCPARM_LEN(cmd));
-+}
-+
- abi_long do_bsd_ioctl(int fd, abi_long cmd, abi_long arg)
- {
- const IOCTLEntry *ie;
-@@ -319,7 +343,8 @@ abi_long do_bsd_ioctl(int fd, abi_long cmd, abi_long arg)
- ie = ioctl_entries;
- for (;;) {
- if (ie->target_cmd == 0) {
-- gemu_log("Unsupported ioctl: cmd=0x%04lx\n", (long)cmd);
-+ gemu_log("Qemu unsupported ioctl: ");
-+ log_unsupported_ioctl(cmd);
- return -TARGET_ENOSYS;
- }
- if (ie->target_cmd == cmd) {
-@@ -398,8 +423,8 @@ abi_long do_bsd_ioctl(int fd, abi_long cmd, abi_long arg)
- break;
-
- default:
-- gemu_log("Unsupported ioctl type: cmd=0x%04lx type=%d\n",
-- (long)cmd, arg_type[0]);
-+ gemu_log("Qemu unknown ioctl: type=%d ", arg_type[0]);
-+ log_unsupported_ioctl(cmd);
- ret = -TARGET_ENOSYS;
- break;
- }