All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2021-10-06 17:29:55 to 2021-10-06 17:44:08 UTC [more...]

[PATCH V2] Bluetooth: mgmt: Fix Experimental Feature Changed event
 2021-10-06 17:41 UTC  (3+ messages)

[PATCH v12 00/77] VM introspection
 2021-10-06 17:31 UTC  (118+ messages)
` [PATCH v12 01/77] KVM: UAPI: add error codes used by the VM introspection code
` [PATCH v12 02/77] KVM: add kvm_vcpu_kick_and_wait()
` [PATCH v12 03/77] KVM: x86: add kvm_arch_vcpu_get_regs() and kvm_arch_vcpu_get_sregs()
` [PATCH v12 04/77] KVM: x86: add kvm_arch_vcpu_set_regs()
` [PATCH v12 05/77] KVM: x86: avoid injecting #PF when emulate the VMCALL instruction
` [PATCH v12 06/77] KVM: x86: add kvm_x86_ops.bp_intercepted()
` [PATCH v12 07/77] KVM: x86: add kvm_x86_ops.control_cr3_intercept()
` [PATCH v12 08/77] KVM: x86: add kvm_x86_ops.cr3_write_intercepted()
` [PATCH v12 09/77] KVM: x86: add kvm_x86_ops.desc_ctrl_supported()
` [PATCH v12 10/77] KVM: svm: add support for descriptor-table VM-exits
` [PATCH v12 11/77] KVM: x86: add kvm_x86_ops.control_desc_intercept()
` [PATCH v12 12/77] KVM: x86: add kvm_x86_ops.desc_intercepted()
` [PATCH v12 13/77] KVM: x86: add kvm_x86_ops.msr_write_intercepted()
` [PATCH v12 14/77] KVM: x86: svm: use the vmx convention to control the MSR interception
` [PATCH v12 15/77] KVM: x86: add kvm_x86_ops.control_msr_intercept()
` [PATCH v12 16/77] KVM: x86: save the error code during EPT/NPF exits handling
` [PATCH v12 17/77] KVM: x86: add kvm_x86_ops.fault_gla()
` [PATCH v12 18/77] KVM: x86: add kvm_x86_ops.control_singlestep()
` [PATCH v12 19/77] KVM: x86: export kvm_arch_vcpu_set_guest_debug()
` [PATCH v12 20/77] KVM: x86: extend kvm_mmu_gva_to_gpa_system() with the 'access' parameter
` [PATCH v12 21/77] KVM: x86: export kvm_inject_pending_exception()
` [PATCH v12 22/77] KVM: x86: export kvm_vcpu_ioctl_x86_get_xsave()
` [PATCH v12 23/77] KVM: x86: export kvm_vcpu_ioctl_x86_set_xsave()
` [PATCH v12 24/77] KVM: x86: page track: provide all callbacks with the guest virtual address
` [PATCH v12 25/77] KVM: x86: page track: add track_create_slot() callback
` [PATCH v12 26/77] KVM: x86: page_track: add support for preread, prewrite and preexec
` [PATCH v12 27/77] KVM: x86: wire in the preread/prewrite/preexec page trackers
` [PATCH v12 28/77] KVM: x86: disable gpa_available optimization for fetch and page-walk SPT violations
` [PATCH v12 29/77] KVM: introduce VM introspection
` [PATCH v12 30/77] KVM: introspection: add hook/unhook ioctls
` [PATCH v12 31/77] KVM: introspection: add permission access ioctls
` [PATCH v12 32/77] KVM: introspection: add the read/dispatch message function
` [PATCH v12 33/77] KVM: introspection: add KVMI_GET_VERSION
` [PATCH v12 34/77] KVM: introspection: add KVMI_VM_CHECK_COMMAND and KVMI_VM_CHECK_EVENT
` [PATCH v12 35/77] KVM: introspection: add KVMI_VM_GET_INFO
` [PATCH v12 36/77] KVM: introspection: add KVM_INTROSPECTION_PREUNHOOK
` [PATCH v12 37/77] KVM: introspection: add KVMI_VM_EVENT_UNHOOK
` [PATCH v12 38/77] KVM: introspection: add KVMI_VM_CONTROL_EVENTS
` [PATCH v12 39/77] KVM: introspection: add KVMI_VM_READ_PHYSICAL/KVMI_VM_WRITE_PHYSICAL
` [PATCH v12 40/77] KVM: introspection: add vCPU related data
` [PATCH v12 41/77] KVM: introspection: add a jobs list to every introspected vCPU
` [PATCH v12 42/77] KVM: introspection: handle vCPU introspection requests
` [PATCH v12 43/77] KVM: introspection: handle vCPU commands
` [PATCH v12 44/77] KVM: introspection: add KVMI_VCPU_GET_INFO
` [PATCH v12 45/77] KVM: introspection: add KVMI_VM_PAUSE_VCPU
` [PATCH v12 46/77] KVM: introspection: add support for vCPU events
` [PATCH v12 47/77] KVM: introspection: add KVMI_VCPU_EVENT_PAUSE
` [PATCH v12 48/77] KVM: introspection: add the crash action handling on the event reply
` [PATCH v12 49/77] KVM: introspection: add KVMI_VCPU_CONTROL_EVENTS
` [PATCH v12 50/77] KVM: introspection: add KVMI_VCPU_GET_REGISTERS
` [PATCH v12 51/77] KVM: introspection: add KVMI_VCPU_SET_REGISTERS
` [PATCH v12 52/77] KVM: introspection: add KVMI_VCPU_GET_CPUID
` [PATCH v12 53/77] KVM: introspection: add KVMI_VCPU_EVENT_HYPERCALL
` [PATCH v12 54/77] KVM: introspection: add KVMI_VCPU_EVENT_BREAKPOINT
` [PATCH v12 55/77] KVM: introspection: add cleanup support for vCPUs
` [PATCH v12 56/77] KVM: introspection: restore the state of #BP interception on unhook
` [PATCH v12 57/77] KVM: introspection: add KVMI_VM_CONTROL_CLEANUP
` [PATCH v12 58/77] KVM: introspection: add KVMI_VCPU_CONTROL_CR and KVMI_VCPU_EVENT_CR
` [PATCH v12 59/77] KVM: introspection: restore the state of CR3 interception on unhook
` [PATCH v12 60/77] KVM: introspection: add KVMI_VCPU_INJECT_EXCEPTION + KVMI_VCPU_EVENT_TRAP
` [PATCH v12 61/77] KVM: introspection: add KVMI_VCPU_EVENT_XSETBV
` [PATCH v12 62/77] KVM: introspection: add KVMI_VCPU_GET_XCR
` [PATCH v12 63/77] KVM: introspection: add KVMI_VCPU_GET_XSAVE
` [PATCH v12 64/77] KVM: introspection: add KVMI_VCPU_SET_XSAVE
` [PATCH v12 65/77] KVM: introspection: add KVMI_VCPU_GET_MTRR_TYPE
` [PATCH v12 66/77] KVM: introspection: add KVMI_VCPU_EVENT_DESCRIPTOR
` [PATCH v12 67/77] KVM: introspection: restore the state of descriptor-table register interception on unhook
` [PATCH v12 68/77] KVM: introspection: add KVMI_VCPU_CONTROL_MSR and KVMI_VCPU_EVENT_MSR
` [PATCH v12 69/77] KVM: introspection: restore the state of MSR interception on unhook
` [PATCH v12 70/77] KVM: introspection: add KVMI_VM_SET_PAGE_ACCESS
` [PATCH v12 71/77] KVM: introspection: add KVMI_VCPU_EVENT_PF
` [PATCH v12 72/77] KVM: introspection: extend KVMI_GET_VERSION with struct kvmi_features
` [PATCH v12 73/77] KVM: introspection: add KVMI_VCPU_CONTROL_SINGLESTEP
` [PATCH v12 74/77] KVM: introspection: add KVMI_VCPU_EVENT_SINGLESTEP
` [PATCH v12 75/77] KVM: introspection: add KVMI_VCPU_TRANSLATE_GVA
` [PATCH v12 76/77] KVM: introspection: emulate a guest page table walk on SPT violations due to A/D bit updates
` [PATCH v12 77/77] KVM: x86: call the page tracking code on emulation failure

[cip-dev][isar-cip-core][PATCH] scripts/wic/efibootguard-boot: Add missing whitespace
 2021-10-06 17:42 UTC  (4+ messages)

[PATCH] crypto : asymmetric_keys: Fix function description to match prototype
 2021-10-06 17:41 UTC  (2+ messages)

[PATCH v5 00/11] PCI devices passthrough on Arm
 2021-10-06 17:40 UTC  (12+ messages)
` [PATCH v5 01/11] xen/arm: xc_domain_ioport_permission(..) not supported on ARM
` [PATCH v5 02/11] xen/arm: Add PHYSDEVOP_pci_device_(*add/remove) support for ARM
` [PATCH v5 03/11] xen/arm: Add cmdline boot option "pci-passthrough = <boolean>"
` [PATCH v5 04/11] xen/arm: PCI host bridge discovery within XEN on ARM
` [PATCH v5 05/11] xen/arm: Add support for Xilinx ZynqMP PCI host controller
` [PATCH v5 06/11] xen/arm: Implement pci access functions
` [PATCH v5 07/11] xen/domctl: Introduce XEN_DOMCTL_CDF_vpci flag
` [PATCH v5 08/11] xen/arm: Enable the existing x86 virtual PCI support for ARM
` [PATCH v5 09/11] xen/arm: Transitional change to build HAS_VPCI on ARM
` [PATCH v5 10/11] arm/libxl: Emulated PCI device tree node in libxl
` [PATCH v5 11/11] xen/arm: Add linux,pci-domain property for hwdom if not available

