aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/hvm
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2013-07-17 08:49:39 +0200
committerJan Beulich <jbeulich@suse.com>2013-07-17 08:49:39 +0200
commite0b6459aa2236324213d8af38c44eceb6efcedc3 (patch)
tree52fd35011b62f250be6cc6533a818d8cd0cacc64 /xen/arch/x86/hvm
parent551b3c1227318a442c1c8fc121e63d7d36d5dd12 (diff)
downloadxen-e0b6459aa2236324213d8af38c44eceb6efcedc3.tar.gz
xen-e0b6459aa2236324213d8af38c44eceb6efcedc3.tar.bz2
xen-e0b6459aa2236324213d8af38c44eceb6efcedc3.zip
Viridian: cleanup
- functions used only locally should be static - constify parameters of dump functions Signed-off-by: Jan Beulich <jbeulich@suse.com> Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com> Reviewed-by: Yang Zhang <yang.z.zhang@intel.com>
Diffstat (limited to 'xen/arch/x86/hvm')
-rw-r--r--xen/arch/x86/hvm/viridian.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/xen/arch/x86/hvm/viridian.c b/xen/arch/x86/hvm/viridian.c
index a20ed59e45..d5462f2aae 100644
--- a/xen/arch/x86/hvm/viridian.c
+++ b/xen/arch/x86/hvm/viridian.c
@@ -111,7 +111,7 @@ int cpuid_viridian_leaves(unsigned int leaf, unsigned int *eax,
return 1;
}
-void dump_guest_os_id(struct domain *d)
+static void dump_guest_os_id(const struct domain *d)
{
gdprintk(XENLOG_INFO, "GUEST_OS_ID:\n");
gdprintk(XENLOG_INFO, "\tvendor: %x\n",
@@ -128,7 +128,7 @@ void dump_guest_os_id(struct domain *d)
d->arch.hvm_domain.viridian.guest_os_id.fields.build_number);
}
-void dump_hypercall(struct domain *d)
+static void dump_hypercall(const struct domain *d)
{
gdprintk(XENLOG_INFO, "HYPERCALL:\n");
gdprintk(XENLOG_INFO, "\tenabled: %x\n",
@@ -137,7 +137,7 @@ void dump_hypercall(struct domain *d)
(unsigned long)d->arch.hvm_domain.viridian.hypercall_gpa.fields.pfn);
}
-void dump_apic_assist(struct vcpu *v)
+static void dump_apic_assist(const struct vcpu *v)
{
gdprintk(XENLOG_INFO, "APIC_ASSIST[%d]:\n", v->vcpu_id);
gdprintk(XENLOG_INFO, "\tenabled: %x\n",
@@ -180,7 +180,7 @@ static void enable_hypercall_page(struct domain *d)
put_page_and_type(page);
}
-void initialize_apic_assist(struct vcpu *v)
+static void initialize_apic_assist(struct vcpu *v)
{
struct domain *d = v->domain;
unsigned long gmfn = v->arch.hvm_vcpu.viridian.apic_assist.fields.pfn;