From 90f9f79f986c68ffd9bb73d59d087096be1b7606 Mon Sep 17 00:00:00 2001 From: Isaku Yamahata Date: Fri, 16 May 2008 22:25:47 +0900 Subject: [PATCH] [IA64] compilation fix of 17669:d0817f08599a compilation fix of 17669:d0817f08599a. The change set needs the definition of do_get_pm_info(). Define the stub function. Signed-off-by: Isaku Yamahata --- xen/arch/ia64/xen/dom0_ops.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/xen/arch/ia64/xen/dom0_ops.c b/xen/arch/ia64/xen/dom0_ops.c index 4d00c68583..ee2c31109d 100644 --- a/xen/arch/ia64/xen/dom0_ops.c +++ b/xen/arch/ia64/xen/dom0_ops.c @@ -455,6 +455,16 @@ long arch_do_sysctl(xen_sysctl_t *op, XEN_GUEST_HANDLE(xen_sysctl_t) u_sysctl) return ret; } +int +do_get_pm_info(struct xen_sysctl_get_pmstat *op) +{ + /* + * For now just place holder to compile. + * xen/common/sysctl.c refers this function. + */ + return -ENOSYS; +} + static unsigned long dom0vp_ioremap(struct domain *d, unsigned long mpaddr, unsigned long size) { -- 2.30.2