aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/xen/xenoprof.h
diff options
context:
space:
mode:
authorGeorge Dunlap <george.dunlap@eu.citrix.com>2012-01-26 11:03:23 +0000
committerGeorge Dunlap <george.dunlap@eu.citrix.com>2012-01-26 11:03:23 +0000
commitb2341cfbf927ef33a48a1390e54d88a731524c94 (patch)
treeaf9ceeb8ff8bfb531d6e52754d4509e6bade38dc /xen/include/xen/xenoprof.h
parent8311d176ea6ff5b6251434d4eface16bc5490eb9 (diff)
downloadxen-b2341cfbf927ef33a48a1390e54d88a731524c94.tar.gz
xen-b2341cfbf927ef33a48a1390e54d88a731524c94.tar.bz2
xen-b2341cfbf927ef33a48a1390e54d88a731524c94.zip
xenoprof: Use uint64_t explicitly for internal calls
A recent changeset to make XENOPROF_ESCAPE_CODE consistent across 32- and 64-bit builds caused a build failure, because values were passed through functions as "unsigned long". Replace these with uint64_t explicitly. Also remove redundant function prototype from perfmon.c, now that it's in a header file. Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com> Committed-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'xen/include/xen/xenoprof.h')
-rw-r--r--xen/include/xen/xenoprof.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xen/include/xen/xenoprof.h b/xen/include/xen/xenoprof.h
index 845ea86011..e34ad20ab3 100644
--- a/xen/include/xen/xenoprof.h
+++ b/xen/include/xen/xenoprof.h
@@ -69,7 +69,7 @@ int is_passive(struct domain *d);
void free_xenoprof_pages(struct domain *d);
int xenoprof_add_trace(struct domain *d, struct vcpu *v,
- unsigned long eip, int mode);
+ uint64_t eip, int mode);
#define PMU_OWNER_NONE 0
#define PMU_OWNER_XENOPROF 1
@@ -78,7 +78,7 @@ int acquire_pmu_ownship(int pmu_ownership);
void release_pmu_ownship(int pmu_ownership);
void xenoprof_log_event(struct vcpu *vcpu,
- struct cpu_user_regs * regs, unsigned long eip,
+ struct cpu_user_regs * regs, uint64_t eip,
int mode, int event);
#endif /* __XEN__XENOPROF_H__ */