virtualization.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-08-12 02:02:49 to 2020-08-25 09:22:35 UTC [more...]

[PATCH v6 00/76] x86: SEV-ES Guest Support
 2020-08-25  9:22 UTC  (80+ messages)
` [PATCH v6 01/76] KVM: SVM: nested: Don't allocate VMCB structures on stack
` [PATCH v6 02/76] KVM: SVM: Add GHCB definitions
` [PATCH v6 03/76] KVM: SVM: Add GHCB Accessor functions
` [PATCH v6 04/76] KVM: SVM: Use __packed shorthand
` [PATCH v6 05/76] x86/cpufeatures: Add SEV-ES CPU feature
` [PATCH v6 06/76] x86/traps: Move pf error codes to <asm/trap_pf.h>
` [PATCH v6 07/76] x86/insn: Make inat-tables.c suitable for pre-decompression code
` [PATCH v6 08/76] x86/umip: Factor out instruction fetch
` [PATCH v6 09/76] x86/umip: Factor out instruction decoding
` [PATCH v6 10/76] x86/insn: Add insn_get_modrm_reg_off()
` [PATCH v6 11/76] x86/insn: Add insn_has_rep_prefix() helper
` [PATCH v6 12/76] x86/boot/compressed/64: Disable red-zone usage
` [PATCH v6 13/76] x86/boot/compressed/64: Add IDT Infrastructure
` [PATCH v6 14/76] x86/boot/compressed/64: Rename kaslr_64.c to ident_map_64.c
` [PATCH v6 15/76] x86/boot/compressed/64: Add page-fault handler
` [PATCH v6 16/76] x86/boot/compressed/64: Always switch to own page-table
` [PATCH v6 17/76] x86/boot/compressed/64: Don't pre-map memory in KASLR code
` [PATCH v6 18/76] x86/boot/compressed/64: Change add_identity_map() to take start and end
` [PATCH v6 19/76] x86/boot/compressed/64: Add stage1 #VC handler
` [PATCH v6 20/76] x86/boot/compressed/64: Call set_sev_encryption_mask earlier
` [PATCH v6 21/76] x86/boot/compressed/64: Check return value of kernel_ident_mapping_init()
` [PATCH v6 22/76] x86/boot/compressed/64: Add set_page_en/decrypted() helpers
` [PATCH v6 23/76] x86/boot/compressed/64: Setup GHCB Based VC Exception handler
` [PATCH v6 24/76] x86/boot/compressed/64: Unmap GHCB page before booting the kernel
` [PATCH v6 25/76] x86/sev-es: Add support for handling IOIO exceptions
` [PATCH v6 26/76] x86/fpu: Move xgetbv()/xsetbv() into separate header
` [PATCH v6 27/76] x86/sev-es: Add CPUID handling to #VC handler
` [PATCH v6 28/76] x86/idt: Move IDT to data segment
` [PATCH v6 29/76] x86/idt: Split idt_data setup out of set_intr_gate()
` [PATCH v6 30/76] x86/head/64: Install startup GDT
` [PATCH v6 31/76] x86/head/64: Setup MSR_GS_BASE before calling into C code
` [PATCH v6 32/76] x86/head/64: Load GDT after switch to virtual addresses
` [PATCH v6 33/76] x86/head/64: Load segment registers earlier
` [PATCH v6 34/76] x86/head/64: Switch to initial stack earlier
` [PATCH v6 35/76] x86/head/64: Make fixup_pointer() static inline
` [PATCH v6 36/76] x86/head/64: Load IDT earlier
` [PATCH v6 37/76] x86/head/64: Move early exception dispatch to C code
` [PATCH v6 38/76] x86/head/64: Set CR4.FSGSBASE early
` [PATCH v6 39/76] x86/sev-es: Add SEV-ES Feature Detection
` [PATCH v6 40/76] x86/sev-es: Print SEV-ES info into kernel log
` [PATCH v6 41/76] x86/sev-es: Compile early handler code into kernel image
` [PATCH v6 42/76] x86/sev-es: Setup early #VC handler
` [PATCH v6 43/76] x86/sev-es: Setup GHCB based boot "
` [PATCH v6 44/76] x86/sev-es: Setup per-cpu GHCBs for the runtime handler
` [PATCH v6 45/76] x86/sev-es: Allocate and Map IST stack for #VC handler
` [PATCH v6 46/76] x86/sev-es: Adjust #VC IST Stack on entering NMI handler
` [PATCH v6 47/76] x86/dumpstack/64: Add noinstr version of get_stack_info()
` [PATCH v6 48/76] x86/entry/64: Add entry code for #VC handler
` [PATCH v6 49/76] x86/sev-es: Add Runtime #VC Exception Handler
` [PATCH v6 50/76] x86/sev-es: Wire up existing #VC exit-code handlers
` [PATCH v6 51/76] x86/sev-es: Handle instruction fetches from user-space
` [PATCH v6 52/76] x86/sev-es: Handle MMIO events
` [PATCH v6 53/76] x86/sev-es: Handle MMIO String Instructions
` [PATCH v6 54/76] x86/sev-es: Handle MSR events
` [PATCH v6 55/76] x86/sev-es: Handle DR7 read/write events
` [PATCH v6 56/76] x86/sev-es: Handle WBINVD Events
` [PATCH v6 57/76] x86/sev-es: Handle RDTSC(P) Events
` [PATCH v6 58/76] x86/sev-es: Handle RDPMC Events
` [PATCH v6 59/76] x86/sev-es: Handle INVD Events
` [PATCH v6 60/76] x86/sev-es: Handle MONITOR/MONITORX Events
` [PATCH v6 61/76] x86/sev-es: Handle MWAIT/MWAITX Events
` [PATCH v6 62/76] x86/sev-es: Handle VMMCALL Events
` [PATCH v6 63/76] x86/sev-es: Handle #AC Events
` [PATCH v6 64/76] x86/sev-es: Handle #DB Events
` [PATCH v6 65/76] x86/paravirt: Allow hypervisor specific VMMCALL handling under SEV-ES
` [PATCH v6 66/76] x86/kvm: Add KVM "
` [PATCH v6 67/76] x86/vmware: Add VMware specific handling for VMMCALL "
` [PATCH v6 68/76] x86/realmode: Add SEV-ES specific trampoline entry point
` [PATCH v6 69/76] x86/realmode: Setup AP jump table
` [PATCH v6 70/76] x86/smpboot: Setup TSS for starting AP
` [PATCH v6 71/76] x86/head/64: Don't call verify_cpu() on starting APs
` [PATCH v6 72/76] x86/head/64: Rename start_cpu0
` [PATCH v6 73/76] x86/sev-es: Support CPU offline/online
` [PATCH v6 74/76] x86/sev-es: Handle NMI State
` [PATCH v6 75/76] x86/efi: Add GHCB mappings when SEV-ES is active
` [PATCH v6 76/76] x86/sev-es: Check required CPU features for SEV-ES

