From: Wei Liu Date: Fri, 17 Aug 2018 10:19:42 +0000 (+0100) Subject: x86/vm_event: put vm_event_fill_regs under CONFIG_HVM X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3402 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f0f14cc27744ad65c08a2a9b594c9048d289405c;p=xen.git x86/vm_event: put vm_event_fill_regs under CONFIG_HVM Ideally the HVM specific part of VM event should be moved into hvm/ at some point, but this will do for now. Signed-off-by: Wei Liu Acked-by: Razvan Cojocaru --- diff --git a/xen/arch/x86/vm_event.c b/xen/arch/x86/vm_event.c index f91aadebea..a2e470a65b 100644 --- a/xen/arch/x86/vm_event.c +++ b/xen/arch/x86/vm_event.c @@ -124,6 +124,7 @@ void vm_event_monitor_next_interrupt(struct vcpu *v) void vm_event_fill_regs(vm_event_request_t *req) { +#ifdef CONFIG_HVM const struct cpu_user_regs *regs = guest_cpu_user_regs(); struct segment_register seg; struct hvm_hw_cpu ctxt; @@ -177,6 +178,7 @@ void vm_event_fill_regs(vm_event_request_t *req) hvm_get_segment_register(curr, x86_seg_cs, &seg); req->data.regs.x86.cs_arbytes = seg.attr; +#endif } void vm_event_emulate_check(struct vcpu *v, vm_event_response_t *rsp)