From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34353) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxIXU-00007S-A0 for qemu-devel@nongnu.org; Wed, 18 Jun 2014 12:16:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WxIXM-0006AX-RK for qemu-devel@nongnu.org; Wed, 18 Jun 2014 12:16:44 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14222) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxIXM-0006AG-HJ for qemu-devel@nongnu.org; Wed, 18 Jun 2014 12:16:36 -0400 Date: Wed, 18 Jun 2014 19:16:58 +0300 From: "Michael S. Tsirkin" Message-ID: <1403108034-32054-23-git-send-email-mst@redhat.com> References: <1403108034-32054-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1403108034-32054-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL v2 022/106] trace: pc: add PC_DIMM slot & address allocation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Stefan Hajnoczi , Alexey Kardashevskiy , Alexander Graf , Gerd Hoffmann , Anthony Liguori , Igor Mammedov , Paolo Bonzini From: Igor Mammedov Add mhp_pc_dimm_assigned_slot & mhp_pc_dimm_assigned_address events to trace which address and slot where assigned to plugged in PC_DIMM device on target-i386 machine. Signed-off-by: Igor Mammedov Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- hw/i386/pc.c | 3 +++ trace-events | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/hw/i386/pc.c b/hw/i386/pc.c index be5e3bb..c9d888f 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -59,6 +59,7 @@ #include "hw/pci/pci_host.h" #include "acpi-build.h" #include "hw/mem/pc-dimm.h" +#include "trace.h" /* debug PC/ISA interrupts */ //#define DEBUG_IRQ @@ -1572,6 +1573,7 @@ static void pc_dimm_plug(HotplugHandler *hotplug_dev, if (local_err) { goto out; } + trace_mhp_pc_dimm_assigned_address(addr); slot = object_property_get_int(OBJECT(dev), PC_DIMM_SLOT_PROP, &local_err); if (local_err) { @@ -1587,6 +1589,7 @@ static void pc_dimm_plug(HotplugHandler *hotplug_dev, if (local_err) { goto out; } + trace_mhp_pc_dimm_assigned_slot(slot); memory_region_add_subregion(&pcms->hotplug_memory, addr - pcms->hotplug_memory_base, mr); diff --git a/trace-events b/trace-events index d7d6a10..ba01ad5 100644 --- a/trace-events +++ b/trace-events @@ -1285,6 +1285,10 @@ mhp_acpi_write_ost_ev(uint32_t slot, uint32_t ev) "slot[0x%"PRIx32"] OST EVENT: mhp_acpi_write_ost_status(uint32_t slot, uint32_t st) "slot[0x%"PRIx32"] OST STATUS: 0x%"PRIx32 mhp_acpi_clear_insert_evt(uint32_t slot) "slot[0x%"PRIx32"] clear insert event" +#hw/i386/pc.c +mhp_pc_dimm_assigned_slot(int slot) "0x%d" +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" -- MST