search for: xen_hvm_callback_vector

Displaying 7 results from an estimated 7 matches for "xen_hvm_callback_vector".

2017 May 19
0
[PATCH 03/10] xen: move interrupt handling for pv guests under CONFIG_XEN_PV umbrella
...N_PV ENTRY(xen_hypervisor_callback) pushl $-1 /* orig_ax = -1 => not a system call */ SAVE_ALL @@ -870,7 +870,9 @@ ENTRY(xen_failsafe_callback) _ASM_EXTABLE(3b, 8b) _ASM_EXTABLE(4b, 9b) ENDPROC(xen_failsafe_callback) +#endif /* CONFIG_XEN_PV */ +#ifdef CONFIG_XEN BUILD_INTERRUPT3(xen_hvm_callback_vector, HYPERVISOR_CALLBACK_VECTOR, xen_evtchn_do_upcall) diff --git a/arch/x86/entry/entry_64.S b/arch/x86/entry/entry_64.S index 607d72c4a485..cd47214ff402 100644 --- a/arch/x86/entry/entry_64.S +++ b/arch/x86/entry/entry_64.S @@ -902,7 +902,7 @@ ENTRY(do_softirq_own_stack) ret END(do_softirq_ow...
2018 Apr 23
3
[Bug 1247] New: Module crash due to broken count
...kb_internal+0x24/0xb0 [ 782.525635] napi_gro_receive+0xb8/0xe0 [ 782.525638] xennet_poll+0x676/0xb40 [xen_netfront] [ 782.525641] net_rx_action+0x139/0x3a0 [ 782.525644] __do_softirq+0xde/0x2b4 [ 782.525646] irq_exit+0xae/0xb0 [ 782.525651] xen_evtchn_do_upcall+0x2c/0x40 [ 782.525653] xen_hvm_callback_vector+0x7d/0x90 [ 782.525654] </IRQ> [ 782.525656] RIP: 0033:0x7fc9d11c91f9 [ 782.525656] RSP: 002b:00007ffebe8a2ea0 EFLAGS: 00000202 ORIG_RAX: ffffffffffffff0c [ 782.525658] RAX: 00000000ffffffff RBX: 0000000002609808 RCX: 0000000000000054 [ 782.525658] RDX: 0000000000000001 RSI: 00000000026...
2013 Aug 27
4
Is: Xen 4.2 and using 'xl' to save/restore is buggy with PVHVM Linux guests (v3.10 and v3.11 and presumarily earlier as well). Works with Xen 4.3 and Xen 4.4. Was:Re: FAILURE 3.11.0-rc7upstream(x86_64) 3.11.0-rc7upstream(i386)\: 2013-08-26 (tst001)
...b/0xc0 [ 21.851111] [<c10ef30c>] cpu_stopper_thread+0x8c/0x140 [ 21.851111] [<c10ef570>] ? stop_one_cpu_nowait+0x30/0x30 [ 21.851111] [<c108b611>] ? irq_exit+0x61/0xb0 [ 21.851111] [<c134ba50>] ? xen_evtchn_do_upcall+0x20/0x30 [ 21.851111] [<c15c3039>] ? xen_hvm_callback_vector+0x2d/0x32 [ 21.851111] [<c1077868>] ? default_spin_lock_flags+0x8/0x10 [ 21.851111] [<c15bb695>] ? _raw_spin_lock_irqsave+0x35/0x50 [ 21.851111] [<c10acec3>] smpboot_thread_fn+0x133/0x1b0 [ 21.851111] [<c10a4c6c>] kthread+0x9c/0xa0 [ 21.851111] [<c10acd90&g...
2012 Oct 04
49
[RFC 00/14] arm: implement ballooning and privcmd foreign mappings based on x86 PVH
This series implements ballooning for Xen on ARM and builds and Mukesh''s PVH privcmd stuff to implement foreign page mapping on ARM, replacing the old "HACK: initial (very hacky) XENMAPSPACE_gmfn_foreign" patch. The baseline is a bit complex, it is basically Stefano''s xenarm-forlinus branch (commit bbd6eb29214e) merged with Konrad''s linux-next-pvh branch
2012 Dec 13
7
HVM bug: system crashes after offline online a vcpu
..._handler_data+0x7/0x16 [ 44.065186] [<ffffffff81097e39>] ? handle_percpu_irq+0x3a/0x4f [ 44.065186] [<ffffffff8128f9ec>] ? __xen_evtchn_do_upcall_l2+0x131/0x1c0 [ 44.065186] [<ffffffff812913d3>] ? xen_evtchn_do_upcall+0x27/0x37 [ 44.065186] [<ffffffff8140081a>] ? xen_hvm_callback_vector+0x6a/0x70 [ 44.065186] <EOI> [ 44.065186] [<ffffffff81094b8f>] ? cpumask_next+0x17/0x19 [ 44.065186] [<ffffffff813eb75b>] ? start_secondary+0x184/0x1e2 [ 44.065186] [<ffffffff813eb757>] ? start_secondary+0x180/0x1e2 [ 44.065186] [<ffffffff813eb5d7>] ? se...
2017 May 19
13
[PATCH 00/10] paravirt: make amount of paravirtualization configurable
Today paravirtualization is a all-or-nothing game: either a kernel is compiled with no paravirtualization support at all, or it is supporting paravirtualized environments like Xen pv-guests or lguest additionally to some paravirtualized tuning for KVM, Hyperv, VMWare or Xen HVM-guests. As support of pv-guests requires quite intrusive pv-hooks (e.g. all access functions to page table entries,
2017 May 19
13
[PATCH 00/10] paravirt: make amount of paravirtualization configurable
Today paravirtualization is a all-or-nothing game: either a kernel is compiled with no paravirtualization support at all, or it is supporting paravirtualized environments like Xen pv-guests or lguest additionally to some paravirtualized tuning for KVM, Hyperv, VMWare or Xen HVM-guests. As support of pv-guests requires quite intrusive pv-hooks (e.g. all access functions to page table entries,