kvmarm.lists.cs.columbia.edu archive mirror
 help / color / mirror / Atom feed
 messages from 2020-07-22 16:45:20 to 2020-08-05 18:26:16 UTC [more...]

[GIT PULL] KVM/arm64 updates for 5.9
 2020-08-05 17:57 UTC  (22+ messages)
` [PATCH 01/56] KVM: arm64: Enable Address Authentication at EL2 if available
` [PATCH 02/56] KVM: arm64: Allow ARM64_PTR_AUTH when ARM64_VHE=n
` [PATCH 03/56] KVM: arm64: Allow PtrAuth to be enabled from userspace on non-VHE systems
` [PATCH 04/56] KVM: arm64: Check HCR_EL2 instead of shadow copy to swap PtrAuth registers
` [PATCH 05/56] KVM: arm64: Simplify PtrAuth alternative patching
` [PATCH 06/56] KVM: arm64: Allow in-atomic injection of SPIs
` [PATCH 07/56] arm64: kvm: Remove kern_hyp_va from get_vcpu_ptr
` [PATCH 08/56] KVM: arm64: Drop the target_table[] indirection
` [PATCH 09/56] KVM: arm64: Tolerate an empty target_table list
` [PATCH 10/56] KVM: arm64: Move ACTLR_EL1 emulation to the sys_reg_descs array
` [PATCH 11/56] KVM: arm64: Remove target_table from exit handlers
` [PATCH 22/56] KVM: arm64: Split hyp/debug-sr.c to VHE/nVHE
` [PATCH 24/56] KVM: arm64: Duplicate hyp/timer-sr.c for VHE/nVHE
` [PATCH 34/56] KVM: arm64: Factor out stage 2 page table data from struct kvm
` [PATCH 40/56] KVM: arm64: debug: Drop useless vpcu parameter
` [PATCH 43/56] KVM: arm64: Move SP_EL1 to the system register array
` [PATCH 45/56] KVM: arm64: Move SPSR_EL1 "
` [PATCH 47/56] KVM: arm64: timers: Move timer registers to the sys_regs file
` [PATCH 49/56] KVM: arm64: Make nVHE ASLR conditional on RANDOMIZE_BASE
` [PATCH 50/56] KVM: arm64: Substitute RANDOMIZE_BASE for HARDEN_EL2_VECTORS
` [PATCH 56/56] KVM: arm64: Move S1PTW S2 fault logic out of io_mem_abort()

[PATCH v2 0/6] KVM: arm64: pvtime: Fixes and a new cap
 2020-08-05 15:37 UTC  (8+ messages)
` [PATCH v2 1/6] KVM: arm64: pvtime: steal-time is only supported when configured
` [PATCH v2 2/6] KVM: arm64: pvtime: Fix potential loss of stolen time
` [PATCH v2 3/6] KVM: arm64: Drop type input from kvm_put_guest
` [PATCH v2 4/6] KVM: arm64: pvtime: Fix stolen time accounting across migration
` [PATCH v2 5/6] KVM: Documentation: Minor fixups
` [PATCH v2 6/6] arm64/x86: KVM: Introduce steal-time cap

[PATCH 1/2] KVM: arm64: Restrict symbol aliasing to outside nVHE
 2020-08-05 14:37 UTC  (10+ messages)
` [PATCH 2/2] KVM: arm64: nVHE: Don't consume host SErrors with RAS

[kvm-unit-tests PATCH v3 00/10] arm/arm64: Add IPI/LPI/vtimer latency test
 2020-08-05 12:13 UTC  (19+ messages)
` [kvm-unit-tests PATCH v3 01/10] arm64: microbench: get correct ipi received num
` [kvm-unit-tests PATCH v3 02/10] arm64: microbench: Generalize ipi test names
` [kvm-unit-tests PATCH v3 03/10] arm64: microbench: gic: Add ipi latency test for gicv4.1 support kvm
` [kvm-unit-tests PATCH v3 04/10] arm64: its: Handle its command queue wrapping
` [kvm-unit-tests PATCH v3 05/10] arm64: microbench: its: Add LPI latency test
` [kvm-unit-tests PATCH v3 06/10] arm64: microbench: Allow each test to specify its running times
` [kvm-unit-tests PATCH v3 07/10] arm64: microbench: Add time limit for each individual test
` [kvm-unit-tests PATCH v3 08/10] arm64: microbench: Add vtimer latency test
` [kvm-unit-tests PATCH v3 09/10] arm64: microbench: Add test->post() to further process test results
` [kvm-unit-tests PATCH v3 10/10] arm64: microbench: Add timer_post() to get actual PPI latency

