public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2022-03-04 17:46:09 to 2022-03-04 20:10:31 UTC [more...]

[RFC PATCH v5 000/104] KVM TDX basic feature support
 2022-03-04 19:50 UTC  (72+ 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 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 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 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 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 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 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

[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

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

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

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

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

[PATCH v3 0/6] clocksource/drivers/timer-microchip-pit64b: fixes and improvements
 2022-03-04 19:46 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

[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 v1 1/1] staging: fbtft: Consider type of init sequence values in fbtft_init_display()
 2022-03-04 19:34 UTC 

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

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

[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 v3 00/39] x86: Kernel IBT
 2022-03-04 19:48 UTC  (15+ messages)
` [PATCH v3 05/39] x86/ibt: Add ANNOTATE_NOENDBR
` [PATCH v3 18/39] x86/ibt,ftrace: Make function-graph play nice
` [PATCH v3 22/39] x86/ibt: Add IBT feature, MSR and #CP handling
` [PATCH v3 23/39] x86/alternative: Simplify int3_selftest_ip
` [PATCH v3 37/39] objtool: Optionally WARN about unused ANNOTATE_NOENDBR

[PATCH v2] mm/page_alloc: call check_new_pages() while zone spinlock is not held
 2022-03-04 19:19 UTC  (2+ messages)

[PATCH v32 00/28] LSM: Module stacking for AppArmor
 2022-03-04 19:14 UTC  (4+ messages)
` [PATCH v32 03/28] LSM: Add the lsmblob data structure

[PATCH 00/35] Shadow stacks for userspace
 2022-03-04 19:13 UTC  (14+ messages)

[PATCH v3] x86/sgx: Do not limit EAUG'd pages by pre-initialization policy
 2022-03-04 19:09 UTC  (2+ messages)

[PATCH v2 00/12] KVM: x86/pmu: Get rid of PERF_TYPE_HARDWAR and other minor fixes
 2022-03-04 19:06 UTC  (5+ messages)
` [PATCH v2 12/12] KVM: x86/pmu: Clear reserved bit PERF_CTL2[43] for AMD erratum 1292

[PATCH mmotm] mempolicy: mbind_range() set_policy() after vma_merge()
 2022-03-04 19:05 UTC  (4+ messages)

[PATCH 1/1] libbpf: ensure F_DUPFD_CLOEXEC is defined
 2022-03-04 19:01 UTC  (3+ messages)

[PATCH v2 0/5] slab cleanups
 2022-03-04 19:01 UTC  (9+ messages)
` [PATCH v2 2/5] mm/sl[au]b: unify __ksize()
` [PATCH v2 3/5] mm/sl[auo]b: move definition of __ksize() to mm/slab.h
` [PATCH v2 4/5] mm/slub: limit number of node partial slabs only in cache creation
` [PATCH v2 5/5] mm/slub: refactor deactivate_slab()

[PATCH] mm: thp: don't have to lock page anymore when splitting PMD
 2022-03-04 19:01 UTC  (4+ messages)

[PATCH v2 0/2] Add PWM driver for Suplus SP7021 SoC
 2022-03-04 18:57 UTC  (3+ messages)
` [PATCH v2 2/2] pwm:sunplus-pwm:Add Sunplus SoC PWM Driver

[PATCH v2] kbuild: Make $(LLVM) more flexible
 2022-03-04 18:55 UTC  (4+ messages)

[PATCH] memcg: sync flush only if periodic flush is delayed
 2022-03-04 18:53 UTC  (2+ messages)

[RFC PATCH v3 0/4] remoteproc: restructure the remoteproc VirtIO device
 2022-03-04 18:53 UTC  (9+ messages)
` [RFC PATCH v3 1/4] remoteproc: core: Introduce virtio device add/remove functions
` [RFC PATCH v3 2/4] remoteproc: core: Introduce rproc_register_rvdev function
` [RFC PATCH v3 3/4] remoteproc: Move rproc_vdev management to remoteproc_virtio.c
` [RFC PATCH v3 4/4] remoteproc: virtio: Create platform device for the remoteproc_virtio

[PATCH v1] mtd: spi-nor: unset quad_enable if SFDP doesn't specify it
 2022-03-04 18:51 UTC 

[PATCH V2 0/4] Add tracer tool for AMD P-State driver
 2022-03-04 18:49 UTC  (4+ messages)
` [PATCH V2 1/4] cpufreq: amd-pstate: Add more tracepoint for AMD P-State module

[PATCH v2 1/1] serial: 8520_mtk: Prepare for platform_get_irq_optional() changes
 2022-03-04 18:48 UTC  (3+ messages)

[PATCH] scsi: megaraid: cleanup formatting of megaraid
 2022-03-04 18:48 UTC  (14+ messages)

[PATCH v2] driver core: Add sysfs support for physical location of a device
 2022-03-04 18:47 UTC  (2+ messages)

[PATCH] linux/bits.h: fix -Wtype-limits warnings in GENMASK_INPUT_CHECK()
 2022-03-04 18:46 UTC  (2+ messages)

[PATCH v4 00/30] KVM: x86/mmu: Overhaul TDP MMU zapping and flushing
 2022-03-04 18:42 UTC  (12+ messages)
` [PATCH v4 18/30] KVM: x86/mmu: Zap only TDP MMU leafs in kvm_zap_gfn_range()
` [PATCH v4 21/30] KVM: x86/mmu: Zap invalidated roots via asynchronous worker

[PATCH v16 0/4] MIPS: JZ4780 and CI20 HDMI
 2022-03-04 18:41 UTC  (16+ messages)
` [PATCH v16 1/4] drm/bridge: dw-hdmi: introduce dw_hdmi_enable_poll()
      ` [Letux-kernel] "

[PATCH bpf-next v2 00/28] Introduce eBPF support for HID devices
 2022-03-04 18:41 UTC  (20+ messages)
` [PATCH bpf-next v2 02/28] bpf: introduce hid program type
` [PATCH bpf-next v2 03/28] HID: hook up with bpf
` [PATCH bpf-next v2 06/28] samples/bpf: add new hid_mouse example
` [PATCH bpf-next v2 07/28] bpf/hid: add a new attach type to change the report descriptor
` [PATCH bpf-next v2 08/28] HID: allow to change the report descriptor from an eBPF program
` [PATCH bpf-next v2 10/28] selftests/bpf: add report descriptor fixup tests
` [PATCH bpf-next v2 11/28] samples/bpf: add a report descriptor fixup
` [PATCH bpf-next v2 12/28] bpf/hid: add hid_{get|set}_data helpers
` [PATCH bpf-next v2 13/28] HID: bpf: implement hid_bpf_get|set_data

[PATCH bpf-next v1 0/9] Extend cgroup interface with bpf
 2022-03-04 18:37 UTC  (7+ messages)
` [PATCH bpf-next v1 1/9] bpf: Add mkdir, rmdir, unlink syscalls for prog_bpf_syscall

[GIT PULL] Thermal control fix for v5.17-rc7
 2022-03-04 18:37 UTC 

[PATCH 3/3] x86/PCI: Preserve host bridge windows completely covered by E820
 2022-03-04 18:34 UTC  (2+ messages)

[PATCH v9 0/1] This patch fixes a reference count issue in the TPM core code
 2022-03-04 18:34 UTC  (5+ messages)
` [PATCH v9 1/1] tpm: fix reference counting for struct tpm_chip

[PATCH 0/3] ceph: minor fixes and encrypted snapshot names
 2022-03-04 18:30 UTC  (9+ messages)
` [PATCH 1/3] ceph: fix error path in ceph_readdir()
` [PATCH 2/3] ceph: fix use-after-free in ceph_readdir
` [PATCH 3/3] ceph: add support for encrypted snapshot names

[PATCH v4 1/3] iio: temperature: ltc2983: Don't hard code defined constants in messages
 2022-03-04 18:28 UTC  (4+ messages)
` [PATCH v4 2/3] iio: temperature: ltc2983: Use single error path to put OF node
` [PATCH v4 3/3] iio: temperature: ltc2983: Make use of device properties

[PATCH v2 0/2] Add PCIE device IDs for Intel DFL cards
 2022-03-04 18:30 UTC  (5+ messages)
` [PATCH v2 1/2] Documentation: fpga: dfl: add PCI Identification documentation

[PATCH V2 00/11] perf intel-pt: Add perf event clocks to better support VM tracing
 2022-03-04 18:27 UTC  (7+ messages)
` [PATCH V2 02/11] perf/x86: Add support for TSC as a perf event clock
` [PATCH V2 03/11] perf/x86: Add support for TSC in nanoseconds "

[PATCH] clk: at91: sama7g5: fix parents of PDMCs' GCLK
 2022-03-04 18:26 UTC 

[PATCH] mISDN: Fix memory leak in dsp_pipeline_build()
 2022-03-04 18:25 UTC 

[PATCH] arm64: hyperv: make the format of 'Hyper-V: Host Build' output match x86
 2022-03-04 18:22 UTC  (2+ messages)

[PATCH 0/6] Add driver for SAMA7G5's PDMC
 2022-03-04 18:17 UTC  (7+ messages)
` [PATCH 1/6] ASoC: dmaengine: do not use a NULL prepare_slave_config() callback
` [PATCH 2/6] ASoC: add DT bindings for Microchip PDMC
` [PATCH 3/6] ASoC: atmel: mchp-pdmc: add PDMC driver
` [PATCH 4/6] ARM: dts: at91: sama7g5: add nodes for PDMC
` [PATCH 5/6] ARM: dts: at91: sama7g5ek: add node for PDMC0
` [PATCH 6/6] ARM: configs: at91: sama7_defconfig: add MCHP PDMC and DMIC drivers

[PATCH] Documentation/process: Add Researcher Guidelines
 2022-03-04 18:15 UTC  (5+ messages)

[RFC PATCH 0/2] Alloc kfence_pool after system startup
 2022-03-04 18:14 UTC  (8+ messages)
` [RFC PATCH 1/2] kfence: Allow re-enabling KFENCE "
` [RFC PATCH 2/2] kfence: Alloc kfence_pool "

[PATCH v3] Documentation/process: Add Researcher Guidelines
 2022-03-04 18:14 UTC 

Regression of madvise(MADV_COLD) on shmem?
 2022-03-04 17:55 UTC 

[PATCH] driver core: Add sysfs support for physical location of a device
 2022-03-04 18:11 UTC  (2+ messages)

[perf vendor events] 3f5f0df7bf: perf-sanity-tests.perf_all_metrics_test.fail
 2022-03-04 18:10 UTC  (2+ messages)

[PATCH] clk: at91: sama7g5: Allow MCK1 to be exported and referenced in DT
 2022-03-04 18:09 UTC  (4+ messages)

[PATCH v2 0/2] soc: fujitsu: Add A64FX diagnostic interrupt driver
 2022-03-04 18:05 UTC  (3+ messages)
` [PATCH v2 1/2] tty/sysrq: Make sysrq handler NMI aware

[PATCH 00/21] Control VQ support in vDPA
 2022-03-04 18:04 UTC  (16+ messages)
` [RFC PATCH v2 00/19] "
  ` [RFC PATCH v2 06/19] vdpa: multiple address spaces support
  ` [RFC PATCH v2 07/19] vdpa: introduce config operations for associating ASID to a virtqueue group
  ` [RFC PATCH v2 09/19] vhost: support ASID in IOTLB API
  ` [RFC PATCH v2 10/19] vhost-vdpa: introduce asid based IOTLB
  ` [RFC PATCH v2 15/19] vhost-vdpa: support ASID based IOTLB API

[PATCH] vfs: do not try to evict inode when super is frozen
 2022-03-04 18:04 UTC  (4+ messages)

[PATCH] mm: Consider __GFP_NOWARN flag for oversized kvmalloc() calls
 2022-03-04 18:01 UTC  (3+ messages)

[PATCH v3] mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n
 2022-03-04 17:56 UTC  (2+ messages)

[PATCH v3 01/30] drivers: hv: dxgkrnl: Add virtual compute device VM bus channel guids
 2022-03-04 17:55 UTC  (9+ messages)
` [PATCH v3 02/30] drivers: hv: dxgkrnl: Driver initialization and loading

[PATCH v9 0/3] integrity: support including firmware ".platform" keys at build time
 2022-03-04 17:54 UTC  (4+ messages)
` [PATCH v9 1/3] certs: export load_certificate_list() to be used outside certs/
` [PATCH v9 2/3] integrity: make integrity_keyring_from_id() non-static
` [PATCH v9 3/3] integrity: support including firmware ".platform" keys at build time

Intel QAT on A2SDi-8C-HLN4F causes massive data corruption with dm-crypt + xfs
 2022-03-04 17:50 UTC  (11+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox