All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2019-08-09 15:42:00 to 2019-08-09 16:00:40 UTC [more...]

[RFC PATCH v6 00/92] VM introspection
 2019-08-09 16:00 UTC  (86+ 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

post-receive: pub/scm/linux/kernel/git/dhowells/linux-fs
 2019-08-09 16:00 UTC 

post-receive: pub/scm/linux/kernel/git/stable/linux-stable-rc
 2019-08-09 16:00 UTC 

[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 "

post-receive: pub/scm/linux/kernel/git/stable/linux-stable-rc
 2019-08-09 16:00 UTC 

post-receive: pub/scm/linux/kernel/git/stable/linux-stable-rc
 2019-08-09 16:00 UTC 

post-receive: pub/scm/linux/kernel/git/stable/stable-queue
 2019-08-09 15:59 UTC 

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

post-receive: pub/scm/linux/kernel/git/acme/linux
 2019-08-09 15:59 UTC 

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

post-receive: pub/scm/linux/kernel/git/stable/linux
 2019-08-09 15:59 UTC 

[Qemu-devel] [PATCH 0/3] decodetree improvements
 2019-08-09 15:57 UTC  (16+ messages)
` [Qemu-riscv] "
` [Qemu-devel] [PATCH 1/3] decodetree: Allow !function with no input bits
  ` [Qemu-riscv] "
` [Qemu-devel] [PATCH 2/3] decodetree: Suppress redundant declaration warnings
  ` [Qemu-riscv] "
` [Qemu-devel] [PATCH 3/3] target/riscv: Remove redundant declaration pragmas
  ` [Qemu-riscv] "

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

post-receive: pub/scm/linux/kernel/git/stable/linux
 2019-08-09 15:57 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

post-receive: pub/scm/linux/kernel/git/stable/linux
 2019-08-09 15:56 UTC 

[PATCH v3 00/21] Common patches from downstream development
 2019-08-09 15:56 UTC  (21+ messages)
` [PATCH v3 16/21] ARM: dts: imx6ull-colibri: Add watchdog
` [PATCH v3 17/21] ARM: dts: imx6ull: improve can templates
` [PATCH v3 18/21] ARM: dts: imx6ull-colibri: Add general wakeup key used on Colibri
` [PATCH v3 19/21] ARM: dts: imx6/7-colibri: switch dr_mode to otg
` [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

post-receive: pub/scm/linux/kernel/git/stable/linux
 2019-08-09 15:56 UTC 

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

post-receive: pub/scm/linux/kernel/git/stable/linux
 2019-08-09 15:56 UTC 

post-receive: pub/scm/linux/kernel/git/gfs2/linux-gfs2
 2019-08-09 15:53 UTC 

[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  (27+ messages)
  ` [PATCH 02/27] drm/amdgpu: add renoir asic_type enum
  ` [PATCH 03/27] drm/amdgpu: add renoir support for gpu_info and ip block setting
  ` [PATCH 04/27] drm/amdgpu: add soc15 common ip block support for renoir
  ` [PATCH 05/27] drm/amdgpu: add gmc v9 supports "
  ` [PATCH 06/27] drm/amdgpu: set fw load type "
  ` [PATCH 07/27] drm/amdgpu: add gfx support "
  ` [PATCH 08/27] drm/amdgpu: add sdma "
  ` [PATCH 09/27] drm/amdgpu: set ip blocks "
  ` [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

[PATCH] block: Fix __blkdev_direct_IO()
 2019-08-09 15:52 UTC  (5+ messages)

[PATCH v2] tomoyo: Don't check open/getattr permission on sockets
 2019-08-09 15:51 UTC  (2+ messages)

[PATCH v2 0/2] spi: add NPCM FIU controller driver
 2019-08-09 15:51 UTC  (7+ messages)
` [PATCH v2 2/2] spi: npcm-fiu: "

post-receive: pub/scm/linux/kernel/git/masahiroy/linux-kbuild
 2019-08-09 15:51 UTC 

[PATCH v3] KEYS: trusted: allow module init if TPM is inactive or deactivated
 2019-08-09 15:50 UTC  (3+ messages)

[PATCH 5.2 00/20] 5.2.6-stable review
 2019-08-09 15:49 UTC  (7+ messages)

[PATCH 5.2 00/56] 5.2.8-stable review
 2019-08-09 15:49 UTC  (5+ messages)

[GIT PULL] KVM/arm updates for 5.3-rc4
 2019-08-09 15:47 UTC  (4+ messages)

[PATCH] drm/amd/display: Fix a typo - amdpgu_dm --> amdgpu_dm
 2019-08-09 15:46 UTC  (2+ messages)

post-receive: pub/scm/linux/kernel/git/jaegeuk/f2fs
 2019-08-09 15:47 UTC 

[PATCH v4 0/2] [PATCH v2 0/6] sparsemem support for RISC-V
 2019-08-09 15:46 UTC  (7+ messages)
` [PATCH v4 2/2] RISC-V: Implement sparsemem

[Xen-devel] [PATCH v4 0/2] x86/xpti: Don't leak TSS-adjacent percpu data via Meltdown
 2019-08-09 15:46 UTC  (4+ messages)
` [Xen-devel] [PATCH v4 2/2] "

[patch net-next rfc 0/7] net: introduce alternative names for network interfaces
 2019-08-09 15:46 UTC  (6+ messages)
` [patch net-next rfc 3/7] net: rtnetlink: add commands to add and delete alternative ifnames

[PATCH] fanotify, inotify, dnotify, security: add security hook for fs notifications
 2019-08-09 15:44 UTC  (5+ messages)
      ` [Non-DoD Source] "

Kernel 5.0.21rt16 hangs
 2019-08-09 15:45 UTC 

[PATCH 02/10] vfs: syscall: Add move_mount(2) to move mounts around
 2019-08-09 15:44 UTC  (2+ messages)
` [PATCH] LSM: Disable move_mount() syscall when TOMOYO or AppArmor is enabled

post-receive: pub/scm/linux/kernel/git/jaegeuk/f2fs-tools
 2019-08-09 15:43 UTC 

[PATCH bpf 0/2] tools: bpftool: fix pinning error messages
 2019-08-09 15:43 UTC  (2+ messages)

[Bug 203979] New: kvm_spurious_fault in L1 when running a nested kvm instance on AMD i686-pae
 2019-08-09 15:43 UTC  (2+ messages)
` [Bug 203979] "

Continuing discussion on Handling persistent files (/etc/group)during BMC updates
 2019-08-09 15:43 UTC  (3+ messages)

post-receive: pub/scm/linux/kernel/git/gfs2/linux-gfs2
 2019-08-09 15:42 UTC 

[PATCH 1/4] drm/i915: Remove i915_gem_context_create_gvt()
 2019-08-09 15:41 UTC  (3+ messages)
` [PATCH 2/4] drm/i915/gt: Make deferred context allocation explicit
` [PATCH 3/4] drm/i915: Push the ring creation flags to the backend


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.