[PATCH AUTOSEL 5.7 05/54] drm/virtio: fix memory leak in virtio_gpu_cleanup_object()
 2020-08-24 16:35 UTC 

[PATCH AUTOSEL 5.8 06/63] drm/virtio: fix memory leak in virtio_gpu_cleanup_object()
 2020-08-24 16:34 UTC 

Is: virtio_gpu_object_shmem_init issues? Was:Re: upstream boot error: general protection fault in swiotlb_map
 2020-08-24 15:17 UTC  (3+ messages)

[PATCH 0/8] Convert the intel iommu driver to the dma-iommu api
 2020-08-24  0:04 UTC  (6+ messages)

[PATCH v5 00/75] x86: SEV-ES Guest Support
 2020-08-22 16:30 UTC  (4+ messages)

[PATCH] vdpa/mlx5: Avoid warnings about shifts on 32-bit platforms
 2020-08-21 23:24 UTC  (4+ messages)

[PATCH v5 0/6] mm / virtio-mem: support ZONE_MOVABLE
 2020-08-21 20:55 UTC  (11+ messages)
` [PATCH v5 1/6] mm/page_alloc: tweak comments in has_unmovable_pages()
` [PATCH v5 2/6] mm/page_isolation: exit early when pageblock is isolated in set_migratetype_isolate()
` [PATCH v5 3/6] mm/page_isolation: drop WARN_ON_ONCE() "
` [PATCH v5 4/6] mm/page_isolation: cleanup set_migratetype_isolate()
` [PATCH v5 5/6] virtio-mem: don't special-case ZONE_MOVABLE
` [PATCH v5 6/6] mm: document semantics of ZONE_MOVABLE

[PATCH] virtio-blk: Use kobj_to_dev() instead of container_of()
 2020-08-21 14:45 UTC  (4+ messages)

[PATCH v3 0/6] Add virtio-iommu built-in topology
 2020-08-21 13:15 UTC  (7+ messages)
` [PATCH v3 1/6] iommu/virtio: Move to drivers/iommu/virtio/
` [PATCH v3 2/6] iommu/virtio: Add topology helpers
` [PATCH v3 3/6] PCI: Add DMA configuration for virtual platforms
` [PATCH v3 4/6] iommu/virtio: Add topology definitions
` [PATCH v3 5/6] iommu/virtio: Support topology description in config space
` [PATCH v3 6/6] iommu/virtio: Enable x86 support

[PATCH v9 0/2] s390: virtio: let arch validate VIRTIO features
 2020-08-21 13:08 UTC  (7+ messages)
` [PATCH v9 1/2] virtio: let arch advertise guest's memory access restrictions
` [PATCH v9 2/2] s390: virtio: PV needs VIRTIO I/O device protection

[PATCH V2 0/3] vDPA: API for reporting IOVA range
 2020-08-21 12:59 UTC  (9+ messages)
` [PATCH V2 1/3] vdpa: introduce config op to get valid iova range
` [PATCH V2 2/3] vhost: vdpa: report "
` [PATCH V2 3/3] vdpa_sim: implement get_iova_range()
  ` [RFC PATCH] vdpa_sim: vdpasim_get_iova_range() can be static

[PATCH v1 0/5] mm/memory_hotplug: selective merging of system ram resources
 2020-08-21 10:34 UTC  (6+ messages)
` [PATCH v1 1/5] kernel/resource: make release_mem_region_adjustable() never fail
` [PATCH v1 2/5] kernel/resource: merge_system_ram_resources() to merge resources after hotplug
` [PATCH v1 3/5] virtio-mem: try to merge system ram resources
` [PATCH v1 4/5] xen/balloon: "
` [PATCH v1 5/5] hv_balloon: "

[PATCH v2 0/3] virtio-iommu on x86 and non-devicetree platforms
 2020-08-21  8:39 UTC  (4+ messages)
` [PATCH v2 1/3] iommu/virtio: Add topology description to virtio-iommu config space

[PATCH] crypto: virtio - don't use 'default m'
 2020-08-21  8:01 UTC 

[PATCH 2/2] drm/virtio: Remove open-coded commit-tail function
 2020-08-21  7:01 UTC  (3+ messages)

[PATCH AUTOSEL 4.4 08/10] virtio_ring: Avoid loop when vq is broken in virtqueue_poll
 2020-08-20  0:04 UTC 

[PATCH AUTOSEL 4.9 09/11] virtio_ring: Avoid loop when vq is broken in virtqueue_poll
 2020-08-20  0:03 UTC 

[PATCH AUTOSEL 4.14 11/13] virtio_ring: Avoid loop when vq is broken in virtqueue_poll
 2020-08-20  0:03 UTC 

[PATCH AUTOSEL 4.19 14/18] virtio_ring: Avoid loop when vq is broken in virtqueue_poll
 2020-08-20  0:02 UTC 

[PATCH AUTOSEL 5.4 17/22] virtio_ring: Avoid loop when vq is broken in virtqueue_poll
 2020-08-20  0:02 UTC 

[PATCH AUTOSEL 5.7 19/24] virtio_ring: Avoid loop when vq is broken in virtqueue_poll
 2020-08-20  0:01 UTC 

[PATCH AUTOSEL 5.8 21/27] virtio_ring: Avoid loop when vq is broken in virtqueue_poll
 2020-08-20  0:01 UTC 

[PATCH v3 03/18] virtio: Add get_shm_region method
 2020-08-19 22:19 UTC  (3+ messages)
` [PATCH v3 04/18] virtio: Implement get_shm_region for PCI transport
` [PATCH v3 05/18] virtio: Implement get_shm_region for MMIO transport

[PATCH v8 0/2] s390: virtio: let arch validate VIRTIO features
 2020-08-19  9:34 UTC  (8+ messages)
` [PATCH v8 1/2] "
` [PATCH v8 2/2] s390: virtio: PV needs VIRTIO I/O device protection

[PATCH v3 30/38] virtio_input: convert to LE accessors
 2020-08-19  5:59 UTC  (2+ messages)

[PATCH -next] vdpa: Remove duplicate include
 2020-08-19  2:55 UTC  (2+ messages)

[PATCH -next] vdpa/mlx5: Remove duplicate include
 2020-08-19  2:54 UTC  (2+ messages)

[PATCH] drm/qxl: Fix build errors
 2020-08-19  2:17 UTC  (3+ messages)

[PATCH V2 1/2] Add new flush_iotlb_range and handle freelists when using iommu_unmap_fast
 2020-08-18 16:15 UTC  (4+ messages)
` [PATCH V2 2/2] Handle init_iova_flush_queue failure in dma-iommu path

[PATCH v2 2/2] drm/virtio: set max_segment
 2020-08-18  9:20 UTC 

[PATCH 2/2] drm/virtio: set max_segment
 2020-08-18  7:48 UTC 

[PATCH 1/2] drm/virtio: fix unblank
 2020-08-18  7:25 UTC  (2+ messages)
` [PATCH 2/2] drm/virtio: drop virtio_gpu_output->enabled

[PATCH v6 0/3] Support virtio cross-device resources
 2020-08-18  5:59 UTC 

[PATCH 1/2] Add new flush_iotlb_range and handle freelists when using iommu_unmap_fast
 2020-08-17 21:19 UTC  (2+ messages)
` [PATCH 2/2] Handle init_iova_flush_queue failure in dma-iommu path

[PATCH v5 0/3] Support virtio cross-device resources
 2020-08-17 11:12 UTC  (5+ messages)
  `  "
    ` [virtio-dev] "

[PATCH] drm/qxl: Replace deprecated function in qxl_display
 2020-08-17 11:08 UTC  (2+ messages)

[PATCH][next] drm/virtio: Use struct_size() helper in kmalloc()
 2020-08-17 10:41 UTC  (2+ messages)

[PATCH] drm/virtio: fix unblank
 2020-08-17 10:19 UTC  (4+ messages)

[PATCH] drm/virtgpu: remove redundant assignments to width and height
 2020-08-17  9:16 UTC  (2+ messages)

[PATCH v4 0/6] x86/paravirt: cleanup after 32-bit PV removal
 2020-08-16 18:44 UTC  (7+ messages)
` [PATCH v4 1/6] x86/paravirt: remove 32-bit support from PARAVIRT_XXL
` [PATCH v4 2/6] x86/paravirt: cleanup paravirt macros
` [PATCH v4 5/6] x86/paravirt: remove set_pte_at pv-op
` [PATCH v4 6/6] x86/paravirt: avoid needless paravirt step clearing page table entries

[PATCH v4 0/4] Add a vhost RPMsg API
 2020-08-12 12:32 UTC  (6+ messages)
` [PATCH v4 4/4] vhost: add an "

[PATCH] x86/paravirt: Add missing noinstr to arch_local*() helpers
 2020-08-12  8:57 UTC  (9+ messages)

[PATCH 1/2] vdpa: ifcvf: return err when fail to request config irq
 2020-08-12  7:39 UTC  (2+ messages)

VDPA Debug/Statistics
 2020-08-12  2:09 UTC  (2+ messages)

vdpa: handling of VIRTIO_F_ACCESS_PLATFORM/VIRTIO_F_ORDER_PLATFORM
 2020-08-12  2:07 UTC  (2+ messages)

[PATCH 0/4] vDPA: API for reporting IOVA range
 2020-08-12  2:02 UTC  (8+ messages)
` [PATCH 1/4] vdpa: introduce config op to get valid iova range


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).