[PATCH] fs/ntfs3: Check for NULL if ATTR_EA_INFO is incorrect
 2021-10-06 17:42 UTC  (5+ messages)

[PATCH 0/8] drm/i915: PREEMPT_RT related fixups
 2021-10-06 17:41 UTC  (2+ messages)
` [Intel-gfx] ✗ Fi.CI.BUILD: failure for drm/i915: PREEMPT_RT related fixups. (rev2)

[igt-dev] [PATCH i-g-t 0/8] drm-uapi clean-up
 2021-10-06 17:40 UTC  (9+ messages)
` [igt-dev] [PATCH i-g-t 1/8] tests/i915/gem_pxp: Add LOCAL_ UAPI defines
` [igt-dev] [PATCH i-g-t 7/8] include: Introduce linux-uapi for non-drm-uapi files

[meta-python][hardknott][PATCH] python3-pillow: Fix CVE-2021-23437
 2021-10-06 17:39 UTC 

[PATCH 00/13] virtiofsd: Support notification queue and
 2021-10-06 17:40 UTC  (4+ messages)
` [PATCH 06/13] vhost-user-fs: Use helpers to create/cleanup virtqueue
  ` [Virtio-fs] "

[PATCH v1 1/2] arm64: dts: qcom: sc7280: Add bluetooth node on SC7280 IDP board
 2021-10-06 17:39 UTC  (3+ messages)
` [PATCH v1 2/2] arm64: dts: qcom: sc7280: update bluetooth node in SC7280 IDP2 board

