All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2019-08-09 15:52:45 to 2019-08-09 16:03:53 UTC [more...]

[RFC PATCH v6 00/92] VM introspection
 2019-08-09 16:00 UTC  (143+ messages)
` [RFC PATCH v6 01/92] kvm: introduce KVMI (VM introspection subsystem)
` [RFC PATCH v6 02/92] kvm: introspection: add basic ioctls (hook/unhook)
` [RFC PATCH v6 03/92] kvm: introspection: add permission access ioctls
` [RFC PATCH v6 04/92] kvm: introspection: add the read/dispatch message function
` [RFC PATCH v6 05/92] kvm: introspection: add KVMI_GET_VERSION
` [RFC PATCH v6 06/92] kvm: introspection: add KVMI_CONTROL_CMD_RESPONSE
` [RFC PATCH v6 07/92] kvm: introspection: honor the reply option when handling the KVMI_GET_VERSION command
` [RFC PATCH v6 08/92] kvm: introspection: add KVMI_CHECK_COMMAND and KVMI_CHECK_EVENT
` [RFC PATCH v6 09/92] kvm: introspection: add KVMI_GET_GUEST_INFO
` [RFC PATCH v6 10/92] kvm: introspection: add KVMI_CONTROL_VM_EVENTS
` [RFC PATCH v6 11/92] kvm: introspection: add vCPU related data
` [RFC PATCH v6 12/92] kvm: introspection: add a jobs list to every introspected vCPU
` [RFC PATCH v6 13/92] kvm: introspection: make the vCPU wait even when its jobs list is empty
` [RFC PATCH v6 14/92] kvm: introspection: handle introspection commands before returning to guest
` [RFC PATCH v6 15/92] kvm: introspection: handle vCPU related introspection commands
` [RFC PATCH v6 16/92] kvm: introspection: handle events and event replies
` [RFC PATCH v6 17/92] kvm: introspection: introduce event actions
` [RFC PATCH v6 18/92] kvm: introspection: add KVMI_EVENT_UNHOOK
` [RFC PATCH v6 19/92] kvm: introspection: add KVMI_EVENT_CREATE_VCPU
` [RFC PATCH v6 20/92] kvm: introspection: add KVMI_GET_VCPU_INFO
` [RFC PATCH v6 21/92] kvm: page track: add track_create_slot() callback
` [RFC PATCH v6 22/92] kvm: x86: provide all page tracking hooks with the guest virtual address
` [RFC PATCH v6 23/92] kvm: page track: add support for preread, prewrite and preexec
` [RFC PATCH v6 24/92] kvm: x86: wire in the preread/prewrite/preexec page trackers
` [RFC PATCH v6 25/92] kvm: x86: intercept the write access on sidt and other emulated instructions
` [RFC PATCH v6 26/92] kvm: x86: add kvm_mmu_nested_pagefault()
` [RFC PATCH v6 27/92] kvm: introspection: use page track
` [RFC PATCH v6 28/92] kvm: x86: consult the page tracking from kvm_mmu_get_page() and __direct_map()
` [RFC PATCH v6 29/92] kvm: introspection: add KVMI_CONTROL_EVENTS
` [RFC PATCH v6 30/92] kvm: x86: add kvm_spt_fault()
` [RFC PATCH v6 31/92] kvm: introspection: add KVMI_EVENT_PF
` [RFC PATCH v6 32/92] kvm: introspection: add KVMI_GET_PAGE_ACCESS
` [RFC PATCH v6 33/92] kvm: introspection: add KVMI_SET_PAGE_ACCESS
` [RFC PATCH v6 34/92] Documentation: Introduce EPT based Subpage Protection
` [RFC PATCH v6 35/92] KVM: VMX: Add control flags for SPP enabling
` [RFC PATCH v6 36/92] KVM: VMX: Implement functions for SPPT paging setup
` [RFC PATCH v6 37/92] KVM: VMX: Introduce SPP access bitmap and operation functions
` [RFC PATCH v6 38/92] KVM: VMX: Add init/set/get functions for SPP
` [RFC PATCH v6 39/92] KVM: VMX: Introduce SPP user-space IOCTLs
` [RFC PATCH v6 40/92] KVM: VMX: Handle SPP induced vmexit and page fault
` [RFC PATCH v6 41/92] KVM: MMU: Enable Lazy mode SPPT setup
` [RFC PATCH v6 42/92] KVM: MMU: Handle host memory remapping and reclaim
` [RFC PATCH v6 43/92] kvm: introspection: add KVMI_CONTROL_SPP
` [RFC PATCH v6 44/92] kvm: introspection: extend the internal database of tracked pages with write_bitmap info
` [RFC PATCH v6 45/92] kvm: introspection: add KVMI_GET_PAGE_WRITE_BITMAP
` [RFC PATCH v6 46/92] kvm: introspection: add KVMI_SET_PAGE_WRITE_BITMAP
` [RFC PATCH v6 47/92] kvm: introspection: add KVMI_READ_PHYSICAL and KVMI_WRITE_PHYSICAL
` [RFC PATCH v6 48/92] kvm: add kvm_vcpu_kick_and_wait()
` [RFC PATCH v6 49/92] kvm: introspection: add KVMI_PAUSE_VCPU and KVMI_EVENT_PAUSE_VCPU
` [RFC PATCH v6 50/92] kvm: introspection: add KVMI_GET_REGISTERS
` [RFC PATCH v6 51/92] kvm: introspection: add KVMI_SET_REGISTERS
` [RFC PATCH v6 52/92] kvm: introspection: add KVMI_GET_CPUID
` [RFC PATCH v6 53/92] kvm: introspection: add KVMI_INJECT_EXCEPTION + KVMI_EVENT_TRAP
` [RFC PATCH v6 54/92] kvm: introspection: add KVMI_CONTROL_CR and KVMI_EVENT_CR
` [RFC PATCH v6 55/92] kvm: introspection: add KVMI_CONTROL_MSR and KVMI_EVENT_MSR
` [RFC PATCH v6 56/92] kvm: x86: block any attempt to disable MSR interception if tracked by introspection
` [RFC PATCH v6 57/92] kvm: introspection: add KVMI_GET_XSAVE
` [RFC PATCH v6 58/92] kvm: introspection: add KVMI_GET_MTRR_TYPE
` [RFC PATCH v6 59/92] kvm: introspection: add KVMI_EVENT_XSETBV
` [RFC PATCH v6 60/92] kvm: x86: add kvm_arch_vcpu_set_guest_debug()
` [RFC PATCH v6 61/92] kvm: introspection: add KVMI_EVENT_BREAKPOINT
` [RFC PATCH v6 62/92] kvm: introspection: add KVMI_EVENT_HYPERCALL
` [RFC PATCH v6 63/92] kvm: introspection: add KVMI_EVENT_DESCRIPTOR
` [RFC PATCH v6 64/92] kvm: introspection: add single-stepping
` [RFC PATCH v6 65/92] kvm: introspection: add KVMI_EVENT_SINGLESTEP
` [RFC PATCH v6 66/92] kvm: introspection: add custom input when single-stepping a vCPU
` [RFC PATCH v6 67/92] kvm: introspection: use single stepping on unimplemented instructions
` [RFC PATCH v6 68/92] kvm: x86: emulate a guest page table walk on SPT violations due to A/D bit updates
` [RFC PATCH v6 69/92] kvm: x86: keep the page protected if tracked by the introspection tool
` [RFC PATCH v6 70/92] kvm: x86: filter out access rights only when "
` [RFC PATCH v6 71/92] mm: add support for remote mapping
` [RFC PATCH v6 72/92] kvm: introspection: add memory map/unmap support on the guest side
` [RFC PATCH v6 73/92] kvm: introspection: use remote mapping
` [RFC PATCH v6 74/92] kvm: x86: do not unconditionally patch the hypercall instruction during emulation
` [RFC PATCH v6 75/92] kvm: x86: disable gpa_available optimization in emulator_read_write_onepage()
` [RFC PATCH v6 76/92] kvm: x86: disable EPT A/D bits if introspection is present
` [RFC PATCH v6 77/92] kvm: introspection: add trace functions
` [RFC PATCH v6 78/92] kvm: x86: add tracepoints for interrupt and exception injections
` [RFC PATCH v6 79/92] kvm: x86: emulate movsd xmm, m64
` [RFC PATCH v6 80/92] kvm: x86: emulate movss xmm, m32
` [RFC PATCH v6 81/92] kvm: x86: emulate movq xmm, m64
` [RFC PATCH v6 82/92] kvm: x86: emulate movq r, xmm
` [RFC PATCH v6 83/92] kvm: x86: emulate movd xmm, m32
` [RFC PATCH v6 84/92] kvm: x86: enable the half part of movss, movsd, movups
` [RFC PATCH v6 85/92] kvm: x86: emulate lfence
` [RFC PATCH v6 86/92] kvm: x86: emulate xorpd xmm2/m128, xmm1
` [RFC PATCH v6 87/92] kvm: x86: emulate xorps xmm/m128, xmm
` [RFC PATCH v6 88/92] kvm: x86: emulate fst/fstp m64fp
` [RFC PATCH v6 89/92] kvm: x86: make lock cmpxchg r, r/m atomic
` [RFC PATCH v6 90/92] kvm: x86: emulate lock cmpxchg8b atomically
` [RFC PATCH v6 91/92] kvm: x86: emulate lock cmpxchg16b m128
` [RFC PATCH v6 92/92] kvm: x86: fallback to the single-step on multipage CMPXCHG emulation

