]> git.proxmox.com Git - mirror_qemu.git/commitdiff
hw/dma/i8257: Silence phony error message
authorPhilipp Hahn <hahn@univention.de>
Wed, 10 Sep 2014 11:47:15 +0000 (13:47 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 16 Sep 2014 10:35:02 +0000 (12:35 +0200)
Convert into trace event. Otherwise the message
dma: unregistered DMA channel used nchan=0 dma_pos=0 dma_len=1
gets printed every time and fills up the log-file with 50 MiB / minute.

Signed-off-by: Philipp Hahn <hahn@univention.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
hw/dma/i8257.c
trace-events

index dd370ed7e56d1422755d46b8214c3f9e06fbd109..a414029beaec9b3d7c5afd62460460348332f34b 100644 (file)
@@ -24,6 +24,7 @@
 #include "hw/hw.h"
 #include "hw/isa/isa.h"
 #include "qemu/main-loop.h"
+#include "trace.h"
 
 /* #define DEBUG_DMA */
 
@@ -473,8 +474,7 @@ static void dma_reset(void *opaque)
 
 static int dma_phony_handler (void *opaque, int nchan, int dma_pos, int dma_len)
 {
-    dolog ("unregistered DMA channel used nchan=%d dma_pos=%d dma_len=%d\n",
-           nchan, dma_pos, dma_len);
+    trace_i8257_unregistered_dma(nchan, dma_pos, dma_len);
     return dma_pos;
 }
 
index fb58963ca87e4a3dd5680598787b2b09bd979ca7..b680a6b1c698b26104d45e3840ff8f50524641bb 100644 (file)
@@ -1318,3 +1318,6 @@ mhp_pc_dimm_assigned_address(uint64_t addr) "0x%"PRIx64
 # target-s390x/kvm.c
 kvm_enable_cmma(int rc) "CMMA: enabling with result code %d"
 kvm_clear_cmma(int rc) "CMMA: clearing with result code %d"
+
+# hw/dma/i8257.c
+i8257_unregistered_dma(int nchan, int dma_pos, int dma_len) "unregistered DMA channel used nchan=%d dma_pos=%d dma_len=%d"