All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2023-03-12 07:55:55 to 2023-03-12 10:00:42 UTC [more...]

[RFC PATCH part-6 00/13] EPT Emulation
 2023-03-12 18:03 UTC  (10+ messages)
` [RFC PATCH part-6 01/13] pkvm: x86: Pre-define the maximum number of supported VMs
` [RFC PATCH part-6 02/13] pkvm: x86: init: Reserve memory for shadow EPT
` [RFC PATCH part-6 03/13] pkvm: x86: Initialize the shadow EPT pool
` [RFC PATCH part-6 04/13] pkvm: x86: Introduce shadow EPT
` [RFC PATCH part-6 05/13] pkvm: x86: Introduce vEPT to record guest EPT information
` [RFC PATCH part-6 06/13] pkvm: x86: Add API to get the max phys address bits
` [RFC PATCH part-6 07/13] pkvm: x86: Initialize ept_zero_check
` [RFC PATCH part-6 08/13] pkvm: x86: Add support for pKVM to handle the nested EPT violation
` [RFC PATCH part-6 09/13] pkvm: x86: Introduce PKVM_ASSERT

[RFC v2] function_graph: Support recording and outputing the return value of function
 2023-03-12  9:58 UTC  (2+ messages)

[RFC PATCH part-5 00/22] VMX emulation
 2023-03-12 18:03 UTC  (23+ messages)
` [RFC PATCH part-5 01/22] pkvm: x86: Add memcpy lib
` [RFC PATCH part-5 02/22] pkvm: x86: Add memory operation APIs for for host VM
` [RFC PATCH part-5 03/22] pkvm: x86: Do guest address translation per page granularity
` [RFC PATCH part-5 04/22] pkvm: x86: Add check for guest address translation
` [RFC PATCH part-5 05/22] pkvm: x86: Add hypercalls for shadow_vm/vcpu init & teardown
` [RFC PATCH part-5 06/22] KVM: VMX: Add new kvm_x86_ops vm_free
` [RFC PATCH part-5 07/22] KVM: VMX: Add initialization/teardown for shadow vm/vcpu
` [RFC PATCH part-5 08/22] pkvm: x86: Add hash table mapping for shadow vcpu based on vmcs12_pa
` [RFC PATCH part-5 09/22] pkvm: x86: Add VMXON/VMXOFF emulation
` [RFC PATCH part-5 10/22] pkvm: x86: Add has_vmcs_field() API for physical vmx capability check
` [RFC PATCH part-5 11/22] KVM: VMX: Add more vmcs and vmcs12 fields definition
` [RFC PATCH part-5 12/22] pkvm: x86: Init vmcs read/write bitmap for vmcs emulation
` [RFC PATCH part-5 13/22] pkvm: x86: Initialize emulated fields "
` [RFC PATCH part-5 14/22] pkvm: x86: Add msr ops for pKVM hypervisor
` [RFC PATCH part-5 15/22] pkvm: x86: Move _init_host_state_area to "
` [RFC PATCH part-5 16/22] pkvm: x86: Add vmcs_load/clear_track APIs
` [RFC PATCH part-5 17/22] pkvm: x86: Add VMPTRLD/VMCLEAR emulation
` [RFC PATCH part-5 18/22] pkvm: x86: Add VMREAD/VMWRITE emulation
` [RFC PATCH part-5 19/22] pkvm: x86: Add VMLAUNCH/VMRESUME emulation
` [RFC PATCH part-5 20/22] pkvm: x86: Add INVEPT/INVVPID emulation
` [RFC PATCH part-5 21/22] pkvm: x86: Initialize msr_bitmap for vmsr
` [RFC PATCH part-5 22/22] pkvm: x86: Add vmx msr emulation

[Buildroot] [git commit branch/next] package/libwebsockets: enable libev and libevent support indipendently
 2023-03-12  9:58 UTC 

[Buildroot] [PATCH 1/1] package/libwebsockets: enable libev and libevent support indipendently
 2023-03-12  9:58 UTC  (2+ messages)

[Buildroot] [PATCH 1/1] package/libgit2: bump to version 1.6.2
 2023-03-12  9:58 UTC  (2+ messages)

[RFC PATCH part-4 0/4] Misc
 2023-03-12 18:02 UTC  (5+ messages)
` [RFC PATCH part-4 1/4] pkvm: x86: Enable VPID for host VM
` [RFC PATCH part-4 2/4] pkvm: x86: Add pKVM debug support
` [RFC PATCH part-4 3/4] pkvm: x86: Support get_pcpu_id
` [RFC PATCH part-4 4/4] pkvm: x86: Handle pending nmi in pKVM runtime

[Buildroot] [git commit branch/next] package/libgit2: bump to version 1.6.2
 2023-03-12  9:55 UTC 

[RFC PATCH part-3 00/22] Isolate pKVM & host
 2023-03-12 18:01 UTC  (23+ messages)
` [RFC PATCH part-3 01/22] pkvm: x86: Define hypervisor runtime VA/PA APIs
` [RFC PATCH part-3 02/22] pkvm: x86: Add arch specific spinlock
` [RFC PATCH part-3 03/22] pkvm: x86: Add memset lib
` [RFC PATCH part-3 04/22] pkvm: x86: Add buddy page allocator
` [RFC PATCH part-3 05/22] pkvm: x86: Generate pkvm_constants.h for pKVM initialization
` [RFC PATCH part-3 06/22] pkvm: x86: Calculate total reserve page numbers
` [RFC PATCH part-3 07/22] pkvm: x86: Reserve memory for pKVM
` [RFC PATCH part-3 08/22] pkvm: x86: Early alloc from reserved memory
` [RFC PATCH part-3 09/22] pkvm: x86: Introduce general page table management framework
` [RFC PATCH part-3 10/22] pkvm: x86: Initialize MMU/EPT configuration
` [RFC PATCH part-3 11/22] pkvm: x86: Add early allocator based mm_ops
` [RFC PATCH part-3 12/22] pkvm: x86: Define linker script alias for kernel-proper symbol
` [RFC PATCH part-3 13/22] pkvm: x86: Introduce MMU pgtable support
` [RFC PATCH part-3 14/22] pkvm: x86: Add global pkvm_hyp pointer
` [RFC PATCH part-3 15/22] pkvm: x86: Add init-finalise hypercall
` [RFC PATCH part-3 16/22] pkvm: x86: Create MMU pgtable in "
` [RFC PATCH part-3 17/22] pkvm: x86: Add vmemmap and switch to buddy page allocator
` [RFC PATCH part-3 18/22] pkvm: x86: Introduce host EPT pgtable support
` [RFC PATCH part-3 19/22] pkvm: x86: Create host EPT pgtable in init-finalise hypercall
` [RFC PATCH part-3 20/22] pkvm: x86: Add pgtable API pkvm_pgtable_lookup
` [RFC PATCH part-3 21/22] pkvm: x86: Introduce find_mem_range API
` [RFC PATCH part-3 22/22] pkvm: x86: Dynamically handle host MMIO EPT violation

stable-rc/linux-4.14.y baseline: 142 runs, 26 regressions (v4.14.308)
 2023-03-12  9:56 UTC 

[RFC PATCH part-2 00/17] Introduce & support pKVM on Intel platform
 2023-03-12 18:01 UTC  (18+ messages)
` [RFC PATCH part-2 01/17] pkvm: x86: Introduce CONFIG_PKVM_INTEL
` [RFC PATCH part-2 02/17] KVM: VMX: Refactor for setup_vmcs_config
` [RFC PATCH part-2 03/17] pkvm: x86: Add vmx capability check and vmx config setup
` [RFC PATCH part-2 04/17] pkvm: x86: Add pCPU env setup
` [RFC PATCH part-2 05/17] pkvm: x86: Add basic setup for host vcpu
` [RFC PATCH part-2 06/17] pkvm: x86: Introduce pkvm_host_deprivilege_cpus
` [RFC PATCH part-2 07/17] pkvm: x86: Allocate vmcs and msr bitmap pages for host vcpu
` [RFC PATCH part-2 08/17] pkvm: x86: Initailize vmcs guest state area "
` [RFC PATCH part-2 09/17] pkvm: x86: Initialize vmcs host "
` [RFC PATCH part-2 10/17] pkvm: x86: Initialize vmcs control fields "
` [RFC PATCH part-2 11/17] pkvm: x86: Define empty debug functions for hypervisor
` [RFC PATCH part-2 12/17] pkvm: x86: Add vmexit handler for host vcpu
` [RFC PATCH part-2 13/17] pkvm: x86: Add private vmx_ops.h for pKVM
` [RFC PATCH part-2 14/17] pkvm: x86: Add pKVM retpoline.S
` [RFC PATCH part-2 15/17] pkvm: x86: Build pKVM runtime as an independent binary
` [RFC PATCH part-2 16/17] pkvm: x86: Deprivilege host OS
` [RFC PATCH part-2 17/17] pkvm: x86: Stub CONFIG_DEBUG_LIST in pKVM