[RFC PATCH v1 0/3] put arm64 kvm_config on a diet
 2020-08-04 17:16 UTC  (11+ messages)
` [PATCH v1 1/3] arm64: allow de-selection of ThunderX PCI controllers
` [PATCH v1 2/3] arm64: gate the whole of pci-xgene on CONFIG_PCI_XGENE
` [PATCH v1 3/3] kernel/configs: don't include PCI_QUIRKS in KVM guest configs

Regarding Direct Injection of Virtual LPI in ARMv8 GICv4
 2020-08-04  8:52 UTC  (2+ messages)

[PATCH v4 0/3] Cortex-A77 erratum 1508412 workaround
 2020-08-03 19:31 UTC  (4+ messages)
` [PATCH v4 1/3] KVM: arm64: Print warning when cpu erratum can cause guests to deadlock
` [PATCH v4 2/3] arm64: Add part number for Arm Cortex-A77
` [PATCH v4 3/3] arm64: Add workaround for Arm Cortex-A77 erratum 1508412

[PATCH 00/20] KVM: arm64: Rewrite page-table code and fault handling
 2020-08-03 17:12 UTC  (28+ messages)
` [PATCH 01/20] KVM: arm64: Add stand-alone page-table walker infrastructure
` [PATCH 02/20] KVM: arm64: Add support for creating kernel-agnostic stage-1 page tables
` [PATCH 03/20] KVM: arm64: Use generic allocator for hyp stage-1 page-tables
` [PATCH 04/20] KVM: arm64: Add support for creating kernel-agnostic stage-2 page tables
` [PATCH 05/20] KVM: arm64: Add support for stage-2 map()/unmap() in generic page-table
` [PATCH 06/20] KVM: arm64: Convert kvm_phys_addr_ioremap() to generic page-table API
` [PATCH 07/20] KVM: arm64: Convert kvm_set_spte_hva() "
` [PATCH 08/20] KVM: arm64: Convert unmap_stage2_range() "
` [PATCH 09/20] KVM: arm64: Add support for stage-2 page-aging in generic page-table
` [PATCH 10/20] KVM: arm64: Convert page-aging and access faults to generic page-table API
` [PATCH 11/20] KVM: arm64: Add support for stage-2 write-protect in generic page-table
` [PATCH 12/20] KVM: arm64: Convert write-protect operation to generic page-table API
` [PATCH 13/20] KVM: arm64: Add support for stage-2 cache flushing in generic page-table
` [PATCH 14/20] KVM: arm64: Convert memslot cache-flushing code to generic page-table API
` [PATCH 15/20] KVM: arm64: Add support for relaxing stage-2 perms in generic page-table code
` [PATCH 16/20] KVM: arm64: Convert user_mem_abort() to generic page-table API
` [PATCH 17/20] KVM: arm64: Check the cookie instead of the pgd when modifying page-table
` [PATCH 18/20] KVM: arm64: Remove unused page-table code
` [PATCH 19/20] KVM: arm64: Remove unused 'pgd' field from 'struct kvm_s2_mmu'
` [PATCH 20/20] KVM: arm64: Don't constrain maximum IPA size based on host configuration

[PATCH v3 0/3] Cortex-A77 erratum 1508412 workaround
 2020-08-03 15:03 UTC  (8+ messages)
` [PATCH v3 3/3] arm64: Add workaround for Arm Cortex-A77 erratum 1508412

[GIT PULL] KVM/arm64 fixes for 5.8, take #4
 2020-07-31 11:25 UTC  (4+ messages)
` [PATCH 1/2] KVM: arm64: Prevent vcpu_has_ptrauth from generating OOL functions
` [PATCH 2/2] KVM: arm64: Don't inherit exec permission across page-table levels

[Question] the check of ioeventfd collision in kvm_*assign_ioeventfd_idx
 2020-07-31  8:21 UTC  (5+ messages)

[PATCH v2 0/4] KVM: arm64: Fixes to early stage-2 fault handling
 2020-07-30 15:06 UTC  (6+ messages)
` [PATCH v2 1/4] KVM: arm64: Rename kvm_vcpu_dabt_isextabt()
` [PATCH v2 2/4] KVM: arm64: Handle data and instruction external aborts the same way
` [PATCH v2 3/4] KVM: arm64: Don't skip cache maintenance for read-only memslots
` [PATCH v2 4/4] KVM: arm64: Move S1PTW S2 fault logic out of io_mem_abort()

[PATCH] KVM: arm: Add trace name for ARM_NISV
 2020-07-30 13:57 UTC  (2+ messages)

[PATCH] KVM: arm64: Ensure that all nVHE hyp code is in .hyp.text
 2020-07-30 13:52 UTC  (2+ messages)

[PATCH 0/9] arm64: Stolen time support
 2020-07-29  2:57 UTC  (4+ messages)

[PATCH kvm-unit-tests] arm64: Compile with -mno-outline-atomics
 2020-07-28 21:25 UTC  (2+ messages)

[PATCH 0/5] KVM: arm64: pvtime: Fixes and a new cap
 2020-07-28 13:29 UTC  (18+ messages)
` [PATCH 1/5] KVM: arm64: pvtime: steal-time is only supported when configured
` [PATCH 2/5] KVM: arm64: pvtime: Fix potential loss of stolen time
` [PATCH 3/5] KVM: arm64: pvtime: Fix stolen time accounting across migration
` [PATCH 4/5] KVM: Documentation minor fixups
` [PATCH 5/5] arm64/x86: KVM: Introduce steal-time cap

