All of lore.kernel.org
 help / color / mirror / Atom feed
 messages from 2022-03-04 19:47:07 to 2022-03-04 20:17:54 UTC [more...]

[RFC PATCH v5 000/104] KVM TDX basic feature support
 2022-03-04 19:50 UTC  (82+ messages)
` [RFC PATCH v5 001/104] KVM: VMX: Move out vmx_x86_ops to 'main.c' to wrap VMX and TDX
` [RFC PATCH v5 002/104] x86/virt/tdx: export platform_has_tdx
` [RFC PATCH v5 003/104] KVM: TDX: Detect CPU feature on kernel module initialization
` [RFC PATCH v5 004/104] KVM: Enable hardware before doing arch VM initialization
` [RFC PATCH v5 005/104] KVM: x86: Refactor KVM VMX module init/exit functions
` [RFC PATCH v5 006/104] KVM: TDX: Add placeholders for TDX VM/vcpu structure
` [RFC PATCH v5 007/104] x86/virt/tdx: Add a helper function to return system wide info about TDX module
` [RFC PATCH v5 008/104] KVM: TDX: Add a function to initialize "
` [RFC PATCH v5 009/104] KVM: x86: Introduce vm_type to differentiate default VMs from confidential VMs
` [RFC PATCH v5 010/104] KVM: TDX: Make TDX VM type supported
` [RFC PATCH v5 011/104] [MARKER] The start of TDX KVM patch series: TDX architectural definitions
` [RFC PATCH v5 012/104] KVM: TDX: Define "
` [RFC PATCH v5 013/104] KVM: TDX: Add TDX "architectural" error codes
` [RFC PATCH v5 014/104] KVM: TDX: Add a function for KVM to invoke SEAMCALL
` [RFC PATCH v5 015/104] KVM: TDX: add a helper function for KVM to issue SEAMCALL
` [RFC PATCH v5 016/104] KVM: TDX: Add C wrapper functions for SEAMCALLs to the TDX module
` [RFC PATCH v5 017/104] KVM: TDX: Add helper functions to print TDX SEAMCALL error
` [RFC PATCH v5 018/104] [MARKER] The start of TDX KVM patch series: TD VM creation/destruction
` [RFC PATCH v5 019/104] KVM: TDX: Stub in tdx.h with structs, accessors, and VMCS helpers
` [RFC PATCH v5 020/104] KVM: TDX: allocate per-package mutex
` [RFC PATCH v5 021/104] KVM: x86: Introduce hooks to free VM callback prezap and vm_free
` [RFC PATCH v5 022/104] KVM: Add max_vcpus field in common 'struct kvm'
` [RFC PATCH v5 023/104] x86/cpu: Add helper functions to allocate/free MKTME keyid
` [RFC PATCH v5 024/104] KVM: TDX: create/destroy VM structure
` [RFC PATCH v5 025/104] KVM: TDX: Add place holder for TDX VM specific mem_enc_op ioctl
` [RFC PATCH v5 026/104] KVM: TDX: x86: Add vm ioctl to get TDX systemwide parameters
` [RFC PATCH v5 027/104] KVM: TDX: initialize VM with TDX specific parameters
` [RFC PATCH v5 028/104] [MARKER] The start of TDX KVM patch series: TD vcpu creation/destruction
` [RFC PATCH v5 029/104] KVM: TDX: allocate/free TDX vcpu structure
` [RFC PATCH v5 030/104] KVM: TDX: Do TDX specific vcpu initialization
` [RFC PATCH v5 031/104] [MARKER] The start of TDX KVM patch series: KVM MMU GPA stolen bits
` [RFC PATCH v5 032/104] KVM: x86/mmu: introduce config for PRIVATE KVM MMU
` [RFC PATCH v5 033/104] KVM: x86: Add infrastructure for stolen GPA bits
` [RFC PATCH v5 034/104] [MARKER] The start of TDX KVM patch series: KVM TDP refactoring for TDX
` [RFC PATCH v5 035/104] KVM: x86/mmu: Disallow dirty logging for x86 TDX
` [RFC PATCH v5 036/104] KVM: x86/mmu: Explicitly check for MMIO spte in fast page fault
` [RFC PATCH v5 037/104] KVM: x86/mmu: Allow non-zero init value for shadow PTE
` [RFC PATCH v5 038/104] KVM: x86/mmu: Allow per-VM override of the TDP max page level
` [RFC PATCH v5 039/104] KVM: x86/mmu: Disallow fast page fault on private GPA
` [RFC PATCH v5 040/104] KVM: VMX: Split out guts of EPT violation to common/exposed function
` [RFC PATCH v5 041/104] KVM: VMX: Move setting of EPT MMU masks to common VT-x code
` [RFC PATCH v5 042/104] KVM: x86/mmu: Track shadow MMIO value/mask on a per-VM basis
` [RFC PATCH v5 043/104] KVM: TDX: Add load_mmu_pgd method for TDX
` [RFC PATCH v5 044/104] [MARKER] The start of TDX KVM patch series: KVM TDP MMU hooks
` [RFC PATCH v5 045/104] KVM: x86/tdp_mmu: make REMOVED_SPTE include shadow_initial value
` [RFC PATCH v5 046/104] KVM: x86/tdp_mmu: refactor kvm_tdp_mmu_map()
` [RFC PATCH v5 047/104] KVM: x86/mmu: add a private pointer to struct kvm_mmu_page
` [RFC PATCH v5 048/104] KVM: x86/tdp_mmu: Support TDX private mapping for TDP MMU
` [RFC PATCH v5 049/104] KVM: x86/tdp_mmu: Ignore unsupported mmu operation on private GFNs
` [RFC PATCH v5 050/104] [MARKER] The start of TDX KVM patch series: TDX EPT violation
` [RFC PATCH v5 074/104] KVM: x86: Add a switch_db_regs flag to handle TDX's auto-switched behavior
` [RFC PATCH v5 075/104] KVM: x86: Check for pending APICv interrupt in kvm_vcpu_has_events()
` [RFC PATCH v5 076/104] KVM: x86: Add option to force LAPIC expiration wait
` [RFC PATCH v5 077/104] KVM: TDX: Use vcpu_to_pi_desc() uniformly in posted_intr.c
` [RFC PATCH v5 078/104] KVM: TDX: Implement interrupt injection
` [RFC PATCH v5 079/104] KVM: TDX: Implements vcpu request_immediate_exit
` [RFC PATCH v5 080/104] KVM: TDX: Implement methods to inject NMI
` [RFC PATCH v5 081/104] KVM: VMX: Modify NMI and INTR handlers to take intr_info as function argument
` [RFC PATCH v5 082/104] KVM: VMX: Move NMI/exception handler to common helper
` [RFC PATCH v5 083/104] KVM: x86: Split core of hypercall emulation to helper function
` [RFC PATCH v5 084/104] KVM: TDX: Add a place holder to handle TDX VM exit
` [RFC PATCH v5 085/104] KVM: TDX: handle EXIT_REASON_OTHER_SMI
` [RFC PATCH v5 086/104] KVM: TDX: handle ept violation/misconfig exit
` [RFC PATCH v5 087/104] KVM: TDX: handle EXCEPTION_NMI and EXTERNAL_INTERRUPT
` [RFC PATCH v5 088/104] KVM: TDX: Add TDG.VP.VMCALL accessors to access guest vcpu registers
` [RFC PATCH v5 089/104] KVM: TDX: Add a placeholder for handler of TDX hypercalls (TDG.VP.VMCALL)
` [RFC PATCH v5 090/104] KVM: TDX: handle KVM hypercall with TDG.VP.VMCALL
` [RFC PATCH v5 091/104] KVM: TDX: Handle TDX PV CPUID hypercall
` [RFC PATCH v5 092/104] KVM: TDX: Handle TDX PV HLT hypercall
` [RFC PATCH v5 093/104] KVM: TDX: Handle TDX PV port io hypercall
` [RFC PATCH v5 094/104] KVM: TDX: Handle TDX PV MMIO hypercall
` [RFC PATCH v5 095/104] KVM: TDX: Implement callbacks for MSR operations for TDX
` [RFC PATCH v5 096/104] KVM: TDX: Handle TDX PV rdmsr hypercall
` [RFC PATCH v5 097/104] KVM: TDX: Handle TDX PV wrmsr hypercall
` [RFC PATCH v5 098/104] KVM: TDX: Handle TDX PV report fatal error hypercall
` [RFC PATCH v5 099/104] KVM: TDX: Handle TDX PV map_gpa hypercall
` [RFC PATCH v5 100/104] KVM: TDX: Silently discard SMI request
` [RFC PATCH v5 101/104] KVM: TDX: Silently ignore INIT/SIPI
` [RFC PATCH v5 102/104] KVM: TDX: Add methods to ignore accesses to CPU state
` [RFC PATCH v5 103/104] Documentation/virtual/kvm: Document on Trust Domain Extensions(TDX)
` [RFC PATCH v5 104/104] KVM: x86: design documentation on TDX support of x86 KVM TDP MMU

[PULL 00/19] 9p queue 2022-03-04
 2022-03-04 20:16 UTC  (3+ messages)

[Intel-gfx] [PATCH v2 0/8] Prep work for next GuC release
 2022-03-04 20:17 UTC  (4+ messages)
` [Intel-gfx] [PATCH v2 1/8] drm/i915/guc: Do not conflate lrc_desc with GuC id for registration