[RFC PATCH part-1 0/5] pKVM on Intel Platform Introduction
 2023-03-12 18:00 UTC  (6+ messages)
` [RFC PATCH part-1 1/5] pkvm: arm64: Move nvhe/spinlock.h to include/asm dir
` [RFC PATCH part-1 2/5] pkvm: arm64: Make page allocator arch agnostic
` [RFC PATCH part-1 3/5] pkvm: arm64: Move page allocator to virt/kvm/pkvm
` [RFC PATCH part-1 4/5] pkvm: arm64: Make memory reservation arch agnostic
` [RFC PATCH part-1 5/5] pkvm: arm64: Move general part of memory reservation to virt/kvm/pkvm

[PATCH v3] wifi: iwlwifi: pcie: fix the order of scanning iwl_dev_info_table
 2023-03-12  9:52 UTC  (6+ messages)

[PATCH v2 0/3] Assume libbpf 1.0+
 2023-03-12  9:51 UTC  (11+ messages)

[PATCH 0/7] remove SLOB and allow kfree() with kmem_cache_alloc()
 2023-03-12  9:51 UTC  (2+ messages)

[PATCH] mailmap: update mailmap with second email address
 2023-03-12  9:50 UTC  (3+ messages)
` [PATCH v2] mailmap: update mailmap entry for second address

