public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2023-11-07 13:46:18 to 2023-11-07 15:20:00 UTC [more...]

[PATCH v17 000/116] KVM TDX basic feature support
 2023-11-07 14:57 UTC  (92+ messages)
` [PATCH v17 001/116] KVM: VMX: Move out vmx_x86_ops to 'main.c' to wrap VMX and TDX
` [PATCH v17 002/116] KVM: x86/vmx: initialize loaded_vmcss_on_cpu in vmx_hardware_setup()
` [PATCH v17 003/116] KVM: x86/vmx: Refactor KVM VMX module init/exit functions
` [PATCH v17 004/116] KVM: VMX: Reorder vmx initialization with kvm vendor initialization
` [PATCH v17 005/116] KVM: TDX: Initialize the TDX module when loading the KVM intel kernel module
` [PATCH v17 006/116] KVM: TDX: Add placeholders for TDX VM/vcpu structure
` [PATCH v17 007/116] KVM: TDX: Make TDX VM type supported
` [PATCH v17 008/116] [MARKER] The start of TDX KVM patch series: TDX architectural definitions
` [PATCH v17 009/116] KVM: TDX: Define "
` [PATCH v17 010/116] KVM: TDX: Add TDX "architectural" error codes
` [PATCH v17 011/116] KVM: TDX: Add C wrapper functions for SEAMCALLs to the TDX module
` [PATCH v17 012/116] KVM: TDX: Retry SEAMCALL on the lack of entropy error
` [PATCH v17 013/116] KVM: TDX: Add helper functions to print TDX SEAMCALL error
` [PATCH v17 014/116] [MARKER] The start of TDX KVM patch series: TD VM creation/destruction
` [PATCH v17 015/116] x86/cpu: Add helper functions to allocate/free TDX private host key id
` [PATCH v17 016/116] x86/virt/tdx: Add a helper function to return system wide info about TDX module
` [PATCH v17 017/116] KVM: TDX: Add place holder for TDX VM specific mem_enc_op ioctl
` [PATCH v17 018/116] KVM: TDX: x86: Add ioctl to get TDX systemwide parameters
` [PATCH v17 019/116] KVM: x86, tdx: Make KVM_CAP_MAX_VCPUS backend specific
` [PATCH v17 020/116] KVM: TDX: create/destroy VM structure
` [PATCH v17 021/116] KVM: TDX: initialize VM with TDX specific parameters
` [PATCH v17 022/116] KVM: TDX: Make pmu_intel.c ignore guest TD case
` [PATCH v17 023/116] KVM: TDX: Refuse to unplug the last cpu on the package
` [PATCH v17 024/116] [MARKER] The start of TDX KVM patch series: TD vcpu creation/destruction
` [PATCH v17 025/116] KVM: TDX: allocate/free TDX vcpu structure
` [PATCH v17 026/116] KVM: TDX: Do TDX specific vcpu initialization
` [PATCH v17 027/116] [MARKER] The start of TDX KVM patch series: KVM MMU GPA shared bits
` [PATCH v17 028/116] KVM: x86/mmu: introduce config for PRIVATE KVM MMU
` [PATCH v17 029/116] KVM: x86/mmu: Add address conversion functions for TDX shared bit of GPA
` [PATCH v17 030/116] [MARKER] The start of TDX KVM patch series: KVM TDP refactoring for TDX
` [PATCH v17 031/116] KVM: Allow page-sized MMU caches to be initialized with custom 64-bit values
` [PATCH v17 032/116] KVM: x86/mmu: Replace hardcoded value 0 for the initial value for SPTE
` [PATCH v17 033/116] KVM: x86/mmu: Allow non-zero value for non-present SPTE and removed SPTE
` [PATCH v17 034/116] KVM: x86/mmu: Add Suppress VE bit to shadow_mmio_mask/shadow_present_mask
` [PATCH v17 035/116] KVM: x86/mmu: Track shadow MMIO value on a per-VM basis
` [PATCH v17 036/116] KVM: x86/mmu: Disallow fast page fault on private GPA
` [PATCH v17 037/116] KVM: x86/mmu: Allow per-VM override of the TDP max page level
` [PATCH v17 038/116] KVM: VMX: Introduce test mode related to EPT violation VE
` [PATCH v17 039/116] [MARKER] The start of TDX KVM patch series: KVM TDP MMU hooks
` [PATCH v17 040/116] KVM: x86/mmu: Assume guest MMIOs are shared
` [PATCH v17 041/116] KVM: x86/tdp_mmu: Init role member of struct kvm_mmu_page at allocation
` [PATCH v17 042/116] KVM: x86/mmu: Add a new is_private member for union kvm_mmu_page_role
` [PATCH v17 043/116] KVM: x86/mmu: Add a private pointer to struct kvm_mmu_page
` [PATCH v17 044/116] KVM: x86/tdp_mmu: Don't zap private pages for unsupported cases
` [PATCH v17 045/116] KVM: x86/tdp_mmu: Sprinkle __must_check
` [PATCH v17 046/116] KVM: x86/tdp_mmu: Support TDX private mapping for TDP MMU
` [PATCH v17 048/116] KVM: x86/mmu: TDX: Do not enable page track for TD guest
` [PATCH v17 051/116] KVM: TDX: Add accessors VMX VMCS helpers
` [PATCH v17 052/116] KVM: TDX: Add load_mmu_pgd method for TDX
` [PATCH v17 053/116] KVM: TDX: Retry seamcall when TDX_OPERAND_BUSY with operand SEPT
` [PATCH v17 054/116] KVM: TDX: Require TDP MMU and mmio caching for TDX
` [PATCH v17 055/116] KVM: TDX: TDP MMU TDX support
` [PATCH v17 056/116] KVM: TDX: MTRR: implement get_mt_mask() for TDX
` [PATCH v17 057/116] [MARKER] The start of TDX KVM patch series: TD finalization
` [PATCH v17 058/116] KVM: x86/mmu: Introduce kvm_mmu_map_tdp_page() for use by TDX
` [PATCH v17 059/116] KVM: TDX: Create initial guest memory
` [PATCH v17 060/116] KVM: TDX: Finalize VM initialization
` [PATCH v17 061/116] [MARKER] The start of TDX KVM patch series: TD vcpu enter/exit
` [PATCH v17 062/116] KVM: TDX: Implement TDX vcpu enter/exit path
` [PATCH v17 063/116] KVM: TDX: vcpu_run: save/restore host state(host kernel gs)
` [PATCH v17 064/116] KVM: TDX: restore host xsave state when exit from the guest TD
` [PATCH v17 065/116] KVM: x86: Allow to update cached values in kvm_user_return_msrs w/o wrmsr
` [PATCH v17 066/116] KVM: TDX: restore user ret MSRs
` [PATCH v17 067/116] KVM: TDX: Add TSX_CTRL msr into uret_msrs list
` [PATCH v17 068/116] [MARKER] The start of TDX KVM patch series: TD vcpu exits/interrupts/hypercalls
` [PATCH v17 069/116] KVM: TDX: complete interrupts after tdexit
` [PATCH v17 071/116] KVM: TDX: handle vcpu migration over logical processor
` [PATCH v17 073/116] KVM: TDX: Add support for find pending IRQ in a protected local APIC
` [PATCH v17 074/116] KVM: x86: Assume timer IRQ was injected if APIC state is proteced
` [PATCH v17 075/116] KVM: TDX: remove use of struct vcpu_vmx from posted_interrupt.c
` [PATCH v17 076/116] KVM: TDX: Implement interrupt injection
` [PATCH v17 079/116] KVM: VMX: Modify NMI and INTR handlers to take intr_info as function argument
` [PATCH v17 080/116] KVM: VMX: Move NMI/exception handler to common helper
` [PATCH v17 082/116] KVM: TDX: Add a place holder to handle TDX VM exit
` [PATCH v17 084/116] KVM: TDX: handle EXIT_REASON_OTHER_SMI
` [PATCH v17 085/116] KVM: TDX: handle ept violation/misconfig exit
` [PATCH v17 086/116] KVM: TDX: handle EXCEPTION_NMI and EXTERNAL_INTERRUPT
` [PATCH v17 087/116] KVM: TDX: Handle EXIT_REASON_OTHER_SMI with MSMI
` [PATCH v17 088/116] KVM: TDX: Add a place holder for handler of TDX hypercalls (TDG.VP.VMCALL)
` [PATCH v17 089/116] KVM: TDX: handle KVM hypercall with TDG.VP.VMCALL
` [PATCH v17 090/116] KVM: TDX: Add KVM Exit for TDX TDG.VP.VMCALL
` [PATCH v17 091/116] KVM: TDX: Handle TDX PV CPUID hypercall
` [PATCH v17 092/116] KVM: TDX: Handle TDX PV HLT hypercall
` [PATCH v17 093/116] KVM: TDX: Handle TDX PV port io hypercall
` [PATCH v17 097/116] KVM: TDX: Handle MSR MTRRCap and MTRRDefType access
` [PATCH v17 098/116] KVM: TDX: Handle MSR IA32_FEAT_CTL MSR and IA32_MCG_EXT_CTL
` [PATCH v17 099/116] KVM: TDX: Handle TDG.VP.VMCALL<GetTdVmCallInfo> hypercall
` [PATCH v17 100/116] KVM: TDX: Silently discard SMI request
` [PATCH v17 106/116] KVM: TDX: Add methods to ignore accesses to TSC
` [PATCH v17 110/116] KVM: TDX: Inhibit APICv for TDX guest
` [PATCH v17 114/116] RFC: KVM: x86: Add x86 callback to check cpuid

[PATCH v6 00/16] KVM TDX: TDP MMU: large page support
 2023-11-07 15:00 UTC  (17+ messages)
` [PATCH v6 01/16] KVM: TDP_MMU: Go to next level if smaller private mapping exists
` [PATCH v6 02/16] KVM: TDX: Pass page level to cache flush before TDX SEAMCALL
` [PATCH v6 03/16] KVM: TDX: Pass KVM page level to tdh_mem_page_add() and tdh_mem_page_aug()
` [PATCH v6 04/16] KVM: TDX: Pass size to tdx_measure_page()
` [PATCH v6 05/16] KVM: TDX: Pass size to reclaim_page()
` [PATCH v6 06/16] KVM: TDX: Update tdx_sept_{set,drop}_private_spte() to support large page
` [PATCH v6 07/16] KVM: MMU: Introduce level info in PFERR code
` [PATCH v6 08/16] KVM: TDX: Pin pages via get_page() right before ADD/AUG'ed to TDs
` [PATCH v6 09/16] KVM: TDX: Pass desired page level in err code for page fault handler
` [PATCH v6 10/16] KVM: x86/tdp_mmu: Allocate private page table for large page split
` [PATCH v6 11/16] KVM: x86/tdp_mmu: Split the large page when zap leaf
` [PATCH v6 12/16] KVM: x86/tdp_mmu, TDX: Split a large page when 4KB page within it converted to shared
` [PATCH v6 13/16] KVM: x86/tdp_mmu: Try to merge pages into a large page
` [PATCH v6 14/16] KVM: x86/tdp_mmu: TDX: Implement "
` [PATCH v6 15/16] KVM: x86/mmu: Make kvm fault handler aware of large page of private memslot
` [PATCH v6 16/16] KVM: TDX: Allow 2MB large page for TD GUEST

[PATCH v2] nbd: fix uaf in nbd_open
 2023-11-07 15:05 UTC  (2+ messages)

[PATCH v10 3/5] PCI: move pci_clear_and_set_dword helper to pci header
 2023-11-07 15:03 UTC  (2+ messages)

[PATCH AUTOSEL 5.4 1/6] drm/komeda: drop all currently held locks if deadlock happens
 2023-11-07 12:31 UTC  (3+ messages)
` [PATCH AUTOSEL 5.4 2/6] drm/amd: Fix UBSAN array-index-out-of-bounds for SMU7
` [PATCH AUTOSEL 5.4 5/6] drm/amdgpu: Fix a null pointer access when the smc_rreg pointer is NULL

[Bug report] A variant deadlock issue of CPU hot-unplug operation vs. the CFS bandwidth timer
 2023-11-07 14:57 UTC  (2+ messages)

[PATCH] f2fs: the name of a struct is wrong in a comment
 2023-11-07 14:56 UTC  (2+ messages)

[RFC v1 0/8] vhost-vdpa: add support for iommufd
 2023-11-07 14:55 UTC  (7+ messages)

[PATCH] arm64: dts: imx8mn-var-som-symphony: add vcc supply for PCA9534
 2023-11-07 14:54 UTC  (5+ messages)

[PATCH] f2fs: fix thread name cannot be fully displayed
 2023-11-07 14:53 UTC  (2+ messages)

[GIT PULL] vfs fanotify fsid updates
 2023-11-07 14:49 UTC 

[PATCH 00/10] sysctl: Remove sentinel elements from kernel dir
 2023-11-07 14:49 UTC  (7+ messages)
` [PATCH 06/10] scheduler: Remove the now superfluous sentinel elements from ctl_table array
` [PATCH 07/10] printk: "
` [PATCH 08/10] kprobes: "
` [PATCH 09/10] delayacct: "
` [PATCH 10/10] bpf: "