suricata: enable lua support
 2022-03-04 20:15 UTC  (2+ messages)
` [yocto] "

[PATCH v3] i386/sev: Ensure attestation report length is valid before retrieving
 2022-03-04 20:11 UTC  (2+ messages)

[PATCH] scsi: megaraid: cleanup formatting of megaraid
 2022-03-04 19:28 UTC  (15+ messages)

[LSF/MM/BPF BoF] BoF for Zoned Storage
 2022-03-04 20:12 UTC  (10+ messages)

[PATCH] net: bcmgenet: Return not supported if we don't have a WoL IRQ
 2022-03-04 20:12 UTC  (13+ messages)

[RFC PATCH v2 0/7] Add Sstc extension support
 2022-03-04 20:10 UTC  (24+ messages)
` [RFC PATCH v2 1/7] RISC-V: Add SSTC extension CSR details
` [RFC PATCH v2 2/7] RISC-V: Enable sstc extension parsing from DT
` [RFC PATCH v2 3/7] RISC-V: Prefer sstc extension if available
` [RFC PATCH v2 4/7] RISC-V: KVM: Remove 's' & 'u' as valid ISA extension
` [RFC PATCH v2 5/7] RISC-V: KVM: Restrict the extensions that can be disabled
` [RFC PATCH v2 6/7] RISC-V: KVM: Introduce ISA extension register
` [RFC PATCH v2 7/7] RISC-V: KVM: Support sstc extension

