stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Pascal Ernster <git@hardfalcon.net>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>, stable@vger.kernel.org
Cc: patches@lists.linux.dev, Ard Biesheuvel <ardb@kernel.org>,
	"Borislav Petkov (AMD)" <bp@alien8.de>,
	Tom Lendacky <thomas.lendacky@amd.com>
Subject: Re: [PATCH 6.8 271/273] x86/sme: Move early SME kernel encryption handling into .head.text
Date: Tue, 9 Apr 2024 18:38:53 +0200	[thread overview]
Message-ID: <76489f58-6b60-4afd-9585-9f56960f7759@hardfalcon.net> (raw)
In-Reply-To: <20240408125317.917032769@linuxfoundation.org>

[2024-04-08 14:59] Greg Kroah-Hartman:
> 6.8-stable review patch.  If anyone has any objections, please let me know.
> 
> ------------------
> 
> From: Ard Biesheuvel <ardb@kernel.org>
> 
> commit 48204aba801f1b512b3abed10b8e1a63e03f3dd1 upstream.
> 
> The .head.text section is the initial primary entrypoint of the core
> kernel, and is entered with the CPU executing from a 1:1 mapping of
> memory. Such code must never access global variables using absolute
> references, as these are based on the kernel virtual mapping which is
> not active yet at this point.
> 
> Given that the SME startup code is also called from this early execution
> context, move it into .head.text as well. This will allow more thorough
> build time checks in the future to ensure that early startup code only
> uses RIP-relative references to global variables.
> 
> Also replace some occurrences of __pa_symbol() [which relies on the
> compiler generating an absolute reference, which is not guaranteed] and
> an open coded RIP-relative access with RIP_REL_REF().
> 
> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
> Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
> Tested-by: Tom Lendacky <thomas.lendacky@amd.com>
> Link: https://lore.kernel.org/r/20240227151907.387873-18-ardb+git@google.com
> Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> ---
>   arch/x86/include/asm/mem_encrypt.h |    8 +++----
>   arch/x86/mm/mem_encrypt_identity.c |   42 ++++++++++++++-----------------------
>   2 files changed, 21 insertions(+), 29 deletions(-)
> 
> --- a/arch/x86/include/asm/mem_encrypt.h
> +++ b/arch/x86/include/asm/mem_encrypt.h
> @@ -47,8 +47,8 @@ void __init sme_unmap_bootdata(char *rea
>   
>   void __init sme_early_init(void);
>   
> -void __init sme_encrypt_kernel(struct boot_params *bp);
> -void __init sme_enable(struct boot_params *bp);
> +void sme_encrypt_kernel(struct boot_params *bp);
> +void sme_enable(struct boot_params *bp);
>   
>   int __init early_set_memory_decrypted(unsigned long vaddr, unsigned long size);
>   int __init early_set_memory_encrypted(unsigned long vaddr, unsigned long size);
> @@ -81,8 +81,8 @@ static inline void __init sme_unmap_boot
>   
>   static inline void __init sme_early_init(void) { }
>   
> -static inline void __init sme_encrypt_kernel(struct boot_params *bp) { }
> -static inline void __init sme_enable(struct boot_params *bp) { }
> +static inline void sme_encrypt_kernel(struct boot_params *bp) { }
> +static inline void sme_enable(struct boot_params *bp) { }
>   
>   static inline void sev_es_init_vc_handling(void) { }
>   
> --- a/arch/x86/mm/mem_encrypt_identity.c
> +++ b/arch/x86/mm/mem_encrypt_identity.c
> @@ -41,6 +41,7 @@
>   #include <linux/mem_encrypt.h>
>   #include <linux/cc_platform.h>
>   
> +#include <asm/init.h>
>   #include <asm/setup.h>
>   #include <asm/sections.h>
>   #include <asm/coco.h>
> @@ -94,7 +95,7 @@ struct sme_populate_pgd_data {
>    */
>   static char sme_workarea[2 * PMD_SIZE] __section(".init.scratch");
>   
> -static void __init sme_clear_pgd(struct sme_populate_pgd_data *ppd)
> +static void __head sme_clear_pgd(struct sme_populate_pgd_data *ppd)
>   {
>   	unsigned long pgd_start, pgd_end, pgd_size;
>   	pgd_t *pgd_p;
> @@ -109,7 +110,7 @@ static void __init sme_clear_pgd(struct
>   	memset(pgd_p, 0, pgd_size);
>   }
>   
> -static pud_t __init *sme_prepare_pgd(struct sme_populate_pgd_data *ppd)
> +static pud_t __head *sme_prepare_pgd(struct sme_populate_pgd_data *ppd)
>   {
>   	pgd_t *pgd;
>   	p4d_t *p4d;
> @@ -146,7 +147,7 @@ static pud_t __init *sme_prepare_pgd(str
>   	return pud;
>   }
>   
> -static void __init sme_populate_pgd_large(struct sme_populate_pgd_data *ppd)
> +static void __head sme_populate_pgd_large(struct sme_populate_pgd_data *ppd)
>   {
>   	pud_t *pud;
>   	pmd_t *pmd;
> @@ -162,7 +163,7 @@ static void __init sme_populate_pgd_larg
>   	set_pmd(pmd, __pmd(ppd->paddr | ppd->pmd_flags));
>   }
>   
> -static void __init sme_populate_pgd(struct sme_populate_pgd_data *ppd)
> +static void __head sme_populate_pgd(struct sme_populate_pgd_data *ppd)
>   {
>   	pud_t *pud;
>   	pmd_t *pmd;
> @@ -188,7 +189,7 @@ static void __init sme_populate_pgd(stru
>   		set_pte(pte, __pte(ppd->paddr | ppd->pte_flags));
>   }
>   
> -static void __init __sme_map_range_pmd(struct sme_populate_pgd_data *ppd)
> +static void __head __sme_map_range_pmd(struct sme_populate_pgd_data *ppd)
>   {
>   	while (ppd->vaddr < ppd->vaddr_end) {
>   		sme_populate_pgd_large(ppd);
> @@ -198,7 +199,7 @@ static void __init __sme_map_range_pmd(s
>   	}
>   }
>   
> -static void __init __sme_map_range_pte(struct sme_populate_pgd_data *ppd)
> +static void __head __sme_map_range_pte(struct sme_populate_pgd_data *ppd)
>   {
>   	while (ppd->vaddr < ppd->vaddr_end) {
>   		sme_populate_pgd(ppd);
> @@ -208,7 +209,7 @@ static void __init __sme_map_range_pte(s
>   	}
>   }
>   
> -static void __init __sme_map_range(struct sme_populate_pgd_data *ppd,
> +static void __head __sme_map_range(struct sme_populate_pgd_data *ppd,
>   				   pmdval_t pmd_flags, pteval_t pte_flags)
>   {
>   	unsigned long vaddr_end;
> @@ -232,22 +233,22 @@ static void __init __sme_map_range(struc
>   	__sme_map_range_pte(ppd);
>   }
>   
> -static void __init sme_map_range_encrypted(struct sme_populate_pgd_data *ppd)
> +static void __head sme_map_range_encrypted(struct sme_populate_pgd_data *ppd)
>   {
>   	__sme_map_range(ppd, PMD_FLAGS_ENC, PTE_FLAGS_ENC);
>   }
>   
> -static void __init sme_map_range_decrypted(struct sme_populate_pgd_data *ppd)
> +static void __head sme_map_range_decrypted(struct sme_populate_pgd_data *ppd)
>   {
>   	__sme_map_range(ppd, PMD_FLAGS_DEC, PTE_FLAGS_DEC);
>   }
>   
> -static void __init sme_map_range_decrypted_wp(struct sme_populate_pgd_data *ppd)
> +static void __head sme_map_range_decrypted_wp(struct sme_populate_pgd_data *ppd)
>   {
>   	__sme_map_range(ppd, PMD_FLAGS_DEC_WP, PTE_FLAGS_DEC_WP);
>   }
>   
> -static unsigned long __init sme_pgtable_calc(unsigned long len)
> +static unsigned long __head sme_pgtable_calc(unsigned long len)
>   {
>   	unsigned long entries = 0, tables = 0;
>   
> @@ -284,7 +285,7 @@ static unsigned long __init sme_pgtable_
>   	return entries + tables;
>   }
>   
> -void __init sme_encrypt_kernel(struct boot_params *bp)
> +void __head sme_encrypt_kernel(struct boot_params *bp)
>   {
>   	unsigned long workarea_start, workarea_end, workarea_len;
>   	unsigned long execute_start, execute_end, execute_len;
> @@ -319,9 +320,8 @@ void __init sme_encrypt_kernel(struct bo
>   	 *     memory from being cached.
>   	 */
>   
> -	/* Physical addresses gives us the identity mapped virtual addresses */
> -	kernel_start = __pa_symbol(_text);
> -	kernel_end = ALIGN(__pa_symbol(_end), PMD_SIZE);
> +	kernel_start = (unsigned long)RIP_REL_REF(_text);
> +	kernel_end = ALIGN((unsigned long)RIP_REL_REF(_end), PMD_SIZE);
>   	kernel_len = kernel_end - kernel_start;
>   
>   	initrd_start = 0;
> @@ -339,14 +339,6 @@ void __init sme_encrypt_kernel(struct bo
>   #endif
>   
>   	/*
> -	 * We're running identity mapped, so we must obtain the address to the
> -	 * SME encryption workarea using rip-relative addressing.
> -	 */
> -	asm ("lea sme_workarea(%%rip), %0"
> -	     : "=r" (workarea_start)
> -	     : "p" (sme_workarea));
> -
> -	/*
>   	 * Calculate required number of workarea bytes needed:
>   	 *   executable encryption area size:
>   	 *     stack page (PAGE_SIZE)
> @@ -355,7 +347,7 @@ void __init sme_encrypt_kernel(struct bo
>   	 *   pagetable structures for the encryption of the kernel
>   	 *   pagetable structures for workarea (in case not currently mapped)
>   	 */
> -	execute_start = workarea_start;
> +	execute_start = workarea_start = (unsigned long)RIP_REL_REF(sme_workarea);
>   	execute_end = execute_start + (PAGE_SIZE * 2) + PMD_SIZE;
>   	execute_len = execute_end - execute_start;
>   
> @@ -498,7 +490,7 @@ void __init sme_encrypt_kernel(struct bo
>   	native_write_cr3(__native_read_cr3());
>   }
>   
> -void __init sme_enable(struct boot_params *bp)
> +void __head sme_enable(struct boot_params *bp)
>   {
>   	unsigned int eax, ebx, ecx, edx;
>   	unsigned long feature_mask;


Just to make sure this doesn't get lost: This patch causes the kernel to 
not boot on several x86_64 VMs of mine (I haven't tested it on a bare 
metal machine). For details and a kernel config to reproduce the issue, 
see 
https://lore.kernel.org/stable/fd186a2b-0c62-4942-bed3-a27d72930310@hardfalcon.net/


Regards
Pascal

  reply	other threads:[~2024-04-09 16:38 UTC|newest]

Thread overview: 313+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-08 12:54 [PATCH 6.8 000/273] 6.8.5-rc1 review Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 001/273] scripts/bpf_doc: Use silent mode when exec make cmd Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 002/273] xsk: Dont assume metadata is always requested in TX completion Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 003/273] s390/bpf: Fix bpf_plt pointer arithmetic Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 004/273] bpf, arm64: fix bug in BPF_LDX_MEMSX Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 005/273] dma-buf: Fix NULL pointer dereference in sanitycheck() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 006/273] arm64: bpf: fix 32bit unconditional bswap Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 007/273] nfc: nci: Fix uninit-value in nci_dev_up and nci_ntf_packet Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 008/273] nfsd: Fix error cleanup path in nfsd_rename() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 009/273] tools: ynl: fix setting presence bits in simple nests Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 010/273] mlxbf_gige: stop PHY during open() error paths Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 011/273] wifi: iwlwifi: mvm: pick the version of SESSION_PROTECTION_NOTIF Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 012/273] wifi: iwlwifi: mvm: rfi: fix potential response leaks Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 013/273] wifi: iwlwifi: mvm: include link ID when releasing frames Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 014/273] ALSA: hda: cs35l56: Set the init_done flag before component_add() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 015/273] ice: Refactor FW data type and fix bitmap casting issue Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 016/273] ice: fix memory corruption bug with suspend and rebuild Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 017/273] ixgbe: avoid sleeping allocation in ixgbe_ipsec_vf_add_sa() Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 018/273] igc: Remove stale comment about Tx timestamping Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 019/273] drm/xe: Remove unused xe_bo->props struct Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 020/273] drm/xe: Add exec_queue.sched_props.job_timeout_ms Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 021/273] drm/xe/guc_submit: use jiffies for job timeout Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 022/273] drm/xe/queue: fix engine_class bounds check Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 023/273] drm/xe/device: fix XE_MAX_GT_PER_TILE check Greg Kroah-Hartman
2024-04-08 12:54 ` [PATCH 6.8 024/273] drm/xe/device: fix XE_MAX_TILES_PER_DEVICE check Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 025/273] dpll: indent DPLL option type by a tab Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 026/273] s390/qeth: handle deferred cc1 Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 027/273] net: hsr: hsr_slave: Fix the promiscuous mode in offload mode Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 028/273] tcp: properly terminate timers for kernel sockets Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 029/273] net: wwan: t7xx: Split 64bit accesses to fix alignment issues Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 030/273] drm/rockchip: vop2: Remove AR30 and AB30 format support Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 031/273] selftests: vxlan_mdb: Fix failures with old libnet Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 032/273] gpiolib: Fix debug messaging in gpiod_find_and_request() Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 033/273] ACPICA: debugger: check status of acpi_evaluate_object() in acpi_db_walk_for_fields() Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 034/273] net: hns3: fix index limit to support all queue stats Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 035/273] net: hns3: fix kernel crash when devlink reload during pf initialization Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 036/273] net: hns3: mark unexcuted loopback test result as UNEXECUTED Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 037/273] tls: recv: process_rx_list shouldnt use an offset with kvec Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 038/273] tls: adjust recv return with async crypto and failed copy to userspace Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 039/273] tls: get psock ref after taking rxlock to avoid leak Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 040/273] mlxbf_gige: call request_irq() after NAPI initialized Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 041/273] drm/amd/display: Update P010 scaling cap Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 042/273] drm/amd/display: Send DTBCLK disable message on first commit Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 043/273] bpf: Protect against int overflow for stack access size Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 044/273] cifs: Fix duplicate fscache cookie warnings Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 045/273] netfilter: nf_tables: reject destroy command to remove basechain hooks Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 046/273] netfilter: nf_tables: reject table flag and netdev basechain updates Greg Kroah-Hartman
2024-04-08 13:31   ` Pablo Neira Ayuso
2024-04-08 13:35     ` Pablo Neira Ayuso
2024-04-08 12:55 ` [PATCH 6.8 047/273] netfilter: nf_tables: skip netdev hook unregistration if table is dormant Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 048/273] iommu: Validate the PASID in iommu_attach_device_pasid() Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 049/273] net: bcmasp: Bring up unimac after PHY link up Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 050/273] net: lan743x: Add set RFE read fifo threshold for PCI1x1x chips Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 051/273] Octeontx2-af: fix pause frame configuration in GMP mode Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 052/273] inet: inet_defrag: prevent sk release while still in use Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 053/273] drm/i915: Stop doing double audio enable/disable on SDVO and g4x+ DP Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 054/273] drm/i915/display: Disable AuxCCS framebuffers if built for Xe Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 055/273] drm/i915/xelpg: Extend some workarounds/tuning to gfx version 12.74 Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 056/273] drm/i915/mtl: Update workaround 14018575942 Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 057/273] drm/i915: Do not print pxp init failed with 0 when it succeed Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 058/273] dm integrity: fix out-of-range warning Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 059/273] modpost: do not make find_tosym() return NULL Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 060/273] kbuild: make -Woverride-init warnings more consistent Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 061/273] mm/treewide: replace pud_large() with pud_leaf() Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 062/273] Revert "x86/mm/ident_map: Use gbpages only where full GB page should be mapped." Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 063/273] gpio: cdev: sanitize the label before requesting the interrupt Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 064/273] RISC-V: KVM: Fix APLIC setipnum_le/be write emulation Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 065/273] RISC-V: KVM: Fix APLIC in_clrip[x] read emulation Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 066/273] KVM: arm64: Fix host-programmed guest events in nVHE Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 067/273] KVM: arm64: Fix out-of-IPA space translation fault handling Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 068/273] selinux: avoid dereference of garbage after mount failure Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 069/273] r8169: fix issue caused by buggy BIOS on certain boards with RTL8168d Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 070/273] x86/cpufeatures: Add new word for scattered features Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 071/273] x86/cpufeatures: Add CPUID_LNX_5 to track recently added Linux-defined word Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 072/273] x86/bpf: Fix IP after emitting call depth accounting Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 073/273] Revert "Bluetooth: hci_qca: Set BDA quirk bit if fwnode exists in DT" Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 074/273] arm64: dts: qcom: sc7180-trogdor: mark bluetooth address as broken Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 075/273] Bluetooth: qca: fix device-address endianness Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 076/273] Bluetooth: add quirk for broken address properties Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 077/273] Bluetooth: hci_event: set the conn encrypted before conn establishes Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 078/273] Bluetooth: Fix TOCTOU in HCI debugfs implementation Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 079/273] netfilter: nf_tables: release batch on table validation from abort path Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 080/273] netfilter: nf_tables: release mutex after nft_gc_seq_end " Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 081/273] selftests: mptcp: join: fix dev in check_endpoint Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 082/273] xen-netfront: Add missing skb_mark_for_recycle Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 083/273] net/rds: fix possible cp null dereference Greg Kroah-Hartman
2024-04-08 12:55 ` [PATCH 6.8 084/273] net: usb: ax88179_178a: avoid the interface always configured as random address Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 085/273] net: mana: Fix Rx DMA datasize and skb_over_panic Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 086/273] vsock/virtio: fix packet delivery to tap device Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 087/273] netfilter: nf_tables: reject new basechain after table flag update Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 088/273] netfilter: nf_tables: flush pending destroy work before exit_net release Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 089/273] netfilter: nf_tables: Fix potential data-race in __nft_flowtable_type_get() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 090/273] netfilter: nf_tables: discard table flag update with pending basechain deletion Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 091/273] netfilter: validate user input for expected length Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 092/273] vboxsf: Avoid an spurious warning if load_nls_xxx() fails Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 093/273] bpf, sockmap: Prevent lock inversion deadlock in map delete elem Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 094/273] mptcp: prevent BPF accessing lowat from a subflow socket Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 095/273] x86/retpoline: Do the necessary fixup to the Zen3/4 srso return thunk for !SRSO Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 096/273] KVM: arm64: Use TLBI_TTL_UNKNOWN in __kvm_tlb_flush_vmid_range() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 097/273] KVM: arm64: Ensure target address is granule-aligned for range TLBI Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 098/273] net/sched: act_skbmod: prevent kernel-infoleak Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 099/273] net: dsa: sja1105: Fix parameters order in sja1110_pcs_mdio_write_c45() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 100/273] net/sched: fix lockdep splat in qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 101/273] net: stmmac: fix rx queue priority assignment Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 102/273] net: phy: micrel: lan8814: Fix when enabling/disabling 1-step timestamping Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 103/273] net: txgbe: fix i2c dev name cannot match clkdev Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 104/273] net: fec: Set mac_managed_pm during probe Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 105/273] net: phy: micrel: Fix potential null pointer dereference Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 106/273] net: dsa: mv88e6xxx: fix usable ports on 88e6020 Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 107/273] selftests: net: gro fwd: update vxlan GRO test expectations Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 108/273] gro: fix ownership transfer Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 109/273] idpf: fix kernel panic on unknown packet types Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 110/273] ice: fix enabling RX VLAN filtering Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 111/273] i40e: Fix VF MAC filter removal Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 112/273] tcp: Fix bind() regression for v6-only wildcard and v4-mapped-v6 non-wildcard addresses Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 113/273] erspan: make sure erspan_base_hdr is present in skb->head Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 114/273] selftests: reuseaddr_conflict: add missing new line at the end of the output Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 115/273] tcp: Fix bind() regression for v6-only wildcard and v4(-mapped-v6) non-wildcard addresses Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 116/273] ax25: fix use-after-free bugs caused by ax25_ds_del_timer Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 117/273] e1000e: Workaround for sporadic MDI error on Meteor Lake systems Greg Kroah-Hartman
2024-04-19  8:44   ` Jiri Slaby
2024-04-19  9:03     ` Jiri Slaby
2024-04-19 15:38       ` Tony Nguyen
2024-04-30  7:40         ` Jiri Slaby
2024-04-08 12:56 ` [PATCH 6.8 118/273] ipv6: Fix infinite recursion in fib6_dump_done() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 119/273] mlxbf_gige: stop interface during shutdown Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 120/273] r8169: skip DASH fw status checks when DASH is disabled Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 121/273] udp: do not accept non-tunnel GSO skbs landing in a tunnel Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 122/273] udp: do not transition UDP GRO fraglist partial checksums to unnecessary Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 123/273] udp: prevent local UDP tunnel packets from being GROed Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 124/273] octeontx2-af: Fix issue with loading coalesced KPU profiles Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 125/273] octeontx2-pf: check negative error code in otx2_open() Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 126/273] octeontx2-af: Add array index check Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 127/273] i40e: fix i40e_count_filters() to count only active/new filters Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 128/273] i40e: fix vf may be used uninitialized in this function warning Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 129/273] i40e: Enforce software interrupt during busy-poll exit Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 130/273] scsi: sg: Avoid sg device teardown race Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 131/273] usb: typec: ucsi: Check for notifications after init Greg Kroah-Hartman
2024-04-08 16:36   ` Christian A. Ehrhardt
2024-04-09  7:12     ` Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 132/273] drm/amd: Flush GFXOFF requests in prepare stage Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 133/273] e1000e: Minor flow correction in e1000_shutdown function Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 134/273] e1000e: move force SMBUS from enable ulp function to avoid PHY loss issue Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 135/273] mean_and_variance: Drop always failing tests Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 136/273] net: ravb: Let IP-specific receive function to interrogate descriptors Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 137/273] net: ravb: Always process TX descriptor ring Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 138/273] net: ravb: Always update error counters Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 139/273] KVM: SVM: Use unsigned integers when dealing with ASIDs Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 140/273] KVM: SVM: Add support for allowing zero SEV ASIDs Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 141/273] selftests: mptcp: connect: fix shellcheck warnings Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 142/273] selftests: mptcp: use += operator to append strings Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 143/273] mptcp: dont account accept() of non-MPC client as fallback to TCP Greg Kroah-Hartman
2024-04-08 12:56 ` [PATCH 6.8 144/273] 9p: Fix read/write debug statements to report server reply Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 145/273] ASoC: wm_adsp: Fix missing mutex_lock in wm_adsp_write_ctl() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 146/273] ASoC: cs42l43: Correct extraction of data pointer in suspend/resume Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 147/273] riscv: mm: Fix prototype to avoid discarding const Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 148/273] riscv: hwprobe: do not produce frtace relocation Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 149/273] drivers/perf: riscv: Disable PERF_SAMPLE_BRANCH_* while not supported Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 150/273] block: count BLK_OPEN_RESTRICT_WRITES openers Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 151/273] RISC-V: Update AT_VECTOR_SIZE_ARCH for new AT_MINSIGSTKSZ Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 152/273] ASoC: amd: acp: fix for acp pdm configuration check Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 153/273] regmap: maple: Fix cache corruption in regcache_maple_drop() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 154/273] ALSA: hda: cs35l56: Add ACPI device match tables Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 155/273] drm/panfrost: fix power transition timeout warnings Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 156/273] nouveau/uvmm: fix addr/range calcs for remap operations Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 157/273] drm/prime: Unbreak virtgpu dma-buf export Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 158/273] ASoC: rt5682-sdw: fix locking sequence Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 159/273] ASoC: rt711-sdca: " Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 160/273] ASoC: rt711-sdw: " Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 161/273] ASoC: rt712-sdca-sdw: " Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 162/273] ASoC: rt722-sdca-sdw: " Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 163/273] ASoC: ops: Fix wraparound for mask in snd_soc_get_volsw Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 164/273] spi: s3c64xx: Extract FIFO depth calculation to a dedicated macro Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 165/273] spi: s3c64xx: sort headers alphabetically Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 166/273] spi: s3c64xx: explicitly include <linux/bits.h> Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 167/273] spi: s3c64xx: remove else after return Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 168/273] spi: s3c64xx: define a magic value Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 169/273] spi: s3c64xx: allow full FIFO masks Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 170/273] spi: s3c64xx: determine the fifo depth only once Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 171/273] spi: s3c64xx: Use DMA mode from fifo size Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 172/273] ASoC: amd: acp: fix for acp_init function error handling Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 173/273] regmap: maple: Fix uninitialized symbol ret warnings Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 174/273] ata: sata_sx4: fix pdc20621_get_from_dimm() on 64-bit Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 175/273] scsi: mylex: Fix sysfs buffer lengths Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 176/273] scsi: sd: Unregister device if device_add_disk() failed in sd_probe() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 177/273] Revert "ALSA: emu10k1: fix synthesizer sample playback position and caching" Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 178/273] drm/i915/dp: Fix DSC state HW readout for SST connectors Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 179/273] cifs: Fix caching to try to do open O_WRONLY as rdwr on server Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 180/273] spi: mchp-pci1xxx: Fix a possible null pointer dereference in pci1xxx_spi_probe Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 181/273] s390/pai: fix sampling event removal for PMU device driver Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 182/273] thermal: gov_power_allocator: Allow binding without cooling devices Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 183/273] thermal: gov_power_allocator: Allow binding without trip points Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 184/273] drm/i915/gt: Limit the reserved VM space to only the platforms that need it Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 185/273] ata: sata_mv: Fix PCI device ID table declaration compilation warning Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 186/273] ASoC: SOF: amd: fix for false dsp interrupts Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 187/273] SUNRPC: Fix a slow server-side memory leak with RPC-over-TCP Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 188/273] riscv: use KERN_INFO in do_trap Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 189/273] riscv: Fix warning by declaring arch_cpu_idle() as noinstr Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 190/273] riscv: Disable preemption when using patch_map() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 191/273] nfsd: hold a lighter-weight client reference over CB_RECALL_ANY Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 192/273] lib/stackdepot: move stack_record struct definition into the header Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 193/273] stackdepot: rename pool_index to pool_index_plus_1 Greg Kroah-Hartman
2024-04-08 15:00   ` Vlastimil Babka
2024-04-08 15:06     ` Vlastimil Babka
2024-04-08 12:57 ` [PATCH 6.8 194/273] x86/retpoline: Add NOENDBR annotation to the SRSO dummy return thunk Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 195/273] Revert "drm/amd/display: Send DTBCLK disable message on first commit" Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 196/273] gpio: cdev: check for NULL labels when sanitizing them for irqs Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 197/273] gpio: cdev: fix missed label sanitizing in debounce_setup() Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 198/273] ksmbd: dont send oplock break if rename fails Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 199/273] ksmbd: validate payload size in ipc response Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 200/273] ksmbd: do not set SMB2_GLOBAL_CAP_ENCRYPTION for SMB 3.1.1 Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 201/273] ALSA: hda: Add pplcllpl/u members to hdac_ext_stream Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 202/273] ALSA: hda/realtek - Fix inactive headset mic jack Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 203/273] ALSA: hda/realtek: Add sound quirks for Lenovo Legion slim 7 16ARHA7 models Greg Kroah-Hartman
2024-04-08 12:57 ` [PATCH 6.8 204/273] ALSA: hda/realtek: cs35l41: Support ASUS ROG G634JYR Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 205/273] ALSA: hda/realtek: Update Panasonic CF-SZ6 quirk to support headset with microphone Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 206/273] io_uring/kbuf: get rid of lower BGID lists Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 207/273] io_uring/kbuf: get rid of bl->is_ready Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 208/273] io_uring/kbuf: protect io_buffer_list teardown with a reference Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 209/273] io_uring/rw: dont allow multishot reads without NOWAIT support Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 210/273] io_uring: use private workqueue for exit work Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 211/273] io_uring/kbuf: hold io_buffer_list reference over mmap Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 212/273] ASoC: SOF: Add dsp_max_burst_size_in_ms member to snd_sof_pcm_stream Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 213/273] ASoC: SOF: ipc4-topology: Save the DMA maximum burst size for PCMs Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 214/273] ASoC: SOF: Intel: hda-pcm: Use dsp_max_burst_size_in_ms to place constraint Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 215/273] ASoC: SOF: Intel: hda: Implement get_stream_position (Linear Link Position) Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 216/273] ASoC: SOF: Intel: mtl/lnl: Use the generic get_stream_position callback Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 217/273] ASoC: SOF: Introduce a new callback pair to be used for PCM delay reporting Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 218/273] ASoC: SOF: Intel: Set the dai/host get frame/byte counter callbacks Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 219/273] ASoC: SOF: Intel: hda-common-ops: Do not set the get_stream_position callback Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 220/273] ASoC: SOF: ipc4-pcm: Use the snd_sof_pcm_get_dai_frame_counter() for pcm_delay Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 221/273] ASoC: SOF: Remove the get_stream_position callback Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 222/273] ASoC: SOF: ipc4-pcm: Move struct sof_ipc4_timestamp_info definition locally Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 223/273] ASoC: SOF: ipc4-pcm: Combine the SOF_IPC4_PIPE_PAUSED cases in pcm_trigger Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 224/273] ASoC: SOF: ipc4-pcm: Invalidate the stream_start_offset in PAUSED state Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 225/273] ASoC: SOF: sof-pcm: Add pointer callback to sof_ipc_pcm_ops Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 226/273] ASoC: SOF: ipc4-pcm: Correct the delay calculation Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 227/273] ASoC: SOF: Intel: hda: Compensate LLP in case it is not reset Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 228/273] driver core: Introduce device_link_wait_removal() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 229/273] of: dynamic: Synchronize of_changeset_destroy() with the devlink removals Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 230/273] of: module: prevent NULL pointer dereference in vsnprintf() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 231/273] x86/mm/pat: fix VM_PAT handling in COW mappings Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 232/273] x86/mce: Make sure to grab mce_sysfs_mutex in set_bank() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 233/273] x86/coco: Require seeding RNG with RDRAND on CoCo systems Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 234/273] perf/x86/intel/ds: Dont clear ->pebs_data_cfg for the last PEBS event Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 235/273] aio: Fix null ptr deref in aio_complete() wakeup Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 236/273] riscv: Fix vector state restore in rt_sigreturn() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 237/273] arm64/ptrace: Use saved floating point state type to determine SVE layout Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 238/273] mm/secretmem: fix GUP-fast succeeding on secretmem folios Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 239/273] selftests/mm: include strings.h for ffsl Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 240/273] s390/entry: align system call table on 8 bytes Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 241/273] riscv: Fix spurious errors from __get/put_kernel_nofault Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 242/273] riscv: process: Fix kernel gp leakage Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 243/273] smb: client: fix UAF in smb2_reconnect_server() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 244/273] smb: client: guarantee refcounted children from parent session Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 245/273] smb: client: refresh referral without acquiring refpath_lock Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 246/273] smb: client: handle DFS tcons in cifs_construct_tcon() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 247/273] smb: client: serialise cifs_construct_tcon() with cifs_mount_mutex Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 248/273] smb3: retrying on failed server close Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 249/273] smb: client: fix potential UAF in cifs_debug_files_proc_show() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 250/273] smb: client: fix potential UAF in cifs_stats_proc_write() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 251/273] smb: client: fix potential UAF in cifs_stats_proc_show() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 252/273] smb: client: fix potential UAF in cifs_dump_full_key() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 253/273] smb: client: fix potential UAF in smb2_is_valid_oplock_break() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 254/273] smb: client: fix potential UAF in smb2_is_valid_lease_break() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 255/273] smb: client: fix potential UAF in is_valid_oplock_break() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 256/273] smb: client: fix potential UAF in smb2_is_network_name_deleted() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 257/273] smb: client: fix potential UAF in cifs_signal_cifsd_for_reconnect() Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 258/273] drm/i915/mst: Limit MST+DSC to TGL+ Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 259/273] drm/i915/mst: Reject FEC+MST on ICL Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 260/273] drm/i915/dp: Fix the computation for compressed_bpp for DISPLAY < 13 Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 261/273] drm/i915/gt: Disable HW load balancing for CCS Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 262/273] drm/i915/gt: Do not generate the command streamer for all the CCS Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 263/273] drm/i915/gt: Enable only one CCS for compute workload Greg Kroah-Hartman
2024-04-08 12:58 ` [PATCH 6.8 264/273] drm/xe: Use ring ops TLB invalidation for rebinds Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 6.8 265/273] drm/xe: Rework rebinding Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 6.8 266/273] Revert "x86/mpparse: Register APIC address only once" Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 6.8 267/273] bpf: put uprobe links path and task in release callback Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 6.8 268/273] bpf: support deferring bpf_link dealloc to after RCU grace period Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 6.8 269/273] efi/libstub: Add generic support for parsing mem_encrypt= Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 6.8 270/273] x86/boot: Move mem_encrypt= parsing to the decompressor Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 6.8 271/273] x86/sme: Move early SME kernel encryption handling into .head.text Greg Kroah-Hartman
2024-04-09 16:38   ` Pascal Ernster [this message]
2024-04-10  5:34     ` Borislav Petkov
2024-04-10  5:46       ` Greg Kroah-Hartman
2024-04-10  6:43         ` Ard Biesheuvel
2024-04-10 14:11           ` Greg Kroah-Hartman
2024-04-12 21:32             ` Ignat Korchagin
2024-04-13  5:33               ` Greg Kroah-Hartman
2024-04-10  7:00       ` Pascal Ernster
2024-04-10  9:03         ` Ard Biesheuvel
2024-04-10 10:06           ` Ard Biesheuvel
2024-04-10 14:30             ` Pascal Ernster
2024-04-10 14:45               ` Ard Biesheuvel
2024-04-10 15:39                 ` Pascal Ernster
2024-04-10 16:01                   ` Ard Biesheuvel
2024-04-10 16:37                     ` Kees Cook
2024-04-10 16:58                     ` Pascal Ernster
2024-04-08 12:59 ` [PATCH 6.8 272/273] x86/sev: Move early startup code into .head.text section Greg Kroah-Hartman
2024-04-08 12:59 ` [PATCH 6.8 273/273] x86/efistub: Remap kernel text read-only before dropping NX attribute Greg Kroah-Hartman
2024-04-08 16:05 ` [PATCH 6.8 000/273] 6.8.5-rc1 review SeongJae Park
2024-04-08 19:41 ` Justin Forbes
2024-04-09  1:29 ` Bagas Sanjaya
2024-04-09  3:05 ` Ron Economos
2024-04-09  5:03 ` Pascal Ernster
2024-04-09 16:18   ` Pascal Ernster
2024-04-09  7:24 ` Jon Hunter
2024-04-09 12:26 ` Mark Brown
2024-04-09 13:07 ` Anders Roxell
2024-04-09 13:19   ` Greg Kroah-Hartman
2024-04-09 15:11   ` Martin K. Petersen
2024-04-09 15:27     ` Anders Roxell
2024-04-10  0:20 ` Shuah Khan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=76489f58-6b60-4afd-9585-9f56960f7759@hardfalcon.net \
    --to=git@hardfalcon.net \
    --cc=ardb@kernel.org \
    --cc=bp@alien8.de \
    --cc=gregkh@linuxfoundation.org \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    --cc=thomas.lendacky@amd.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).