[PATCH v4 0/3] arm64: Add a build target for Flat Image Tree
 2023-11-07 14:48 UTC  (4+ messages)
` [PATCH v4 1/3] kbuild: arm64: Add BOOT_TARGETS variable
` [PATCH v4 2/3] arm: boot: Move the single quotes for image name
` [PATCH v4 3/3] arm64: boot: Support Flat Image Tree

[PATCH v2 0/3] arm64: Add a build target for Flat Image Tree
 2023-11-07 14:47 UTC  (6+ messages)
` [PATCH v2 2/3] arm: boot: Use double quotes for image name

[PATCH v11] platform/x86: Add Silicom Platform Driver
 2023-11-07 14:47 UTC  (2+ messages)

selftests: arm64: fp-stress: Unable to handle kernel paging request at virtual address
 2023-11-07 14:44 UTC  (3+ messages)

[PATCH v7 0/4] arm64: qcom: sa8775p: add support for EP PCIe
 2023-11-07 14:44 UTC  (3+ messages)
` [PATCH v7 3/4] PCI: epf-mhi: Add support for SA8775P

[PATCH v5 0/7] SCHED_DEADLINE server infrastructure
 2023-11-07 14:44 UTC  (7+ messages)
` [PATCH v5 7/7] sched/fair: Fair server interface

