Re: Why trap interrupts with GIC v3 on arm64?

2018-10-22 Thread posk . devel
On Sunday, October 21, 2018 at 4:57:58 AM UTC-7, J. Kiszka wrote: > On 19.10.18 17:18, posk.de...@gmail.com wrote: > > Hello! > > > > GICv3 on ARM provides the ability to route interrupts to specific cores, > > see e.g. "Affinity routing and assignment" here: > >

x86 architecture system hangs on sudo tools/jailhouse cell destroy apic-demo, Broke affinity for irq 125, smpboot: CPU 3 is now offline

2018-10-22 Thread Ashok kumar
Hi, I am using x86 i3 core processor I have added void vcpu_park(void) { #ifdef CONFIG_CRASH_CELL_ON_PANIC - if (this_cpu_data()->failed) { + if (this_cpu_public()->failed) { this_cpu_data()->vmcb.rip = 0; return; } void vcpu_park(void)

Re: [PATCH] x86: Fix CONFIG_CRASH_CELL_ON_PANIC

2018-10-22 Thread Ashok kumar
Hi, I have added void vcpu_park(void) { #ifdef CONFIG_CRASH_CELL_ON_PANIC - if (this_cpu_data()->failed) { + if (this_cpu_public()->failed) { this_cpu_data()->vmcb.rip = 0; return; } void vcpu_park(void) { #ifdef

PCI INTA intr for AHCI host controller in non-root cell

2018-10-22 Thread minskey guo
I am trying to pass AHCI controller to non-root cell on Intel NUC7i5D. Should i pass IOAPIC to non-root cell as well or something else to achieve that goal ? My hardware is: 00:17.0 SATA controller: Intel Corporation Sunrise Point-LP SATA Controller [AHCI mode] (rev 21) (prog-if 01 [AHCI

Re: Run Linux in non-root cell on NUC

2018-10-22 Thread minskey guo
On Monday, October 22, 2018 at 2:16:17 PM UTC+8, J. Kiszka wrote: > On 22.10.18 06:30, minskey guo wrote: > > On Monday, October 22, 2018 at 9:46:30 AM UTC+8, minskey guo wrote: > >> On Sunday, October 21, 2018 at 7:34:12 PM UTC+8, J. Kiszka wrote: > >>> On 19.10.18 11:19, Jan Kiszka wrote: >