All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2020-07-21 20:40:03 to 2020-07-21 21:17:30 UTC [more...]

[PATCH v9 00/84] VM introspection
 2020-07-21 21:09 UTC  (79+ messages)
` [PATCH v9 01/84] signal: export kill_pid_info()
` [PATCH v9 02/84] KVM: UAPI: add error codes used by the VM introspection code
` [PATCH v9 03/84] KVM: add kvm_vcpu_kick_and_wait()
` [PATCH v9 04/84] KVM: add kvm_get_max_gfn()
` [PATCH v9 05/84] KVM: doc: fix the hypercall numbering
` [PATCH v9 06/84] KVM: x86: add kvm_arch_vcpu_get_regs() and kvm_arch_vcpu_get_sregs()
` [PATCH v9 07/84] KVM: x86: add kvm_arch_vcpu_set_regs()
` [PATCH v9 08/84] KVM: x86: avoid injecting #PF when emulate the VMCALL instruction
` [PATCH v9 09/84] KVM: x86: add .bp_intercepted() to struct kvm_x86_ops
` [PATCH v9 10/84] KVM: x86: add .control_cr3_intercept() "
` [PATCH v9 11/84] KVM: x86: add .cr3_write_intercepted()
` [PATCH v9 12/84] KVM: x86: add .desc_ctrl_supported()
` [PATCH v9 13/84] KVM: svm: add support for descriptor-table exits
` [PATCH v9 14/84] KVM: x86: add .control_desc_intercept()
` [PATCH v9 15/84] KVM: x86: add .desc_intercepted()
` [PATCH v9 16/84] KVM: x86: export .msr_write_intercepted()
` [PATCH v9 17/84] KVM: x86: use MSR_TYPE_R, MSR_TYPE_W and MSR_TYPE_RW with AMD
` [PATCH v9 18/84] KVM: svm: pass struct kvm_vcpu to set_msr_interception()
` [PATCH v9 19/84] KVM: vmx: pass struct kvm_vcpu to the intercept msr related functions
` [PATCH v9 20/84] KVM: x86: add .control_msr_intercept()
` [PATCH v9 21/84] KVM: x86: vmx: use a symbolic constant when checking the exit qualifications
` [PATCH v9 23/84] KVM: x86: add .fault_gla()
` [PATCH v9 24/84] KVM: x86: add .spt_fault()
` [PATCH v9 25/84] KVM: x86: add .gpt_translation_fault()
` [PATCH v9 26/84] KVM: x86: add .control_singlestep()
` [PATCH v9 27/84] KVM: x86: export kvm_arch_vcpu_set_guest_debug()
` [PATCH v9 29/84] KVM: x86: export kvm_inject_pending_exception()
` [PATCH v9 30/84] KVM: x86: export kvm_vcpu_ioctl_x86_get_xsave()
` [PATCH v9 31/84] KVM: x86: export kvm_vcpu_ioctl_x86_set_xsave()
` [PATCH v9 32/84] KVM: x86: page track: provide all callbacks with the guest virtual address
` [PATCH v9 33/84] KVM: x86: page track: add track_create_slot() callback
` [PATCH v9 34/84] KVM: x86: page_track: add support for preread, prewrite and preexec
` [PATCH v9 36/84] KVM: x86: disable gpa_available optimization for fetch and page-walk SPT violations
` [PATCH v9 38/84] KVM: introspection: add hook/unhook ioctls
` [PATCH v9 39/84] KVM: introspection: add permission access ioctls
` [PATCH v9 40/84] KVM: introspection: add the read/dispatch message function
` [PATCH v9 41/84] KVM: introspection: add KVMI_GET_VERSION
` [PATCH v9 42/84] KVM: introspection: add KVMI_VM_CHECK_COMMAND and KVMI_VM_CHECK_EVENT
` [PATCH v9 43/84] KVM: introspection: add KVMI_VM_GET_INFO
` [PATCH v9 44/84] KVM: introspection: add KVMI_EVENT_UNHOOK
` [PATCH v9 45/84] KVM: introspection: add KVMI_VM_CONTROL_EVENTS
` [PATCH v9 46/84] KVM: introspection: add KVMI_VM_READ_PHYSICAL/KVMI_VM_WRITE_PHYSICAL
` [PATCH v9 47/84] KVM: introspection: add vCPU related data
` [PATCH v9 49/84] KVM: introspection: handle vCPU introspection requests
` [PATCH v9 50/84] KVM: introspection: handle vCPU commands
` [PATCH v9 51/84] KVM: introspection: add KVMI_VCPU_GET_INFO
` [PATCH v9 52/84] KVM: introspection: add KVMI_VCPU_PAUSE
` [PATCH v9 53/84] KVM: introspection: add KVMI_EVENT_PAUSE_VCPU
` [PATCH v9 54/84] KVM: introspection: add the crash action handling on the event reply
` [PATCH v9 55/84] KVM: introspection: add KVMI_VCPU_CONTROL_EVENTS
` [PATCH v9 56/84] KVM: introspection: add KVMI_VCPU_GET_REGISTERS
` [PATCH v9 57/84] KVM: introspection: add KVMI_VCPU_SET_REGISTERS
` [PATCH v9 58/84] KVM: introspection: add KVMI_VCPU_GET_CPUID
` [PATCH v9 59/84] KVM: introspection: add KVMI_EVENT_HYPERCALL
` [PATCH v9 60/84] KVM: introspection: add KVMI_EVENT_BREAKPOINT
` [PATCH v9 61/84] KVM: introspection: add cleanup support for vCPUs
` [PATCH v9 62/84] KVM: introspection: restore the state of #BP interception on unhook
` [PATCH v9 63/84] KVM: introspection: add KVMI_VM_CONTROL_CLEANUP
` [PATCH v9 64/84] KVM: introspection: add KVMI_VCPU_CONTROL_CR and KVMI_EVENT_CR
` [PATCH v9 66/84] KVM: introspection: add KVMI_VCPU_INJECT_EXCEPTION + KVMI_EVENT_TRAP
` [PATCH v9 67/84] KVM: introspection: add KVMI_VM_GET_MAX_GFN
` [PATCH v9 68/84] KVM: introspection: add KVMI_EVENT_XSETBV
` [PATCH v9 69/84] KVM: introspection: add KVMI_VCPU_GET_XCR
` [PATCH v9 70/84] KVM: introspection: add KVMI_VCPU_GET_XSAVE
` [PATCH v9 71/84] KVM: introspection: add KVMI_VCPU_SET_XSAVE
` [PATCH v9 72/84] KVM: introspection: add KVMI_VCPU_GET_MTRR_TYPE
` [PATCH v9 73/84] KVM: introspection: add KVMI_EVENT_DESCRIPTOR
` [PATCH v9 74/84] KVM: introspection: restore the state of descriptor-table register interception on unhook
` [PATCH v9 75/84] KVM: introspection: add KVMI_VCPU_CONTROL_MSR and KVMI_EVENT_MSR
` [PATCH v9 76/84] KVM: introspection: restore the state of MSR interception on unhook
` [PATCH v9 77/84] KVM: introspection: add KVMI_VM_SET_PAGE_ACCESS
` [PATCH v9 78/84] KVM: introspection: add KVMI_EVENT_PF
` [PATCH v9 79/84] KVM: introspection: extend KVMI_GET_VERSION with struct kvmi_features
` [PATCH v9 80/84] KVM: introspection: add KVMI_VCPU_CONTROL_SINGLESTEP
` [PATCH v9 81/84] KVM: introspection: add KVMI_EVENT_SINGLESTEP
` [PATCH v9 82/84] KVM: introspection: add KVMI_VCPU_TRANSLATE_GVA
` [PATCH v9 83/84] KVM: introspection: emulate a guest page table walk on SPT violations due to A/D bit updates
` [PATCH v9 84/84] KVM: x86: call the page tracking code on emulation failure