[syzbot] [kernel?] WARNING in c_start (2)
 2023-03-12  9:50 UTC  (4+ messages)

Audio playback speed issue on sam460ex and pegasos2
 2023-03-12  9:46 UTC  (4+ messages)

[RFC/PATCH] lib/Kconfig: Enable OF_LIBFDT_OVERLAY by default when FIT is enabled
 2023-03-12  9:46 UTC  (3+ messages)

[PATCH v1] maintainers: update dts
 2023-03-12  9:45 UTC  (3+ messages)

[OE-core][PATCH] go: use go as CVE product for all golang recipe veriants
 2023-03-11 23:25 UTC 

[Buildroot] [PATCH next 1/1] package/python-hwdata: new package
 2023-03-12  9:43 UTC  (3+ messages)

[PATCH 1/9] regulator: lp872x: Mark OF related data as maybe unused
 2023-03-12  9:42 UTC  (4+ messages)
` [PATCH 2/9] regulator: max20086: "

[PATCH v4 00/19] Remove repeated words in comments and messages
 2023-03-12  9:41 UTC  (2+ messages)

[PATCH v2] hw/riscv: Fix the bug of max size limit when put initrd to RAM
 2023-03-12  9:40 UTC 

[PATCH v7 0/4] riscv: Use PUD/P4D/PGD pages for the linear mapping
 2023-03-12  9:35 UTC  (5+ messages)
` [PATCH v7 2/4] mm: Introduce memblock_isolate_memory