[PATCH v4 00/41] linux-user: Streamline handling of SIGSEGV
 2021-10-06 17:22 UTC  (13+ messages)
` [PATCH v4 01/41] accel/tcg: Split out adjust_signal_pc
` [PATCH v4 06/41] linux-user: Reorg handling for SIGSEGV
` [PATCH v4 07/41] linux-user/host/x86: Populate host_signal.h
` [PATCH v4 08/41] linux-user/host/ppc: "
` [PATCH v4 11/41] linux-user/host/arm: "
` [PATCH v4 14/41] linux-user/host/mips: "
` [PATCH v4 15/41] linux-user/host/riscv: "
` [PATCH v4 16/41] target/arm: Fixup comment re handle_cpu_signal
` [PATCH v4 17/41] linux-user/host/riscv: Improve host_signal_write
` [PATCH v4 19/41] hw/core: Add TCGCPUOps.record_sigsegv
` [PATCH v4 21/41] target/alpha: Implement alpha_cpu_record_sigsegv
` [PATCH v4 22/41] target/arm: Use cpu_loop_exit_sigsegv for mte tag lookup

[PATCH bpf-next v2] libbpf: Deprecate bpf_object__unload() API since v0.7
 2021-10-06 17:39 UTC  (3+ messages)

[PATCH] x86/resctrl: Free the ctrlval arrays when domain_setup_mon_state() fails
 2021-10-06 17:39 UTC  (2+ messages)
` [tip: x86/urgent] "

[PATCH] x86/resctrl: Fix kfree() of the wrong type in domain_add_cpu()
 2021-10-06 17:39 UTC  (2+ messages)
` [tip: x86/urgent] "

[PATCH] x86/entry: fix AC assertion when !CONFIG_X86_SMAP
 2021-10-06 17:38 UTC  (2+ messages)
` [tip: x86/urgent] x86/entry: Clear X86_FEATURE_SMAP when CONFIG_X86_SMAP=n

[PATCH 1/9] x86/entry: correct reference to intended CONFIG_64_BIT
 2021-10-06 17:38 UTC  (2+ messages)
` [tip: x86/urgent] x86/entry: Correct "

[PATCH 3/9] x86/Kconfig: correct reference to MWINCHIP3D
 2021-10-06 17:38 UTC  (2+ messages)