[RESEND PATCH] drivers: arm arch timer: Correct fault programming of CNTKCTL_EL1.EVNTI
 2020-07-28 11:59 UTC  (4+ messages)

[PATCH 0/2] Unify non-VHE ASLR features behind CONFIG_RANDOMIZE_BASE
 2020-07-28 11:04 UTC  (2+ messages)

[PATCH v2] KVM: arm64: Don't inherit exec permission across page-table levels
 2020-07-28  9:37 UTC  (3+ messages)

[PATCH v2 0/8] KVM: arm64: Support HW dirty log based on DBM
 2020-07-28  8:32 UTC  (8+ messages)

[PATCH v13 0/9] Enable ptp_kvm for arm64
 2020-07-28  1:07 UTC  (5+ messages)
` [PATCH v13 2/9] arm/arm64: KVM: Advertise KVM UID to guests via SMCCC

[kvm-unit-tests PATCH] arm64: Compile with -mno-outline-atomics for GCC >= 10
 2020-07-27 17:25 UTC  (7+ messages)

[RESEND RFC PATCH v1] arm64: kvm: flush tlbs by range in unmap_stage2_range function
 2020-07-27 17:12 UTC  (4+ messages)

kvm-unit-tests: Question about the "no interrupt when timer is disabled" case
 2020-07-27 11:27 UTC  (4+ messages)

[PATCH 0/3] KVM: arm64: Clean up memcache usage for page-table pages
 2020-07-27 10:38 UTC  (6+ messages)
` [PATCH 1/3] KVM: arm64: Don't free memcache pages in kvm_phys_addr_ioremap()
` [PATCH 2/3] KVM: arm64: Simplify mmu_topup_memory_cache()
` [PATCH 3/3] KVM: arm64: Remove mmu_free_memory_cache()

[PATCH 0/7] KVM: arm64: Fixes to early stage-2 fault handling
 2020-07-27 10:31 UTC  (16+ messages)
` [PATCH 1/7] KVM: arm64: Update comment when skipping guest MMIO access instruction
` [PATCH 2/7] KVM: arm64: Rename kvm_vcpu_dabt_isextabt()
` [PATCH 3/7] KVM: arm64: Handle data and instruction external aborts the same way
` [PATCH 4/7] KVM: arm64: Remove useless local variable
` [PATCH 5/7] KVM: arm64: Move 'invalid syndrome' logic out of io_mem_abort()
` [PATCH 6/7] KVM: arm64: Handle stage-2 faults on stage-1 page-table walks earlier
` [PATCH 7/7] KVM: arm64: Separate write faults on read-only memslots from MMIO

[PATCH] KVM: arm64: Prevent vcpu_has_ptrauth from generating OOL functions
 2020-07-23 15:59 UTC  (5+ messages)

[PATCH] KVM: arm64: Don't inherit exec permission across page-table levels
 2020-07-23 10:08 UTC  (3+ messages)

[PATCH v6 0/5] clean up redundant 'kvm_run' parameters
 2020-07-23  6:19 UTC  (3+ messages)
` [PATCH v6 3/5] KVM: PPC: clean up redundant kvm_run parameters in assembly

[PATCH 07/37] KVM: arm64: Separate SError detection from VAXorcism
 2020-07-23  0:59 UTC  (2+ messages)
` FW: "

[PATCH 0/9] Independent per-CPU data section for nVHE
 2020-07-22 16:44 UTC  (2+ messages)
` [PATCH 9/9] kvm: arm64: Remove unnecessary hyp mappings


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).