[PATCH 0/8] Add multiport support for DWC3 controllers
 2023-03-12  9:33 UTC  (5+ messages)
` [PATCH 3/8] usb: dwc3: core: Skip setting event buffers for host only controllers
` [PATCH 7/8] arm64: dts: qcom: sa8295p: Enable teritiary controller and its 4 USB ports

[PATCH 0/5] Add support for Focaltech FTS Touchscreen
 2023-03-12  9:32 UTC  (6+ messages)
` [PATCH 1/5] dt-bindings: input: touchscreen: add bindings for focaltech,fts
` [PATCH 2/5] Input: add driver for Focaltech FTS touchscreen
` [PATCH 3/5] arm64: dts: qcom: sdm845-xiaomi-beryllium-common: add touchscreen related nodes
` [PATCH 4/5] arm64: dts: qcom: sdm845-xiaomi-beryllium-ebbg: introduce support for fts touchscreen
` [PATCH 5/5] arm64: dts: qcom: sdm845-shift-axolotl: update focaltech touchscreen properties

[Buildroot] [PATCH 1/1] package/rsync: link with -latomic if needed
 2023-03-12  9:32 UTC 

[RFC QEMU PATCH 00/18] Add VirtIO GPU and Passthrough GPU support on Xen
 2023-03-12  9:22 UTC  (19+ messages)
` [RFC QEMU PATCH 01/18] virtio: Add shared memory capability
` [RFC QEMU PATCH 02/18] virtio-gpu: hostmem
` [RFC QEMU PATCH 03/18] virtio-gpu: Handle resource blob commands
` [RFC QEMU PATCH 04/18] virtio-gpu: CONTEXT_INIT feature
` [RFC QEMU PATCH 05/18] virtio-gpu: Unrealize
` [RFC QEMU PATCH 06/18] virtio-gpu: Resource UUID
` [RFC QEMU PATCH 07/18] virtio-gpu: Support Venus capset
` [RFC QEMU PATCH 08/18] virtio-gpu: Initialize Venus
` [RFC QEMU PATCH 09/18] meson: Enable virglrenderer unstable APIs
` [RFC QEMU PATCH 10/18] virtio-gpu: Handle set scanout blob command
` [RFC QEMU PATCH 11/18] virtio-gpu: make blob scanout use dmabuf fd
` [RFC QEMU PATCH 12/18] softmmu: Fix the size to map cache with xen for host virtual address
` [RFC QEMU PATCH 13/18] hw/i386/xen/xen-hvm: Introduce xen_ram_block_check function
` [RFC QEMU PATCH 14/18] softmmu: Add ram block check to map the xen ram memory
` [RFC QEMU PATCH 15/18] softmmu: Enable qemu ram allocation with fd for Xen
` [RFC QEMU PATCH 16/18] virtio-gpu: fix hw-display-virtio-gpu.so undefined symbol virtio_gpu_virgl_resource_unmap
` [RFC QEMU PATCH 17/18] virtio-gpu: Add video hardware accelerate support for virgl
` [RFC QEMU PATCH 18/18] xen: translate irq of host pci device to gsi

[PATCH v3] target/riscv: fix H extension TVM trap
 2023-03-12  9:28 UTC  (2+ messages)

[Intel-gfx] [PATCH 0/2] drm/i915/pmu: Use common freq functions with sysfs
 2023-03-12  9:27 UTC  (2+ messages)
` [Intel-gfx] ✓ Fi.CI.IGT: success for "

[PATCH] eventpoll: align comment with nested epoll limitation
 2023-03-12  9:25 UTC 

[PATCH v2 0/6] Resolve TYPE_PIIX3_XEN_DEVICE
 2023-03-12  9:22 UTC  (8+ messages)

[Buildroot] [PATCH next 1/1] package/pcre2: update _SITE url
 2023-03-12  9:22 UTC 

[PATCH] wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu
 2023-03-12  9:18 UTC  (3+ messages)