[PATCH 1/1] f2fs: fix fallocate failed under pinned block situation
 2023-11-07 14:39 UTC  (2+ messages)

[PATCH v14 00/34] KVM: guest_memfd() and per-page attributes
 2023-11-07 14:38 UTC  (3+ messages)
` [PATCH 33/34] KVM: selftests: Test KVM exit behavior for private memory/access

[PATCH v3 0/3] Add a test to catch unprobed Devicetree devices
 2023-11-07 14:36 UTC  (7+ messages)
` [PATCH v3 3/3] kselftest: Add new test for detecting "

[PATCH 0/5] mei: hdcp/pxp: adapt for Xe driver
 2023-11-07 14:35 UTC  (10+ messages)
` [PATCH 1/5] Revert "mei/hdcp: Also enable for XE"
` [PATCH 2/5] mei: hdcp: match without driver name
` [PATCH 3/5] mei: pxp: "
` [PATCH 4/5] mei: hdcp: add dependency on Xe driver
` [PATCH 5/5] mei: pxp: "

[PATCH] exfat: Fix uninit-value access in __exfat_write_inode()
 2023-11-07 14:30 UTC 

[PATCH v3 0/3] cgroup/rstat: Reduce cpu_lock hold time in cgroup_rstat_flush_locked()
 2023-11-07 14:28 UTC  (6+ messages)
` [PATCH v3 2/3] cgroup/rstat: Optimize cgroup_rstat_updated_list()

[PATCH 0/6] mm: cleanup and use more folio in page fault
 2023-11-07 14:24 UTC  (8+ messages)
` [PATCH 1/6] mm: ksm: use more folio api in ksm_might_need_to_copy()
` [PATCH 2/6] mm: memory: use a folio in validate_page_before_insert()
` [PATCH 3/6] mm: memory: rename page_copy_prealloc() to folio_prealloc()
` [PATCH 4/6] mm: memory: use a folio in do_cow_page()
` [PATCH 5/6] mm: memory: use folio_prealloc() in wp_page_copy()
` [PATCH 6/6] mm: memory: use folio_prealloc() in do_anonymous_page()

[GIT PULL] gfs2 fixes
 2023-11-07 14:21 UTC 

[PATCH v2 0/3] reduce latency of normal synchronize_rcu() v2
 2023-11-07 14:21 UTC  (6+ messages)
` [PATCH v2 1/3] rcu: Reduce synchronize_rcu() latency

[PATCH] Documentation/arm64: Fix typos in elf_hwcaps
 2023-11-07 14:18 UTC  (2+ messages)

[PATCH v3] arm64/arm: arm_pmuv3: perf: Don't truncate 64-bit registers
 2023-11-07 14:18 UTC  (2+ messages)

[PATCH v1 0/2] perf cs-etm: Add support for itrace option 'T'
 2023-11-07 14:18 UTC  (8+ messages)
` [PATCH v1 1/2] perf auxtrace: Add 'T' itrace option for timestamp trace