please try to avoid sending pullreqs late on release-candidate day
 2020-07-21 21:16 UTC  (2+ messages)

[RFC][CFT][PATCHSET] saner calling conventions for csum-and-copy primitives
 2020-07-21 21:16 UTC  (7+ messages)
` [PATCH 01/18] skb_copy_and_csum_bits(): don't bother with the last argument
  ` [PATCH 04/18] csum_and_copy_..._user(): pass 0xffffffff instead of 0 as initial sum

[dpdk-dev] [PATCH v1] lib/table: fix cache alignment issue
 2020-07-21 21:16 UTC  (5+ messages)
` [dpdk-dev] [PATCH v3] "

[PATCH ghak84 v4] audit: purge audit_log_string from the intra-kernel audit API
 2020-07-21 21:16 UTC  (8+ messages)

[PATCH v3 0/2] arm64: dts: meson: add support for WeTek Core 2
 2020-07-21 21:14 UTC  (4+ messages)

[PATCH 0/2] arm64: dts: meson: add more SM1 soundcards
 2020-07-21 21:14 UTC  (4+ messages)

[PATCH v2 0/3] GPU DVFS for Meson GXBB/GXL/GXM/G12A/G12B/SM1
 2020-07-21 21:14 UTC  (4+ messages)

[PATCH] arm64: dts: meson: update spifc node name on Khadas VIM3/VIM3L
 2020-07-21 21:14 UTC  (4+ messages)

[Bug 207383] New: [Regression] 5.7-rc: amdgpu/polaris11 gpf: amdgpu_atomic_commit_tail
 2020-07-21 21:16 UTC  (4+ messages)
` [Bug 207383] [Regression] 5.7 "

