From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39802) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zu0lm-0003kY-LK for qemu-devel@nongnu.org; Wed, 04 Nov 2015 11:18:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zu0ll-0002Mj-Sf for qemu-devel@nongnu.org; Wed, 04 Nov 2015 11:18:42 -0500 Received: from mail-wi0-x22c.google.com ([2a00:1450:400c:c05::22c]:34294) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zu0ll-0002MZ-Lw for qemu-devel@nongnu.org; Wed, 04 Nov 2015 11:18:41 -0500 Received: by wikq8 with SMTP id q8so95512375wik.1 for ; Wed, 04 Nov 2015 08:18:41 -0800 (PST) Received: from 640k.lan (94-39-161-165.adsl-ull.clienti.tiscali.it. [94.39.161.165]) by smtp.gmail.com with ESMTPSA id kd8sm2318236wjc.27.2015.11.04.08.18.40 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 04 Nov 2015 08:18:40 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Wed, 4 Nov 2015 17:18:23 +0100 Message-Id: <1446653912-116150-6-git-send-email-pbonzini@redhat.com> In-Reply-To: <1446653912-116150-1-git-send-email-pbonzini@redhat.com> References: <1446653912-116150-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PULL 05/14] qemu-log: remove -d ioport List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org It was disabled at compile-time, and is now replaced by tracepoints. Signed-off-by: Paolo Bonzini --- include/qemu/log.h | 1 - qemu-log.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/include/qemu/log.h b/include/qemu/log.h index 7de4500..362cbc4 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 efd07c8..7cb01a8 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", -- 1.8.3.1