[PATCH] perf: arm_cspmu: Reject events meant for other PMUs
 2023-11-07 14:17 UTC  (2+ messages)

[PATCH] f2fs: use inode_lock_shared instead of inode_lock in f2fs_seek_block()
 2023-11-07 14:16 UTC  (2+ messages)

[PATCH] pinctrl: s32cc: Avoid possible string truncation
 2023-11-07 14:10 UTC 

[PATCH 1/1] ALSA: hda: Add ASRock X670E Taichi to denylist
 2023-11-07 14:10 UTC  (2+ messages)

[RFC PATCH 00/32] tracing: fprobe: function_graph: Multi-function graph and fprobe on fgraph
 2023-11-07 14:09 UTC  (13+ messages)
` [RFC PATCH 24/32] x86/ftrace: Enable HAVE_FUNCTION_GRAPH_FREGS

[PATCH] ALSA: hda/realtek: Add quirk for ASUS UX7602ZM
 2023-11-07 14:08 UTC  (2+ messages)

[PATCH] drm/amd/pm: clean up redundant comparisons with 0
 2023-11-07 14:08 UTC  (2+ messages)

[PATCH v5 00/23] security: Move IMA and EVM to the LSM infrastructure
 2023-11-07 14:05 UTC  (13+ messages)
` [PATCH v5 13/23] security: Introduce file_pre_free_security hook
` [PATCH v5 14/23] security: Introduce path_post_mknod hook
` [PATCH v5 15/23] security: Introduce inode_post_create_tmpfile hook
` [PATCH v5 16/23] security: Introduce inode_post_set_acl hook
` [PATCH v5 17/23] security: Introduce inode_post_remove_acl hook
` [PATCH v5 18/23] security: Introduce key_post_create_or_update hook
` [PATCH v5 19/23] ima: Move to LSM infrastructure
` [PATCH v5 20/23] ima: Move IMA-Appraisal "
` [PATCH v5 21/23] evm: Move "
` [PATCH v5 22/23] integrity: Move integrity functions to the "
` [PATCH v5 23/23] integrity: Switch from rbtree to LSM-managed blob for integrity_iint_cache

[PATCH 0/3] ASoC: SOF: mediatek: remove unused variables
 2023-11-07 13:55 UTC  (7+ messages)
` [PATCH 1/3] ASoC: SOF: mediatek: mt8195: clean up unused code
` [PATCH 2/3] ASoC: SOF: mediatek: mt8186: "
` [PATCH 3/3] ASoC: SOF: mediatek: remove unused variables

[PATCH] ASoC: SOF: sof-client: trivial: fix comment typo
 2023-11-07 14:02 UTC  (2+ messages)

selftests: gpio: crash on arm64
 2023-11-07 13:51 UTC  (6+ messages)

[PATCH 0/9] media: rkvdec: Add HEVC backend
 2023-11-07 13:49 UTC  (2+ messages)

[PATCH net] page_pool: Add myself as page pool reviewer in MAINTAINERS
 2023-11-07 12:40 UTC  (3+ messages)

[PATCH v2 0/4] KVM: s390: Fix minor bugs in STFLE shadowing
 2023-11-07 12:31 UTC  (3+ messages)
` [PATCH v2 2/4] KVM: s390: vsie: Fix length of facility list shadowed
` [PATCH v2 4/4] KVM: s390: Minor refactor of base/ext facility lists

[PATCH AUTOSEL 5.10 01/11] drm/komeda: drop all currently held locks if deadlock happens
 2023-11-07 12:30 UTC  (3+ messages)
` [PATCH AUTOSEL 5.10 07/11] drm/panel: fix a possible null pointer dereference
` [PATCH AUTOSEL 5.10 08/11] drm/panel/panel-tpo-tpg110: "

[PATCH] Bluetooth: btusb: Return when coredump trigger cmd fails
 2023-11-07 13:46 UTC 


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