diff options
| author | Paolo Bonzini | 2015-10-16 15:09:01 +0200 |
|---|---|---|
| committer | Paolo Bonzini | 2015-11-04 15:02:30 +0100 |
| commit | ddcc8e9d51c415a7b7b2983c3552408d9a50be6e (patch) | |
| tree | 0bb7acce7e0b1486bcd23292cdff31f02b0957a1 | |
| parent | ioport: do not use CPU_LOG_IOPORT (diff) | |
| download | qemu-ddcc8e9d51c415a7b7b2983c3552408d9a50be6e.tar.gz qemu-ddcc8e9d51c415a7b7b2983c3552408d9a50be6e.tar.xz qemu-ddcc8e9d51c415a7b7b2983c3552408d9a50be6e.zip | |
qemu-log: remove -d ioport
It was disabled at compile-time, and is now replaced by tracepoints.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rw-r--r-- | include/qemu/log.h | 1 | ||||
| -rw-r--r-- | qemu-log.c | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/include/qemu/log.h b/include/qemu/log.h index 7de45001f2..362cbc4e67 100644 --- a/include/qemu/log.h +++ b/include/qemu/log.h @@ -35,7 +35,6 @@ static inline bool qemu_log_enabled(void) #define CPU_LOG_INT (1 << 4) #define CPU_LOG_EXEC (1 << 5) #define CPU_LOG_PCALL (1 << 6) -#define CPU_LOG_IOPORT (1 << 7) #define CPU_LOG_TB_CPU (1 << 8) #define CPU_LOG_RESET (1 << 9) #define LOG_UNIMP (1 << 10) diff --git a/qemu-log.c b/qemu-log.c index efd07c81ea..7cb01a802b 100644 --- a/qemu-log.c +++ b/qemu-log.c @@ -112,8 +112,6 @@ const QEMULogItem qemu_log_items[] = { "x86 only: show protected mode far calls/returns/exceptions" }, { CPU_LOG_RESET, "cpu_reset", "show CPU state before CPU resets" }, - { CPU_LOG_IOPORT, "ioport", - "show all i/o ports accesses" }, { LOG_UNIMP, "unimp", "log unimplemented functionality" }, { LOG_GUEST_ERROR, "guest_errors", |