[Qemu-arm] [PATCH-for-4.2 v8 0/9] ARM virt: ACPI memory hotplug support
 2019-08-09 16:02 UTC  (5+ messages)
` [Qemu-arm] [PATCH-for-4.2 v8 7/9] hw/arm/virt-acpi-build: Add PC-DIMM in SRAT
  ` [Qemu-arm] [Qemu-devel] "
    `  "

[PATCH v4 0/6] Remove x86-specific code from generic headers
 2019-08-09 16:02 UTC  (4+ messages)

[Qemu-devel] [PULL 00/22] target-arm queue
 2019-08-09 16:02 UTC  (5+ messages)
` [Qemu-devel] [PULL 09/22] target/arm: Implement ARMv8.5-CondM

[PATCH] perf trace: Fix segmentation fault when access syscall info
 2019-08-09 16:03 UTC  (4+ messages)

[PATCH v19 00/15] arm64: untag user pointers passed to the kernel
 2019-08-09 16:03 UTC  (5+ messages)
` [PATCH v19 04/15] mm: untag user pointers passed to memory syscalls

[Buildroot] [PATCH 1/5] package/python-numpy: fix occasional build and run-time failure with lapack
 2019-08-09 16:03 UTC  (7+ messages)
` [Buildroot] [PATCH 2/5] package/liblapack: add liblapack as virtual package with lapack and clapack as providers