` [tip: x86/urgent] x86/Kconfig: Correct "

[PATCH 2/9] x86, olpc: correct condition to intended CONFIG_OLPC_XO15_SCI
 2021-10-06 17:38 UTC  (2+ messages)
` [tip: x86/urgent] x86/platform/olpc: Correct ifdef symbol "

[x86] Kernel v5.14 series panic on Celeron Mendocino CPU
 2021-10-06 17:38 UTC  (2+ messages)
` [tip: x86/urgent] x86/fpu: Restore the masking out of reserved MXCSR bits

[dpdk-dev] [v4] telemetry: fix json output buffer size
 2021-10-06 17:38 UTC  (3+ messages)
` [dpdk-dev] [v5] "

[PATCH v3 0/4] ASoC: Intel: bytcht_es8316: few cleanups
 2021-10-06 17:33 UTC  (10+ messages)
` [PATCH v3 1/4] ASoC: Intel: bytcht_es8316: Get platform data via dev_get_platdata()
` [PATCH v3 2/4] ASoC: Intel: bytcht_es8316: Use temporary variable for struct device
` [PATCH v3 3/4] ASoC: Intel: bytcht_es8316: Switch to use gpiod_get_optional()
` [PATCH v3 4/4] ASoC: Intel: bytcht_es8316: Utilize dev_err_probe() to avoid log saturation

[PATCH v4 00/14] PCI devices passthrough on Arm
 2021-10-06 17:34 UTC  (10+ messages)
` [PATCH v4 13/14] arm/libxl: Emulated PCI device tree node in libxl

[PATCH v10 1/3] mm: rearrange madvise code to allow for reuse
 2021-10-06 17:33 UTC  (6+ messages)

[dpdk-dev] [dpdk-dev v4] crypto/snow3g: add support for digest appended ops
 2021-10-06 17:34 UTC  (6+ messages)
` [dpdk-dev] [PATCH v3 00/10] drivers/crypto: introduce ipsec_mb framework
  ` [dpdk-dev] [PATCH v3 01/10] drivers/crypto: introduce IPsec-mb framework
    ` [dpdk-dev] [EXT] "

[BUG RESEND] net: stmmac: dwmac-rk: Ethernet broken on rockpro64 by commit 2d26f6e39afb ("net: stmmac: dwmac-rk: fix unbalanced pm_runtime_enable warnings")
 2021-10-06 17:32 UTC  (3+ messages)

[LSF/MM/BFP ATTEND] [LSF/MM/BFP TOPIC] Storage: Copy Offload
 2021-10-06 17:33 UTC  (7+ messages)

[PATCH] perf vendor events power10: Add metric events json file for power10 platform
 2021-10-06 17:32 UTC  (3+ messages)

[dpdk-dev] [PATCH v3] eventdev/rx-adapter: fix segfault in que conf get
 2021-10-06 17:32 UTC  (3+ messages)
` [dpdk-dev] [PATCH v4] eventdev/rx-adapter: fix segfault in queue "

stable-rc/queue/4.19 build: 188 builds: 0 failed, 188 passed, 4 warnings (v4.19.208-95-g4e87b1c850b9)
 2021-10-06 17:32 UTC 

[PATCH 0/8 v3] bfq: Limit number of allocated scheduler tags per cgroup
 2021-10-06 17:31 UTC  (9+ messages)
` [PATCH 1/8] block: Provide icq in request allocation data
` [PATCH 2/8] bfq: Track number of allocated requests in bfq_entity
` [PATCH 3/8] bfq: Store full bitmap depth in bfq_data
` [PATCH 4/8] bfq: Limit number of requests consumed by each cgroup
` [PATCH 5/8] bfq: Limit waker detection in time
` [PATCH 6/8] bfq: Provide helper to generate bfqq name
` [PATCH 7/8] bfq: Log waker detections
` [PATCH 8/8] bfq: Do not let waker requests skip proper accounting

[PATCH v4 0/7] tegra20-emc: Identify memory chip by LPDDR configuration
 2021-10-06 17:31 UTC  (7+ messages)
` [PATCH v4 2/7] dt-bindings: memory: lpddr2: Convert to schema

[PATCH v2 1/3] driver core: Provide device_match_acpi_handle() helper
 2021-10-06 17:31 UTC  (3+ messages)
` [PATCH v2 2/3] i2c: acpi: Replace custom function with device_match_acpi_handle()
` [PATCH v2 3/3] gpiolib: acpi: Replace custom code "

[PATCH] drm/msm/dp: Shorten SETUP timeout
 2021-10-06 17:31 UTC  (8+ messages)


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.