提交 0692698c 编写于 作者: J Jan Beulich 提交者: Tony Luck

[IA64] xen_domu_defconfig: fix build issues/warnings

- drivers/xen/events.c did not compile
- xen_setup_hook caused a modpost section warning
- the use of u64 (instead of unsigned long long) together with a %llu
  in drivers/xen/balloon.c caused a compiler warning
Signed-off-by: NJan Beulich <jbeulich@novell.com>
Signed-off-by: NTony Luck <tony.luck@intel.com>
上级 f328ddc1
#ifndef _ASM_IA64_IDLE_H
#define _ASM_IA64_IDLE_H
static inline void enter_idle(void) { }
static inline void exit_idle(void) { }
#endif /* _ASM_IA64_IDLE_H */
...@@ -36,14 +36,9 @@ static inline int xen_irqs_disabled(struct pt_regs *regs) ...@@ -36,14 +36,9 @@ static inline int xen_irqs_disabled(struct pt_regs *regs)
return !(ia64_psr(regs)->i); return !(ia64_psr(regs)->i);
} }
static inline void xen_do_IRQ(int irq, struct pt_regs *regs) static inline void handle_irq(int irq, struct pt_regs *regs)
{ {
struct pt_regs *old_regs;
old_regs = set_irq_regs(regs);
irq_enter();
__do_IRQ(irq); __do_IRQ(irq);
irq_exit();
set_irq_regs(old_regs);
} }
#define irq_ctx_init(cpu) do { } while (0) #define irq_ctx_init(cpu) do { } while (0)
......
...@@ -54,8 +54,6 @@ END(startup_xen) ...@@ -54,8 +54,6 @@ END(startup_xen)
#define isBP p3 // are we the Bootstrap Processor? #define isBP p3 // are we the Bootstrap Processor?
.text
GLOBAL_ENTRY(xen_setup_hook) GLOBAL_ENTRY(xen_setup_hook)
mov r8=XEN_PV_DOMAIN_ASM mov r8=XEN_PV_DOMAIN_ASM
(isBP) movl r9=xen_domain_type;; (isBP) movl r9=xen_domain_type;;
......
...@@ -513,7 +513,8 @@ static ssize_t show_target(struct sys_device *dev, struct sysdev_attribute *attr ...@@ -513,7 +513,8 @@ static ssize_t show_target(struct sys_device *dev, struct sysdev_attribute *attr
char *buf) char *buf)
{ {
return sprintf(buf, "%llu\n", return sprintf(buf, "%llu\n",
(u64)balloon_stats.target_pages << PAGE_SHIFT); (unsigned long long)balloon_stats.target_pages
<< PAGE_SHIFT);
} }
static ssize_t store_target(struct sys_device *dev, static ssize_t store_target(struct sys_device *dev,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册