[Buildroot] [PATCH next 1/2] package/lsof: bump to version 4.98.0
 2023-03-12  9:17 UTC  (2+ messages)

[Buildroot] [git commit branch/next] support/testing/tests/package/test_lsof.py: new runtime test
 2023-03-12  9:15 UTC 

[Buildroot] [git commit branch/next] package/lsof: bump to version 4.98.0
 2023-03-12  9:09 UTC 

[langdale][kirkstone][PATCH] go-mod.bbclass: Allow network in do_compile
 2023-03-12  9:15 UTC  (7+ messages)
` [OE-core] "

stable/linux-4.19.y baseline: 155 runs, 59 regressions (v4.19.276)
 2023-03-12  9:14 UTC 

Post-boot loading of OP-TEE
 2023-03-12  9:14 UTC 

[Buildroot] [PATCH v3 0/3] misc aarch64-sbsa cleanups
 2023-03-12  9:09 UTC  (2+ messages)

[Buildroot] [git commit branch/next] board/qemu/aarch64-sbsa: use PARTLABEL to specify root
 2023-03-12  9:08 UTC 

[Buildroot] [git commit branch/next] support/testing: move the kernel config only used by test_edk2.py
 2023-03-12  9:08 UTC 

[Buildroot] [git commit branch/next] board/qemu/aarch64-sbsa: use the default console specified by ACPI
 2023-03-12  9:08 UTC 

cip-gitlab/ci/iwamatsu/linux-5.10.y-cip-rc kselftest-futex: 11 runs, 1 regressions (v5.10.168-cip27-638-g0d599cd2b6695)
 2023-03-12  9:08 UTC 

cip-gitlab/ci/iwamatsu/linux-5.10.y-cip-rc ltp-pty: 11 runs, 1 regressions (v5.10.168-cip27-638-g0d599cd2b6695)
 2023-03-12  9:08 UTC 

cip-gitlab/ci/iwamatsu/linux-5.10.y-cip-rc ltp-timers: 16 runs, 14 regressions (v5.10.168-cip27-638-g0d599cd2b6695)
 2023-03-12  9:08 UTC 

[Buildroot] [PATCH next] strace: bump to version 6.2
 2023-03-12  9:07 UTC  (2+ messages)

[PATCH v2] uas: Add US_FL_NO_REPORT_OPCODES for JMicron JMS583Gen 2
 2023-03-12  9:07 UTC  (2+ messages)
` [PATCH v3] "

[Buildroot] [PATCH next] package/openfpgaloader: fix typos
 2023-03-12  9:07 UTC  (2+ messages)

[PATCH net-next v2 4/6] net: mdio: scan bus based on bus capabilities for C22 and C45
 2023-03-12  9:04 UTC  (14+ messages)

[Buildroot] [git commit branch/next] package/openfpgaloader: fix typos
 2023-03-12  9:02 UTC 

[Buildroot] [git commit branch/next] package/strace: bump to version 6.2
 2023-03-12  9:02 UTC 

[Buildroot] [PATCH] package/pango: bump to version 1.50.14
 2023-03-12  8:59 UTC  (2+ messages)

[Buildroot] [PATCH] package/libgtk3: bump to version 3.24.37
 2023-03-12  8:58 UTC  (2+ messages)

[Regression] rt2800usb - Wifi performance issues and connection drops
 2023-03-12  8:58 UTC  (10+ messages)

[Buildroot] [git commit branch/next] package/pango: bump to version 1.50.14
 2023-03-12  8:57 UTC 

[Buildroot] [git commit branch/next] package/libgtk3: bump to version 3.24.37
 2023-03-12  8:55 UTC 

[PATCH 1/2] vdpa/mlx5: Make VIRTIO_NET_F_MRG_RXBUF off by default
 2023-03-12  8:58 UTC 

[Buildroot] [PATCH] package/htop: bump to version 3.2.2
 2023-03-12  8:55 UTC  (2+ messages)

[Buildroot] [git commit branch/next] package/htop: bump to version 3.2.2
 2023-03-12  8:54 UTC 