[OE-core] [PATCH] classes: add setuptools3_legacy
 2022-03-04 20:14 UTC  (2+ messages)

[PATCH 00/36] Arm cache coloring
 2022-03-04 20:13 UTC  (5+ messages)
` [PATCH 08/36] xen/arm: add colored flag to page struct
` [PATCH 27/36] xen/arch: add coloring support for Xen

Questions regarding regarding idt/renesas versaclock5 driver
 2022-03-04 20:07 UTC  (14+ messages)
        ` [EXTERNAL] "

Regression: memory corruption on Atmel SAMA5D31
 2022-03-04 20:06 UTC  (8+ messages)

[LSF/MM/BPF TOPIC] Netfs support library
 2022-03-04 20:06 UTC  (3+ messages)

[PATCH v1 00/10] Support for GMU coredump and some related improvements
 2022-03-04 19:22 UTC  (4+ messages)
` [PATCH v1 07/10] drm/msm/adreno: Retry on gpu resume failure

stable-rc/queue/4.14 build: 153 builds: 3 failed, 150 passed, 2 errors, 22 warnings (v4.14.269-12-gfbf41359100f)
 2022-03-04 19:26 UTC 

stable-rc/queue/4.9 build: 185 builds: 3 failed, 182 passed, 2 errors, 34 warnings (v4.9.304-11-gf0453fd60a62)
 2022-03-04 19:33 UTC 

[PATCH] bitbake-user-manual: further override syntax updates
 2022-03-04 20:11 UTC 

[PATCH 1/2] nvme: remove support or stream based temperature hint
 2022-03-04 19:38 UTC  (6+ messages)
` [PATCH 2/2] block: remove the per-bio/request write hint

[PATCH] mtd: rawnand: omap2: Actually prevent invalid configuration and build error
 2022-03-04 20:04 UTC  (5+ messages)

[PATCH] x86/bug: __WARN_FLAGS: prevent shadowing by renaming local variable f to __flags
 2022-03-04 19:26 UTC  (2+ messages)

Questiion on commit: demo/cyclictest: fix time delta calculation
 2022-03-04 20:09 UTC  (5+ messages)

[PATCH v3 0/6] Generic per-sb io stats
 2022-03-04 20:03 UTC  (11+ messages)
    ` nfs generic/373 failure after "fs: allow cross-vfsmount reflink/dedupe"

[PATCH 0/2] Fix bugs in public_key_verify_signature()
 2022-03-04 19:26 UTC  (4+ messages)
