* [PATCH] xenalyze: use packed structs with u64 members
@ 2010-12-14 17:46 Olaf Hering
2010-12-14 17:50 ` [PATCH] xenalyze: add missing newline to fprintf Olaf Hering
2010-12-16 10:35 ` [PATCH] xenalyze: use correct sizeof argument when counting extra_data Olaf Hering
0 siblings, 2 replies; 3+ messages in thread
From: Olaf Hering @ 2010-12-14 17:46 UTC (permalink / raw)
To: George Dunlap; +Cc: xen-devel
George,
there is some padding after the first struct member if it is followed by
an unsigned long long. This happens with 64bit builds.
Adding an attribute to this struct fixes the size checks in
hvm_msr_write_process() for me. There are a few more places where the
padding will break things. This explains also the unexpected rip values.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
--- xenalyze.hg.orig/xenalyze.c
+++ xenalyze.hg/xenalyze.c
@@ -4138,7 +4138,7 @@ void hvm_cr_write_process(struct record_
struct {
unsigned cr;
unsigned long long val;
- } x64;
+ } __attribute__((packed)) x64;
} *r = (typeof(r))h->d;
unsigned cr;
unsigned long long val;
@@ -4204,7 +4204,7 @@ void hvm_msr_write_process(struct record
struct {
unsigned int addr;
unsigned long long val;
- } *r = (typeof(r))h->d;
+ } __attribute__((packed)) *r = (typeof(r))h->d;
int expected_extra=(sizeof(*r)/sizeof(unsigned int));
@@ -4256,7 +4256,7 @@ void hvm_msr_read_process(struct record_
struct {
unsigned int addr;
unsigned long long val;
- } *r = (typeof(r))h->d;
+ } __attribute__((packed)) *r = (typeof(r))h->d;
int expected_extra=(sizeof(*r)/sizeof(unsigned int));
@@ -4499,7 +4499,7 @@ void hvm_pf_inject_process(struct record
struct {
unsigned ec;
unsigned long long cr2;
- } x64;
+ } __attribute__((packed)) x64;
} *r = (typeof(r))h->d;
unsigned int ec;
unsigned long long cr2;
@@ -4945,7 +4945,7 @@ void hvm_vmexit_process(struct record_in
struct {
unsigned int exit_reason;
unsigned long long rip;
- } x64;
+ } __attribute__((packed)) x64;
struct {
unsigned int exit_reason;
unsigned int eip;
@@ -6788,7 +6788,7 @@ void sched_runstate_process(struct pcpu_
struct {
unsigned vcpu:16, dom:16;
unsigned long long p1, p2;
- } * r = (typeof(r))ri->d;
+ } __attribute__((packed)) * r = (typeof(r))ri->d;
union {
unsigned int event;
struct {
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] xenalyze: add missing newline to fprintf
2010-12-14 17:46 [PATCH] xenalyze: use packed structs with u64 members Olaf Hering
@ 2010-12-14 17:50 ` Olaf Hering
2010-12-16 10:35 ` [PATCH] xenalyze: use correct sizeof argument when counting extra_data Olaf Hering
1 sibling, 0 replies; 3+ messages in thread
From: Olaf Hering @ 2010-12-14 17:50 UTC (permalink / raw)
To: George Dunlap; +Cc: xen-devel
Add missing newline to fprintf.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
--- xenalyze.hg.orig/xenalyze.c
+++ xenalyze.hg/xenalyze.c
@@ -4980,7 +4980,7 @@ void hvm_vmexit_process(struct record_in
v->guest_paging_levels = 4;
}
if(!is_valid_addr64(r->x64.rip))
- fprintf(warn, "%s: invalid va %llx",
+ fprintf(warn, "%s: invalid va %llx\n",
__func__, r->x64.rip);
h->rip = r->x64.rip;
h->exit_reason = r->x64.exit_reason;
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] xenalyze: use correct sizeof argument when counting extra_data
2010-12-14 17:46 [PATCH] xenalyze: use packed structs with u64 members Olaf Hering
2010-12-14 17:50 ` [PATCH] xenalyze: add missing newline to fprintf Olaf Hering
@ 2010-12-16 10:35 ` Olaf Hering
1 sibling, 0 replies; 3+ messages in thread
From: Olaf Hering @ 2010-12-16 10:35 UTC (permalink / raw)
To: George Dunlap; +Cc: xen-devel
tracedata are units of u32, so make sure the sizeof() gets the correct
argument.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
--- xenalyze.hg.orig/xenalyze.c
+++ xenalyze.hg/xenalyze.c
@@ -3588,12 +3588,12 @@ void hvm_mmio_assist_process(struct reco
if(mevt.x64) {
e->gpa = r->x64.gpa;
e->data = r->x64.data;
- if(ri->extra_words*(sizeof(unsigned long))==sizeof(r->x64))
+ if(ri->extra_words*(sizeof(unsigned int))==sizeof(r->x64))
e->mmio_data_valid=1;
} else {
e->gpa = r->x32.gpa;
e->data = r->x32.data;
- if(ri->extra_words*(sizeof(unsigned long))==sizeof(r->x32))
+ if(ri->extra_words*(sizeof(unsigned int))==sizeof(r->x32))
e->mmio_data_valid=1;
}
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-12-16 10:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-14 17:46 [PATCH] xenalyze: use packed structs with u64 members Olaf Hering
2010-12-14 17:50 ` [PATCH] xenalyze: add missing newline to fprintf Olaf Hering
2010-12-16 10:35 ` [PATCH] xenalyze: use correct sizeof argument when counting extra_data Olaf Hering
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).