All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] move IO_ASSIST_WRITE tracing flag define
@ 2009-04-24 12:07 Andre Przywara
  0 siblings, 0 replies; only message in thread
From: Andre Przywara @ 2009-04-24 12:07 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 717 bytes --]

Hi,

hvm/emulate.c sets the direction of an IO_ASSIST trace operation in an 
unused bit. This bitmask was defined in the .c file, not in the public 
header. Beside moving this define this patch adds the appropriate string 
in the formats file.

Signed-off-by: Andre Przywara <andre.przywara@amd.com>

Regards,
Andre.

-- 
Andre Przywara
AMD-Operating System Research Center (OSRC), Dresden, Germany
Tel: +49 351 448 3567 12
----to satisfy European Law for business letters:
Advanced Micro Devices GmbH
Karl-Hammerschmidt-Str. 34, 85609 Dornach b. Muenchen
Geschaeftsfuehrer: Jochen Polster; Thomas M. McCoy; Giuliano Meroni
Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

[-- Attachment #2: ioassist_write_trace.patch --]
[-- Type: text/x-patch, Size: 1944 bytes --]

diff -r 4eef30c14a14 tools/xentrace/formats
--- a/tools/xentrace/formats	Thu Apr 23 10:11:33 2009 +0100
+++ b/tools/xentrace/formats	Fri Apr 24 13:50:12 2009 +0200
@@ -63,7 +63,9 @@
 0x00082114  CPU%(cpu)d  %(tsc)d (+%(reltsc)8d)  INVLPG      [ is invlpga? = %(1)d, virt = 0x%(2)016x ]
 0x00082015  CPU%(cpu)d  %(tsc)d (+%(reltsc)8d)  MCE
 0x00082016  CPU%(cpu)d  %(tsc)d (+%(reltsc)8d)  IO_ASSIST   [ data = 0x%(1)04x ]
+0x00082216  CPU%(cpu)d  %(tsc)d (+%(reltsc)8d)  IO_ASSIST   write   [ data = 0x%(1)04x ]
 0x00082017  CPU%(cpu)d  %(tsc)d (+%(reltsc)8d)  MMIO_ASSIST [ data = 0x%(1)04x ]
+0x00082217  CPU%(cpu)d  %(tsc)d (+%(reltsc)8d)  MMIO_ASSIST write   [ data = 0x%(1)04x ]
 0x00082018  CPU%(cpu)d  %(tsc)d (+%(reltsc)8d)  CLTS
 0x00082019  CPU%(cpu)d  %(tsc)d (+%(reltsc)8d)  LMSW        [ value = 0x%(1)08x ]
 0x00082119  CPU%(cpu)d  %(tsc)d (+%(reltsc)8d)  LMSW        [ value = 0x%(1)016x ]
diff -r 4eef30c14a14 xen/arch/x86/hvm/emulate.c
--- a/xen/arch/x86/hvm/emulate.c	Thu Apr 23 10:11:33 2009 +0100
+++ b/xen/arch/x86/hvm/emulate.c	Fri Apr 24 13:50:12 2009 +0200
@@ -21,7 +21,6 @@
 #include <asm/hvm/trace.h>
 #include <asm/hvm/support.h>
 
-#define HVMTRACE_IO_ASSIST_WRITE 0x200
 static void hvmtrace_io_assist(int is_mmio, ioreq_t *p)
 {
     unsigned int size, event;
diff -r 4eef30c14a14 xen/include/public/trace.h
--- a/xen/include/public/trace.h	Thu Apr 23 10:11:33 2009 +0100
+++ b/xen/include/public/trace.h	Fri Apr 24 13:50:12 2009 +0200
@@ -94,7 +94,11 @@
 #define TRC_PV_PTWR_EMULATION        (TRC_PV + 11)
 #define TRC_PV_PTWR_EMULATION_PAE    (TRC_PV + 12)
   /* Indicates that addresses in trace record are 64 bits */
-#define TRC_64_FLAG               (0x100) 
+#define TRC_64_FLAG               (0x100)
+  /* I/O direction flag */
+#define HVMTRACE_IO_ASSIST_WRITE  (0x200)
+
+
 
 #define TRC_SHADOW_NOT_SHADOW                 (TRC_SHADOW +  1)
 #define TRC_SHADOW_FAST_PROPAGATE             (TRC_SHADOW +  2)

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-04-24 12:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-24 12:07 [PATCH] move IO_ASSIST_WRITE tracing flag define Andre Przywara

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.