` [PATCH 1/2] KEYS: asymmetric: enforce that sig algo matches key algo

[PATCH v2 net-next 00/14] tcp: BIG TCP implementation
 2022-03-04 19:28 UTC  (4+ messages)
` [PATCH v2 net-next 04/14] ipv6: add struct hop_jumbo_hdr definition

[PATCH net] net: phy: meson-gxl: fix interrupt handling in forced mode
 2022-03-04 19:52 UTC  (4+ messages)

[meta-python][PATCH 1/2] unattended-upgrades: Move to meta-python
 2022-03-04 20:08 UTC  (2+ messages)

[PATCH v4 00/24] DEPT(Dependency Tracker)
 2022-03-04 19:28 UTC  (3+ messages)
` [PATCH v4 16/24] locking/lockdep, cpu/hotplus: Use a weaker annotation in AP thread

[ANNOUNCE] 4.19.232-rt104
 2022-03-04 19:35 UTC 

pm/testing build: 7 builds: 0 failed, 7 passed, 1 warning (thermal-5.17-rc7-127-g87852f90dc5a)
 2022-03-04 20:01 UTC 

[PATCH 1/2] EFI: console: Do not set colorstate until the first text output
 2022-03-04 20:08 UTC  (3+ messages)

[PATCH v4 00/18] target/arm: Implement LVA, LPA, LPA2 features
 2022-03-04 19:52 UTC  (5+ messages)
` [PATCH v4 18/18] hw/arm/virt: Disable LPA2 for -machine virt-6.2

[PATCH v5 0/2] target/arm: Enable LPA2
 2022-03-04 20:03 UTC  (3+ messages)
` [PATCH v5 1/2] target/arm: Provide cpu property for controling FEAT_LPA2
` [PATCH v5 2/2] hw/core: Disable LPA2 for -machine virt-6.2

[dunfell/master PATCH] pruss-fw: am57xx: Update hsr/prp/sw/dual-emac firmware
 2022-03-04 20:06 UTC  (4+ messages)

[ndctl PATCH] scripts/docsurgeon: Fix document header for section 1 man pages
 2022-03-04 20:06 UTC 

DWC3 Isoc Gadget Missed Interrupts on Start Transfer
 2022-03-04 19:36 UTC  (5+ messages)

[PATCH v2 0/5] iotests: add enhanced debugging info to qemu-img failures
 2022-03-04 19:47 UTC  (6+ messages)
` [PATCH v2 1/5] python/utils: add add_visual_margin() text decoration utility
` [PATCH v2 2/5] python/utils: add VerboseProcessError
` [PATCH v2 3/5] iotests: Remove explicit checks for qemu_img() == 0
` [PATCH v2 4/5] iotests: make qemu_img raise on non-zero rc by default
` [PATCH v2 5/5] iotests: fortify compare_images() against crashes

[PATCH bpf-next 0/4] Subskeleton support for BPF libraries
 2022-03-04 19:40 UTC  (12+ messages)
` [PATCH bpf-next 3/4] libbpf: add subskeleton scaffolding
` [PATCH bpf-next 2/4] bpftool: add support for subskeletons

[PATCH] hw/block: m25p80: Add support for w25q01jvq
 2022-03-04 19:47 UTC  (3+ messages)

[PATCH v8 0/6] Update gnulib version and drop most gnulib patches
 2022-03-04 20:04 UTC  (8+ messages)
` [PATCH v8 4/6] Drop gnulib no-abort.patch

[PATCH v3] test-lib.sh: Use GLIBC_TUNABLES instead of MALLOC_CHECK_ on glibc >= 2.34
 2022-03-04 19:59 UTC  (2+ messages)

Way to enumerate wireless adapters in kernel
 2022-03-04 19:59 UTC 

[meta-oe][PATCH 1/2] unattended-upgrades: Inherit setuptools3_legacy
 2022-03-04 20:03 UTC  (2+ messages)
` [meta-xfce][PATCH 2/2] menulibre: "

[PATCH v3 0/6] clocksource/drivers/timer-microchip-pit64b: fixes and improvements
 2022-03-04 19:46 UTC  (3+ messages)

[PATCH] libsepol: fix reallocarray imports
 2022-03-04 19:53 UTC  (2+ messages)

[PATCH v8 0/9] vfio/hisilicon: add ACC live migration driver
 2022-03-04 19:44 UTC  (4+ messages)
` [PATCH v8 8/9] hisi_acc_vfio_pci: Add support for VFIO live migration

❌ FAIL: Test report for kernel 5.13.0-rc7 (arm-next, 8ab9b1a9)
 2022-03-04 20:00 UTC  (11+ messages)
                  ` ??? "

[PATCH] KEYS: remove support for asym_tpm keys
 2022-03-04 19:40 UTC  (3+ messages)

[next] WARNING: suspicious RCU usage : include/linux/cgroup.h:494 suspicious rcu_dereference_check() usage
 2022-03-04 19:44 UTC  (3+ messages)

[PATCH v7 00/10] vfio/hisilicon: add ACC live migration driver
 2022-03-04 19:56 UTC  (11+ messages)
` [PATCH v7 07/10] vfio: Extend the device migration protocol with PRE_COPY

[PATCH] drm/bridge_connector: enable HPD by default if supported
 2022-03-04 19:38 UTC  (2+ messages)

[PATCH v2 0/3] contributor doc update around log messages
 2022-03-04 19:41 UTC  (6+ messages)
` [PATCH v3 3/3] SubmittingPatches: explain why we care about "
      ` log messages > comments (was: [PATCH v3 3/3] SubmittingPatches: explain why we care about log messages)
        ` log messages > comments

[PATCH v1 1/1] staging: fbtft: Consider type of init sequence values in fbtft_init_display()
 2022-03-04 19:34 UTC 

remove opencoded kmap of bio_vecs v2
 2022-03-04 19:29 UTC  (3+ messages)
` [PATCH 01/10] iss-simdisk: use bvec_kmap_local in simdisk_submit_bio

[PATCH] mm: madvise: MADV_DONTNEED_LOCKED
 2022-03-04 19:26 UTC  (2+ messages)

[Intel-gfx] [PATCH v3 0/3] vm- and vma cleanups
 2022-03-04 20:00 UTC  (2+ messages)
` [Intel-gfx] ✓ Fi.CI.IGT: success for vm- and vma cleanups (rev2)

[PATCH v1 1/1] irqchip/gic-v3-its: fixup IRQ affinities to account for online CPUs
 2022-03-04 19:52 UTC 

[PATCH v2] ceph: fix memory leakage in ceph_readdir
 2022-03-04 19:42 UTC  (4+ messages)

[PATCH v4 00/12] KVM: mm: fd-based approach for supporting KVM guest private memory
 2022-03-04 19:24 UTC  (8+ messages)
` [PATCH v4 01/12] mm/shmem: Introduce F_SEAL_INACCESSIBLE

[PATCH] simpldrm: Enable boot time VESA graphic mode selection
 2022-03-04 20:00 UTC  (5+ messages)

[PATCH v2] i386/sev: Ensure attestation report length is valid before retrieving
 2022-03-04 19:37 UTC 

[Intel-gfx] [PATCH] drm/i915: stop checking for NULL vma->obj
 2022-03-04 19:58 UTC  (2+ messages)
` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for "

[PATCH v3 00/39] x86: Kernel IBT
 2022-03-04 19:48 UTC  (4+ messages)
` [PATCH v3 18/39] x86/ibt,ftrace: Make function-graph play nice

[dm-devel] remove bio_devname
 2022-03-04 18:01 UTC  (4+ messages)
` [dm-devel] [PATCH 05/10] dm-integrity: stop using bio_devname
` [dm-devel] [PATCH 07/10] raid1: "
` [dm-devel] [PATCH 08/10] raid5-ppl: "

[RFC] [PATCH] binman: support mkimage split files
 2022-03-04 19:56 UTC  (2+ messages)
` [PATCH v2] binman: support mkimage separate files

[PATCH v2 00/12] nbd: enable use of TLS on non-TCP transports and other TLS improvements
 2022-03-04 19:36 UTC  (7+ messages)
` [PATCH v2 06/12] tests/qemu-iotests: add QEMU_IOTESTS_REGEN=1 to update reference file
` [PATCH v2 07/12] tests/qemu-iotests: expand _filter_nbd rules
` [PATCH v2 09/12] tests/qemu-iotests: convert NBD TLS test to use standard filters
` [PATCH v2 10/12] tests/qemu-iotests: validate NBD TLS with hostname mismatch
` [PATCH v2 11/12] tests/qemu-iotests: validate NBD TLS with UNIX sockets
` [PATCH v2 12/12] tests/qemu-iotests: validate NBD TLS with UNIX sockets and PSK

[Intel-gfx] [PATCH 0/8] Some more bits for small BAR enabling
 2022-03-04 19:56 UTC  (2+ messages)
` [Intel-gfx] ✗ Fi.CI.BAT: failure for "


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.