[PATCH] drm/msm/dp: Add DP compliance tests on Snapdragon Chipsets
 2020-07-21 21:15 UTC  (6+ messages)

[Buildroot] [PATCH 1/1] package/python-cython: bump version to 0.29.21
 2020-07-21 21:14 UTC 

[PATCH v2 1/2] iio: gyro: Add driver support for ADXRS290
 2020-07-21 21:14 UTC  (4+ messages)

[PATCH] PCI/ATS: PASID and PRI are only enumerated in PF devices
 2020-07-21 21:13 UTC  (2+ messages)

[Buildroot] [PATCH 1/1] package/putty: security bump version to 0.74
 2020-07-21 21:13 UTC  (2+ messages)

[PATCH v31 00/12] Multicolor Framework v31
 2020-07-21 21:11 UTC  (9+ messages)
` [PATCH v31 03/12] leds: lp50xx: Add the LP50XX family of the RGB LED driver
` [PATCH v31 06/12] leds: lp55xx: Add multicolor framework support to lp55xx

[Buildroot] [git commit branch/2020.02.x] package/putty: security bump version to 0.74
 2020-07-21 21:13 UTC 

Virtio in Xen on Arm (based on IOREQ concept)
 2020-07-21 21:12 UTC  (6+ messages)

[Buildroot] [git commit branch/2020.05.x] package/putty: security bump version to 0.74
 2020-07-21 21:13 UTC 

[Buildroot] [PATCH 1/2] package/exiv2: really disable samples
 2020-07-21 21:12 UTC  (4+ messages)
` [Buildroot] [PATCH 2/2] package/exiv2: drop unrecognized variable

[Buildroot] [git commit branch/2020.05.x] package/exiv2: drop unrecognized variable
 2020-07-21 21:12 UTC 

[Buildroot] [git commit branch/2020.02.x] package/exiv2: drop unrecognized variable
 2020-07-21 21:12 UTC 

[Buildroot] [git commit branch/2020.02.x] package/exiv2: really disable samples
 2020-07-21 21:11 UTC 

[Buildroot] [git commit branch/2020.05.x] package/exiv2: really disable samples
 2020-07-21 21:11 UTC 

[Bug 1888431] [NEW] v5.1.0-rc1 build fails on Mac OS X 10.11.6
 2020-07-21 21:04 UTC 

[linux-next:master 8758/10009] drivers/media/pci/meye/meye.c:1533:7: error: 'struct meye' has no member named 'pm_mchip_mode'; did you mean
 2020-07-21 21:11 UTC 

What do you want in a package manager?
 2020-07-21 21:10 UTC  (3+ messages)

[PATCH] xtensa: initialize_mmu.h: fix a duplicated word
 2020-07-21 21:10 UTC  (2+ messages)

[PATCH] pi_stress: limit the number of inversion groups to the number of online cores
 2020-07-21 21:10 UTC 

[RFC] btrfs: strategy to perform a rollback at boot time
 2020-07-21 21:09 UTC  (5+ messages)
` [PATCH] btrfs: allow more subvol= option