[LTP] [PATCH v3 0/5] net/route: rewrite route-change-{dst, gw, if} into new API
 2019-08-09 16:02 UTC  (6+ messages)
` [LTP] [PATCH v3 4/5] network/route: Rewrite route-change-gw "

[PATCH v4 0/3] DCMI bridge support
 2019-08-09 16:01 UTC  (4+ messages)
` [PATCH v4 1/3] media: stm32-dcmi: improve sensor subdev naming

[Qemu-devel] [PATCH v3 00/29] Tame a few "touch this, recompile the world" headers
 2019-08-09 16:00 UTC  (5+ messages)
` [Qemu-devel] [PATCH v3 20/29] Include qemu/main-loop.h less

[PATCH RFC v1 1/2] rcu/tree: Add basic support for kfree_rcu batching
 2019-08-09 16:01 UTC  (6+ messages)
` [PATCH RFC v1 2/2] rcuperf: Add kfree_rcu performance Tests

[Qemu-devel] [PATCH v2 0/7] backup improvements
 2019-08-09 15:59 UTC  (3+ messages)
` [Qemu-devel] [PATCH v2 6/7] block/backup: teach backup_cow_with_bounce_buffer to copy more at once

[U-Boot] Booting Linux kernel on x86_64
 2019-08-09 16:00 UTC  (2+ messages)

[PATCH v2 0/2] Lookup PCS offset, and cleanup hex formatting
 2019-08-09 16:00 UTC  (2+ messages)

[RFC PATCH v4 0/9] printk: new ringbuffer implementation
 2019-08-09 16:00 UTC  (13+ messages)
` [RFC PATCH v4 9/9] printk: use a "