[PULL 0/5] gitdm updates
 2023-03-12  8:49 UTC  (2+ messages)

[OE-core][PATCH] go: use go as CVE product for all golang recipe veriants
 2023-03-12  8:45 UTC 

[PATCH] mem: fix displaying heap ID failed for heap info command
 2023-03-12  8:40 UTC  (4+ messages)
` [PATCH v2] "

cip-gitlab/ci/iwamatsu/linux-5.10.y-cip-rc baseline: 160 runs, 13 regressions (v5.10.168-cip27-638-g0d599cd2b6695)
 2023-03-12  8:38 UTC 

cip-gitlab/ci/iwamatsu/linux-5.10.y-cip-rc baseline-nfs: 68 runs, 3 regressions (v5.10.168-cip27-638-g0d599cd2b6695)
 2023-03-12  8:38 UTC 

ublk-nbd: ublk-nbd is avaialbe
 2023-03-12  8:30 UTC  (3+ messages)

[PATCH] eal: use program_invocation_short_name
 2023-03-12  8:29 UTC  (2+ messages)

cip-gitlab/ci/iwamatsu/linux-4.19.y-cip-rc kselftest-futex: 8 runs, 1 regressions (v4.19.273-cip92-277-g507c8d80b9e20)
 2023-03-12  8:20 UTC 

cip-gitlab/ci/iwamatsu/linux-4.19.y-cip-rc ltp-timers: 11 runs, 8 regressions (v4.19.273-cip92-277-g507c8d80b9e20)
 2023-03-12  8:20 UTC 

About the .scmversion removal (commit f6e09b07cc12)
 2023-03-12  8:15 UTC  (4+ messages)

setup in Ubuntu on VMWare #ubuntu
 2023-03-12  8:11 UTC  (2+ messages)
` [yocto] "

[PATCH] mm/mmu_gather: send tlb_remove_table_smp_sync IPI only to MM CPUs
 2023-03-12  8:09 UTC 

cip-gitlab/ci/iwamatsu/linux-5.10.y-cip-rc build: 190 builds: 3 failed, 187 passed, 4 errors, 9 warnings (v5.10.168-cip27-638-g0d599cd2b6695)
 2023-03-12  8:09 UTC 

stable-rc/linux-6.1.y baseline: 185 runs, 1 regressions (v6.1.18)
 2023-03-12  8:07 UTC 

[PATCH v2 1/7] PCI: endpoint: Pass EPF device ID to the probe function
 2023-03-12  8:06 UTC  (2+ messages)

[PATCH v2] crypto: lib - implement library version of AES in CFB mode
 2023-03-12  8:06 UTC  (12+ messages)

hard irq + threaded irq
 2023-03-12  8:02 UTC 

AUTOSEL process
 2023-03-12  8:04 UTC  (12+ messages)

Bricked LTS Kernel: Questionable i915 Commit
 2023-03-12  8:04 UTC 

[PATCH v7] audio/pwaudio.c: Add Pipewire audio backend for QEMU
 2023-03-12  8:01 UTC  (2+ messages)

[PATCH 1/1] net/sfc: stop misuse of Rx ingress m-port metadata on EF100
 2023-03-12  7:59 UTC  (3+ messages)
` [PATCH v2] "

[RFC XEN PATCH 0/6] Introduce VirtIO GPU and Passthrough GPU support on Xen PVH dom0
 2023-03-12  7:54 UTC  (6+ messages)
` [RFC XEN PATCH 2/6] vpci: accept BAR writes if dom0 is PVH
` [RFC XEN PATCH 3/6] x86/pvh: shouldn't check pirq flag when map pirq in PVH
` [RFC XEN PATCH 4/6] x86/pvh: PVH dom0 also need PHYSDEVOP_setup_gsi call
` [RFC XEN PATCH 5/6] tools/libs/call: add linux os call to get gsi from irq
` [RFC XEN PATCH 6/6] tools/libs/light: pci: translate irq to gsi


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.