[SELinux-notebook PATCH v4] adds CIL policy with makefile
 2020-07-21 21:08 UTC  (6+ messages)
` [SELinux-notebook PATCH v5] "

[PATCH v7] ASoC: Intel: kbl_rt5663_rt5514_max98927: Fix kabylake_ssp_fixup function
 2020-07-21 21:07 UTC  (2+ messages)

incoming
 2020-07-21 21:06 UTC  (6+ messages)
` + fork-silence-a-false-postive-warning-in-__mmdrop.patch added to -mm tree
` + io-mapping-indicate-mapping-failure.patch "
` + io-mapping-indicate-mapping-failure-fix.patch "
` + mm-fix-kthread_use_mm-vs-tlb-invalidate.patch "
` + mm-fix-kthread_use_mm-vs-tlb-invalidate-fix.patch "

[PATCH] gpio: Retire the explicit gpio irqchip code
 2020-07-21 21:06 UTC  (2+ messages)

[PATCH v3] mm: Fix kthread_use_mm() vs TLB invalidate
 2020-07-21 21:06 UTC  (2+ messages)

[Buildroot] [PATCH RESEND 0/2] Use bzip2 for X11 PFC font compression
 2020-07-21 21:05 UTC  (3+ messages)
` [Buildroot] [PATCH v2] package/x11r7/xfont_font-*: make outputs reproducible

[dpdk-dev] [PATCH 0/9] python2 deprecation notice
 2020-07-21 21:05 UTC  (6+ messages)

[PATCH v2 0/3] kgdb: Honour the kprobe blacklist when setting breakpoints
 2020-07-21 21:04 UTC  (5+ messages)
` [PATCH v2 2/3] kgdb: Use the kprobe blocklist to limit single stepping

[Buildroot] [git commit branch/2020.05.x] package/x11r7/xfont_font-*: make outputs reproducible
 2020-07-21 21:04 UTC 

[Buildroot] [git commit branch/2020.02.x] package/x11r7/xfont_font-*: make outputs reproducible
 2020-07-21 21:04 UTC 

[SELinux-notebook PATCH] object_classes_permissions: describe bpf and perfmon capabilities
 2020-07-21 21:04 UTC  (3+ messages)

[PATCH v2] io-mapping: Indicate mapping failure
 2020-07-21 21:02 UTC  (5+ messages)

[PATCH] drm/amdkfd: Add thermal throttling SMI event
 2020-07-21 21:01 UTC 

[PATCH v4 00/75] x86: SEV-ES Guest Support
 2020-07-21 21:01 UTC  (4+ messages)
` [PATCH v4 51/75] x86/sev-es: Handle MMIO events

[PATCH] SPARC: backoff.h: delete a duplicated word
 2020-07-21 21:00 UTC  (2+ messages)

[PATCH] PARISC: elf.h: delete a duplicated word
 2020-07-21 21:00 UTC 

[PATCH] H8/300: flat.h: fix a duplicated word
 2020-07-21 21:00 UTC 

[PATCH] ARC: pgalloc.h: delete a duplicated word + other fixes
 2020-07-21 20:59 UTC  (2+ messages)

[PATCH v4 0/2] Add character device interface to remoteproc
 2020-07-21 20:56 UTC  (6+ messages)
` [PATCH v4 1/2] remoteproc: Add remoteproc character device interface

[PATCH net-next 00/29] l2tp: cleanup checkpatch.pl warnings
 2020-07-21 20:59 UTC  (3+ messages)
` [PATCH 05/29] l2tp: cleanup difficult-to-read line breaks

[PATCH 0/6] mx6cuboxi: enable OF_PLATDATA with MMC support
 2020-07-21 20:58 UTC  (3+ messages)
` [PATCH 6/6] mx6cuboxi: enable OF_PLATDATA