[Buildroot] [PATCH 1/1] package/postgresql: security bump version to 11.5
 2019-08-09 15:59 UTC 

[PATCH v2 0/9] Exynos Adaptive Supply Voltage support
 2019-08-09 15:58 UTC  (6+ messages)

[Qemu-riscv] [PATCH 0/3] decodetree improvements
 2019-08-09 15:57 UTC  (6+ messages)
` [Qemu-riscv] [PATCH 1/3] decodetree: Allow !function with no input bits
  ` [Qemu-devel] "
      ` [Qemu-arm] "

[PATCH] dpaa2-ethsw: move the DPAA2 Ethernet Switch driver out of staging
 2019-08-09 15:56 UTC 

[Qemu-devel] [PATCH v7 0/9] NBD reconnect
 2019-08-09 15:56 UTC  (4+ messages)
` [Qemu-devel] [PATCH v7 7/9] qemu/units: add SI decimal units

[PATCH v3 00/21] Common patches from downstream development
 2019-08-09 15:56 UTC  (8+ messages)
` [PATCH v3 20/21] ARM: dts: imx6ull-colibri: Add touchscreen used with Eval Board
` [PATCH v3 21/21] ARM: dts: imx7-colibri: Add UHS support to eval board

[Qemu-devel] [PATCH v1 0/2] docker DEF_TARGET_LIST cleanup
 2019-08-09 15:55 UTC  (3+ messages)
` [Qemu-devel] [PATCH v1 1/2] tests/docker: move DEF_TARGET_LIST setting to common.rc

[PATCH v5 0/3] Enable ACPI-defined peripherals on i2c-piix4 SMBus
 2019-08-09 15:53 UTC  (4+ messages)

[arnd-playground:randconfig-5.3-rc2 32/347] fs/reiserfs/prints.o: warning: objtool: __reiserfs_error()+0x80: unreachable instruction
 2019-08-09 15:53 UTC  (2+ messages)

[PATCH] drm/panfrost: Implement per FD address spaces
 2019-08-09 15:53 UTC  (5+ messages)

[Xen-devel] [PATCH v2 0/2] x86/boot: cleanup
 2019-08-09 15:52 UTC  (5+ messages)
` [Xen-devel] [PATCH 3/2] x86/desc: Drop __HYPERVISOR_CS32

[PATCH 00/27] Add Renoir APU support
 2019-08-09 15:53 UTC  (19+ messages)
  ` [PATCH 10/27] drm/amdgpu: add renoir pci id
  ` [PATCH 11/27] drm/amdgpu: fix no interrupt issue for renoir emu
  ` [PATCH 12/27] drm/amdgpu: enable dce virtual ip module for Renoir
  ` [PATCH 13/27] drm/amdgpu: add asic funcs for renoir
  ` [PATCH 14/27] drm/amdgpu: set rlc "
  ` [PATCH 15/27] drm/amdgpu: add psp_v12_0 for renoir (v2)
  ` [PATCH 16/27] drm/amdgpu: add gfx golden settings "
  ` [PATCH 17/27] drm/amdgpu: add sdma golden settings for renoir
  ` [PATCH 18/27] drm/amdgpu: enable Renoir VCN firmware loading
  ` [PATCH 19/27] drm/amdgpu: enable Doorbell support for Renoir (v2)
  ` [PATCH 20/27] drm/amdgpu: add VCN2.0 to Renoir IP blocks
  ` [PATCH 21/27] drm/amdgpu: enable clock gating for renoir
  ` [PATCH 22/27] drm/amdgpu: enable power "
  ` [PATCH 23/27] drm/amdgpu: update lbpw "
  ` [PATCH 24/27] drm/amdgpu: set fw default loading by psp "
  ` [PATCH 25/27] drm/amdgpu: use direct loading on renoir vcn for the moment
  ` [PATCH 26/27] drm/amdgpu: skip mec2 jump table loading for renoir
  ` [PATCH 27/27] drm/amdgpu: flag renoir as experimental for now


This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.