From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
"Peter Zijlstra (Intel)" <peterz@infradead.org>,
"Borislav Petkov (AMD)" <bp@alien8.de>
Subject: [PATCH 5.15 130/139] x86/cpu: Rename srso_(.*)_alias to srso_alias_\1
Date: Thu, 24 Aug 2023 16:50:53 +0200 [thread overview]
Message-ID: <20230824145029.095374103@linuxfoundation.org> (raw)
In-Reply-To: <20230824145023.559380953@linuxfoundation.org>
From: Peter Zijlstra <peterz@infradead.org>
commit 42be649dd1f2eee6b1fb185f1a231b9494cf095f upstream.
For a more consistent namespace.
[ bp: Fixup names in the doc too. ]
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de>
Link: https://lore.kernel.org/r/20230814121148.976236447@infradead.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
Documentation/admin-guide/hw-vuln/srso.rst | 4 ++--
arch/x86/include/asm/nospec-branch.h | 4 ++--
arch/x86/kernel/vmlinux.lds.S | 8 ++++----
arch/x86/lib/retpoline.S | 26 +++++++++++++-------------
4 files changed, 21 insertions(+), 21 deletions(-)
--- a/Documentation/admin-guide/hw-vuln/srso.rst
+++ b/Documentation/admin-guide/hw-vuln/srso.rst
@@ -124,8 +124,8 @@ sequence.
To ensure the safety of this mitigation, the kernel must ensure that the
safe return sequence is itself free from attacker interference. In Zen3
and Zen4, this is accomplished by creating a BTB alias between the
-untraining function srso_untrain_ret_alias() and the safe return
-function srso_safe_ret_alias() which results in evicting a potentially
+untraining function srso_alias_untrain_ret() and the safe return
+function srso_alias_safe_ret() which results in evicting a potentially
poisoned BTB entry and using that safe one for all function returns.
In older Zen1 and Zen2, this is accomplished using a reinterpretation
--- a/arch/x86/include/asm/nospec-branch.h
+++ b/arch/x86/include/asm/nospec-branch.h
@@ -183,7 +183,7 @@
#ifdef CONFIG_CPU_SRSO
ALTERNATIVE_2 "", "call srso_untrain_ret", X86_FEATURE_SRSO, \
- "call srso_untrain_ret_alias", X86_FEATURE_SRSO_ALIAS
+ "call srso_alias_untrain_ret", X86_FEATURE_SRSO_ALIAS
#endif
.endm
@@ -207,7 +207,7 @@ extern void srso_alias_return_thunk(void
extern void retbleed_untrain_ret(void);
extern void srso_untrain_ret(void);
-extern void srso_untrain_ret_alias(void);
+extern void srso_alias_untrain_ret(void);
extern void entry_ibpb(void);
--- a/arch/x86/kernel/vmlinux.lds.S
+++ b/arch/x86/kernel/vmlinux.lds.S
@@ -141,10 +141,10 @@ SECTIONS
#ifdef CONFIG_CPU_SRSO
/*
- * See the comment above srso_untrain_ret_alias()'s
+ * See the comment above srso_alias_untrain_ret()'s
* definition.
*/
- . = srso_untrain_ret_alias | (1 << 2) | (1 << 8) | (1 << 14) | (1 << 20);
+ . = srso_alias_untrain_ret | (1 << 2) | (1 << 8) | (1 << 14) | (1 << 20);
*(.text.__x86.rethunk_safe)
#endif
ALIGN_ENTRY_TEXT_END
@@ -527,8 +527,8 @@ INIT_PER_CPU(irq_stack_backing_store);
* Instead do: (A | B) - (A & B) in order to compute the XOR
* of the two function addresses:
*/
-. = ASSERT(((ABSOLUTE(srso_untrain_ret_alias) | srso_safe_ret_alias) -
- (ABSOLUTE(srso_untrain_ret_alias) & srso_safe_ret_alias)) == ((1 << 2) | (1 << 8) | (1 << 14) | (1 << 20)),
+. = ASSERT(((ABSOLUTE(srso_alias_untrain_ret) | srso_alias_safe_ret) -
+ (ABSOLUTE(srso_alias_untrain_ret) & srso_alias_safe_ret)) == ((1 << 2) | (1 << 8) | (1 << 14) | (1 << 20)),
"SRSO function pair won't alias");
#endif
--- a/arch/x86/lib/retpoline.S
+++ b/arch/x86/lib/retpoline.S
@@ -75,55 +75,55 @@ SYM_CODE_END(__x86_indirect_thunk_array)
#ifdef CONFIG_RETHUNK
/*
- * srso_untrain_ret_alias() and srso_safe_ret_alias() are placed at
+ * srso_alias_untrain_ret() and srso_alias_safe_ret() are placed at
* special addresses:
*
- * - srso_untrain_ret_alias() is 2M aligned
- * - srso_safe_ret_alias() is also in the same 2M page but bits 2, 8, 14
+ * - srso_alias_untrain_ret() is 2M aligned
+ * - srso_alias_safe_ret() is also in the same 2M page but bits 2, 8, 14
* and 20 in its virtual address are set (while those bits in the
- * srso_untrain_ret_alias() function are cleared).
+ * srso_alias_untrain_ret() function are cleared).
*
* This guarantees that those two addresses will alias in the branch
* target buffer of Zen3/4 generations, leading to any potential
* poisoned entries at that BTB slot to get evicted.
*
- * As a result, srso_safe_ret_alias() becomes a safe return.
+ * As a result, srso_alias_safe_ret() becomes a safe return.
*/
#ifdef CONFIG_CPU_SRSO
.section .text.__x86.rethunk_untrain
-SYM_START(srso_untrain_ret_alias, SYM_L_GLOBAL, SYM_A_NONE)
+SYM_START(srso_alias_untrain_ret, SYM_L_GLOBAL, SYM_A_NONE)
UNWIND_HINT_FUNC
ASM_NOP2
lfence
jmp srso_alias_return_thunk
-SYM_FUNC_END(srso_untrain_ret_alias)
-__EXPORT_THUNK(srso_untrain_ret_alias)
+SYM_FUNC_END(srso_alias_untrain_ret)
+__EXPORT_THUNK(srso_alias_untrain_ret)
.section .text.__x86.rethunk_safe
#else
/* dummy definition for alternatives */
-SYM_START(srso_untrain_ret_alias, SYM_L_GLOBAL, SYM_A_NONE)
+SYM_START(srso_alias_untrain_ret, SYM_L_GLOBAL, SYM_A_NONE)
ANNOTATE_UNRET_SAFE
ret
int3
-SYM_FUNC_END(srso_untrain_ret_alias)
+SYM_FUNC_END(srso_alias_untrain_ret)
#endif
-SYM_START(srso_safe_ret_alias, SYM_L_GLOBAL, SYM_A_NONE)
+SYM_START(srso_alias_safe_ret, SYM_L_GLOBAL, SYM_A_NONE)
add $8, %_ASM_SP
UNWIND_HINT_FUNC
ANNOTATE_UNRET_SAFE
ret
int3
-SYM_FUNC_END(srso_safe_ret_alias)
+SYM_FUNC_END(srso_alias_safe_ret)
.section .text.__x86.return_thunk
SYM_CODE_START(srso_alias_return_thunk)
UNWIND_HINT_FUNC
ANNOTATE_NOENDBR
- call srso_safe_ret_alias
+ call srso_alias_safe_ret
ud2
SYM_CODE_END(srso_alias_return_thunk)
next prev parent reply other threads:[~2023-08-24 14:57 UTC|newest]
Thread overview: 157+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-24 14:48 [PATCH 5.15 000/139] 5.15.128-rc1 review Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 001/139] mmc: sdhci-f-sdh30: Replace with sdhci_pltfm Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 002/139] selftests: forwarding: tc_actions: cleanup temporary files when test is aborted Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 003/139] selftests: forwarding: tc_actions: Use ncat instead of nc Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 004/139] macsec: Fix traffic counters/statistics Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 005/139] macsec: use DEV_STATS_INC() Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 006/139] net/tls: Perform immediate device ctx cleanup when possible Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 007/139] net/tls: Multi-threaded calls to TX tls_dev_del Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 008/139] net: tls: avoid discarding data on record close Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 009/139] PCI: tegra194: Fix possible array out of bounds access Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 010/139] ARM: dts: imx6dl: prtrvt, prtvt7, prti6q, prtwd2: fix USB related warnings Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 011/139] iopoll: Call cpu_relax() in busy loops Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 012/139] ASoC: SOF: Intel: fix SoundWire/HDaudio mutual exclusion Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 013/139] dma-remap: use kvmalloc_array/kvfree for larger dma memory remap Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 014/139] HID: logitech-hidpp: Add USB and Bluetooth IDs for the Logitech G915 TKL Keyboard Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 015/139] drm/amdgpu: install stub fence into potential unused fence pointers Greg Kroah-Hartman
2023-09-11 20:44 ` Deucher, Alexander
2023-09-12 11:31 ` Greg Kroah-Hartman
2023-08-24 14:48 ` [PATCH 5.15 016/139] HID: add quirk for 03f0:464a HP Elite Presenter Mouse Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 017/139] RDMA/mlx5: Return the firmware result upon destroying QP/RQ Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 018/139] ovl: check type and offset of struct vfsmount in ovl_entry Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 019/139] smb: client: fix warning in cifs_smb3_do_mount() Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 020/139] media: v4l2-mem2mem: add lock to protect parameter num_rdy Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 021/139] usb: gadget: u_serial: Avoid spinlock recursion in __gs_console_push Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 022/139] media: platform: mediatek: vpu: fix NULL ptr dereference Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 023/139] thunderbolt: Read retimer NVM authentication status prior tb_retimer_set_inbound_sbtx() Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 024/139] usb: chipidea: imx: dont request QoS for imx8ulp Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 025/139] usb: chipidea: imx: add missing USB PHY DPDM wakeup setting Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 026/139] gfs2: Fix possible data races in gfs2_show_options() Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 027/139] pcmcia: rsrc_nonstatic: Fix memory leak in nonstatic_release_resource_db() Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 028/139] firewire: net: fix use after free in fwnet_finish_incoming_packet() Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 029/139] watchdog: sp5100_tco: support Hygon FCH/SCH (Server Controller Hub) Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 030/139] Bluetooth: L2CAP: Fix use-after-free Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 031/139] Bluetooth: btusb: Add MT7922 bluetooth ID for the Asus Ally Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 032/139] drm/amdgpu: Fix potential fence use-after-free v2 Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 033/139] fs/ntfs3: Enhance sanity check while generating attr_list Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 034/139] fs: ntfs3: Fix possible null-pointer dereferences in mi_read() Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 035/139] fs/ntfs3: Mark ntfs dirty when on-disk struct is corrupted Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 036/139] ALSA: hda/realtek: Add quirks for Unis H3C Desktop B760 & Q760 Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 037/139] ALSA: hda: fix a possible null-pointer dereference due to data race in snd_hdac_regmap_sync() Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 038/139] powerpc/kasan: Disable KCOV in KASAN code Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 039/139] ring-buffer: Do not swap cpu_buffer during resize process Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 040/139] iio: add addac subdirectory Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 041/139] iio: adc: stx104: Utilize iomap interface Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 042/139] iio: adc: stx104: Implement and utilize register structures Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 043/139] iio: stx104: Move to addac subdirectory Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 044/139] iio: addac: stx104: Fix race condition for stx104_write_raw() Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 045/139] iio: addac: stx104: Fix race condition when converting analog-to-digital Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 046/139] igc: read before write to SRRCTL register Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 047/139] ARM: dts: aspeed: asrock: Correct firmware flash SPI clocks Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 048/139] drm/amd/display: save restore hdcp state when display is unplugged from mst hub Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 049/139] drm/amd/display: phase3 mst hdcp for multiple displays Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 050/139] drm/amd/display: fix access hdcp_workqueue assert Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 051/139] usb: dwc3: gadget: Synchronize IRQ between soft connect/disconnect Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 052/139] usb: dwc3: Remove DWC3 locking during gadget suspend/resume Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 053/139] usb: dwc3: Fix typos in gadget.c Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 054/139] USB: dwc3: gadget: drop dead hibernation code Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 055/139] usb: dwc3: gadget: Improve dwc3_gadget_suspend() and dwc3_gadget_resume() Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 056/139] tty: serial: fsl_lpuart: Add i.MXRT1050 support Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 057/139] tty: serial: fsl_lpuart: make rx_watermark configurable for different platforms Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 058/139] tty: serial: fsl_lpuart: reduce RX watermark to 0 on LS1028A Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 059/139] USB: dwc3: qcom: fix NULL-deref on suspend Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 060/139] USB: dwc3: fix use-after-free on core driver unbind Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 061/139] mmc: bcm2835: fix deferred probing Greg Kroah-Hartman
2023-08-26 19:04 ` Sergey Shtylyov
2023-08-24 14:49 ` [PATCH 5.15 062/139] mmc: sunxi: " Greg Kroah-Hartman
2023-08-26 19:05 ` Sergey Shtylyov
2023-08-24 14:49 ` [PATCH 5.15 063/139] net/ncsi: change from ndo_set_mac_address to dev_set_mac_address Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 064/139] ARM: dts: imx6sll: fixup of operating points Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 065/139] ARM: dts: nxp/imx6sll: fix wrong property name in usbphy node Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 066/139] btrfs: move out now unused BG from the reclaim list Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 067/139] virtio-mmio: dont break lifecycle of vm_dev Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 068/139] vduse: Use proper spinlock for IRQ injection Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 069/139] cifs: fix potential oops in cifs_oplock_break Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 070/139] i2c: bcm-iproc: Fix bcm_iproc_i2c_isr deadlock issue Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 071/139] i2c: hisi: Only handle the interrupt of the drivers transfer Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 072/139] fbdev: mmp: fix value check in mmphw_probe() Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 073/139] powerpc/rtas_flash: allow user copy to flash block cache objects Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 074/139] tty: n_gsm: fix the UAF caused by race condition in gsm_cleanup_mux Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 075/139] tty: serial: fsl_lpuart: Clear the error flags by writing 1 for lpuart32 platforms Greg Kroah-Hartman
2023-08-24 14:49 ` [PATCH 5.15 076/139] btrfs: fix BUG_ON condition in btrfs_cancel_balance Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 077/139] i2c: designware: Correct length byte validation logic Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 078/139] i2c: designware: Handle invalid SMBus block data response length value Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 079/139] net: xfrm: Fix xfrm_address_filter OOB read Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 080/139] net: af_key: fix sadb_x_filter validation Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 081/139] net: xfrm: Amend XFRMA_SEC_CTX nla_policy structure Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 082/139] xfrm: fix slab-use-after-free in decode_session6 Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 083/139] ip6_vti: " Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 084/139] ip_vti: fix potential " Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 085/139] xfrm: add NULL check in xfrm_update_ae_params Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 086/139] xfrm: add forgotten nla_policy for XFRMA_MTIMER_THRESH Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 087/139] net: phy: fix IRQ-based wake-on-lan over hibernate / power off Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 088/139] selftests: mirror_gre_changes: Tighten up the TTL test match Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 089/139] drm/panel: simple: Fix AUO G121EAN01 panel timings according to the docs Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 090/139] netfilter: nf_tables: fix false-positive lockdep splat Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 091/139] netfilter: nf_tables: deactivate catchall elements in next generation Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 092/139] ipvs: fix racy memcpy in proc_do_sync_threshold Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 093/139] netfilter: nft_dynset: disallow object maps Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 094/139] net: phy: broadcom: stub c45 read/write for 54810 Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 095/139] team: Fix incorrect deletion of ETH_P_8021AD protocol vid from slaves Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 096/139] iavf: fix FDIR rule fields masks validation Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 097/139] i40e: fix misleading debug logs Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 098/139] net: dsa: mv88e6xxx: Wait for EEPROM done before HW reset Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 099/139] sock: Fix misuse of sk_under_memory_pressure() Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 100/139] net: do not allow gso_size to be set to GSO_BY_FRAGS Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 101/139] bus: ti-sysc: Flush posted write on enable before reset Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 102/139] arm64: dts: qcom: qrb5165-rb5: fix thermal zone conflict Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 103/139] ARM: dts: imx: Set default tuning step for imx6sx usdhc Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 104/139] ASoC: rt5665: add missed regulator_bulk_disable Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 105/139] ASoC: meson: axg-tdm-formatter: fix channel slot allocation Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 106/139] soc: aspeed: socinfo: Add kfree for kstrdup Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 107/139] ALSA: hda/realtek - Remodified 3k pull low procedure Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 108/139] riscv: uaccess: Return the number of bytes effectively not copied Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 109/139] serial: 8250: Fix oops for port->pm on uart_change_pm() Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 110/139] ALSA: usb-audio: Add support for Mythware XA001AU capture and playback interfaces Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 111/139] cifs: Release folio lock on fscache read hit Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 112/139] mmc: wbsd: fix double mmc_free_host() in wbsd_init() Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 113/139] mmc: block: Fix in_flight[issue_type] value error Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 114/139] drm/qxl: fix UAF on handle creation Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 115/139] drm/amd: flush any delayed gfxoff on suspend entry Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 116/139] netfilter: set default timeout to 3 secs for sctp shutdown send and recv state Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 117/139] exfat: check if filename entries exceeds max filename length Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 118/139] arm64: dts: rockchip: Disable HS400 for eMMC on ROCK Pi 4 Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 119/139] af_unix: Fix null-ptr-deref in unix_stream_sendpage() Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 120/139] virtio-net: set queues after driver_ok Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 121/139] net: fix the RTO timer retransmitting skb every 1ms if linear option is enabled Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 122/139] mmc: f-sdh30: fix order of function calls in sdhci_f_sdh30_remove Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 123/139] x86/cpu: Fix __x86_return_thunk symbol type Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 124/139] x86/cpu: Fix up srso_safe_ret() and __x86_return_thunk() Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 125/139] x86/alternative: Make custom return thunk unconditional Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 126/139] objtool: Add frame-pointer-specific function ignore Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 127/139] x86/ibt: Add ANNOTATE_NOENDBR Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 128/139] x86/cpu: Clean up SRSO return thunk mess Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 129/139] x86/cpu: Rename original retbleed methods Greg Kroah-Hartman
2023-08-24 14:50 ` Greg Kroah-Hartman [this message]
2023-08-24 14:50 ` [PATCH 5.15 131/139] x86/cpu: Cleanup the untrain mess Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 132/139] x86/srso: Explain the untraining sequences a bit more Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 133/139] x86/static_call: Fix __static_call_fixup() Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 134/139] x86/retpoline: Dont clobber RFLAGS during srso_safe_ret() Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 135/139] x86/CPU/AMD: Fix the DIV(0) initial fix attempt Greg Kroah-Hartman
2023-08-24 14:50 ` [PATCH 5.15 136/139] x86/srso: Disable the mitigation on unaffected configurations Greg Kroah-Hartman
2023-08-24 14:51 ` [PATCH 5.15 137/139] x86/retpoline,kprobes: Fix position of thunk sections with CONFIG_LTO_CLANG Greg Kroah-Hartman
2023-08-24 14:51 ` [PATCH 5.15 138/139] objtool/x86: Fixup frame-pointer vs rethunk Greg Kroah-Hartman
2023-08-24 14:51 ` [PATCH 5.15 139/139] x86/srso: Correct the mitigation status when SMT is disabled Greg Kroah-Hartman
2023-08-24 19:27 ` [PATCH 5.15 000/139] 5.15.128-rc1 review Florian Fainelli
2023-08-25 18:00 ` Allen Pais
2023-08-25 1:31 ` SeongJae Park
2023-08-25 2:40 ` Joel Fernandes
2023-08-25 8:08 ` Naresh Kamboju
2023-08-25 8:08 ` [LTP] " Naresh Kamboju
2023-08-25 8:11 ` Ron Economos
2023-08-25 9:09 ` Sudip Mukherjee (Codethink)
2023-08-25 10:14 ` Jon Hunter
2023-08-25 12:27 ` Naresh Kamboju
2023-08-25 15:38 ` Guenter Roeck
2023-08-25 18:14 ` Shuah Khan
2023-08-25 18:37 ` Harshit Mogalapalli
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=20230824145029.095374103@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=bp@alien8.de \
--cc=patches@lists.linux.dev \
--cc=peterz@infradead.org \
--cc=stable@vger.kernel.org \
/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 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.