Filesystem Went Read Only During Raid-10 to Raid-6 Data Conversion
 2020-07-21 20:48 UTC  (10+ messages)

[PATCH] entry: check for fstat() errors after checkout
 2020-07-21 20:57 UTC  (4+ messages)

[PATCH RFC leds + net-next 0/3] Add support for LEDs on Marvell PHYs
 2020-07-21 20:54 UTC  (4+ messages)
` [PATCH RFC leds + net-next 1/3] leds: trigger: add support for LED-private device triggers

[PATCH] leds: multicolor: Fix camel case in documentation
 2020-07-21 20:52 UTC  (3+ messages)

[Buildroot] [PATCH 1/1] Makefile: add /etc/bash_completion.d to non-bash purge
 2020-07-21 20:51 UTC  (2+ messages)

[Buildroot] [git commit branch/2020.05.x] Makefile: add /etc/bash_completion.d to non-bash purge
 2020-07-21 20:51 UTC 

[Buildroot] [git commit branch/2020.02.x] Makefile: add /etc/bash_completion.d to non-bash purge
 2020-07-21 20:51 UTC 

[Buildroot] [PATCH 1/1] Makefile: delete debug libs when debug is not enabled
 2020-07-21 20:50 UTC  (2+ messages)

[PATCH] [PATCH] Firmware security information in SYSFS
 2020-07-21 20:50 UTC  (10+ messages)

[Buildroot] [git commit branch/2020.02.x] Makefile: delete debug libs when debug is not enabled
 2020-07-21 20:50 UTC 

[Buildroot] [git commit branch/2020.05.x] Makefile: delete debug libs when debug is not enabled
 2020-07-21 20:50 UTC 

[Buildroot] [PATCH 1/1] package/{openjdk, openjdk-bin}: bump to version 14.0.2+12
 2020-07-21 20:49 UTC 

[PATCH v2 1/3] usb: dwc3: core: Host wake up support from system suspend
 2020-07-21 20:49 UTC  (3+ messages)

[Buildroot] [PATCH 1/1] package/mbedtls: security bump to version 2.16.7
 2020-07-21 20:48 UTC  (2+ messages)

[RFC PATCH] net: dsa: qca8k: Add 802.1q VLAN support
 2020-07-21 20:48 UTC  (2+ messages)

[Buildroot] [git commit branch/2020.02.x] package/mbedtls: security bump to version 2.16.7
 2020-07-21 20:48 UTC 

[Buildroot] [git commit branch/2020.05.x] package/mbedtls: security bump to version 2.16.7
 2020-07-21 20:48 UTC 

[PATCH] ipvs: add prameter name to ip_vs_enqueue_expire_nodest_conns
 2020-07-21 20:47 UTC 

[PATCH bpf v3] xsk: do not discard packet when QUEUE_STATE_FROZEN
 2020-07-21 20:45 UTC  (2+ messages)

[PATCH 0/6] Add support of mt8183 APU
 2020-07-21 20:43 UTC  (5+ messages)
` [PATCH 5/6] remoteproc: mtk_apu: Don't try to use the APU local RAM

[PATCH 00/14] Refactor SDEI client driver
 2020-07-21 20:42 UTC  (11+ messages)
` [PATCH 01/14] drivers/firmware/sdei: Remove sdei_is_err()
` [PATCH 02/14] drivers/firmware/sdei: Common block for failing path in sdei_event_create()
` [PATCH 03/14] drivers/firmware/sdei: Dereference SDEI event parameter directly
` [PATCH 04/14] drivers/firmware/sdei: Rework sdei_init()
` [PATCH 05/14] drivers/firmware/sdei: Remove sdei_get_conduit()

Request for adding a "clean" merge strategy for a double-commit merge to deal with conflicts separately
 2020-07-21 20:43 UTC  (3+ messages)

[PATCH] irqdomain/treewide: Free firmware node after domain removal
 2020-07-21 20:26 UTC 

[Intel-gfx] [PATCH] drm/i915: Copy default modparams to mock i915_device
 2020-07-21 20:40 UTC 

[PATCH] spi: dw-dma: Fix Tx DMA channel working too fast
 2020-07-21 20:39 UTC 


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.