From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Douglas Anderson <dianders@chromium.org>,
James Morse <james.morse@arm.com>,
Catalin Marinas <catalin.marinas@arm.com>
Subject: [PATCH 6.1 160/291] arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected() lists
Date: Wed, 23 Apr 2025 16:42:29 +0200 [thread overview]
Message-ID: <20250423142630.935150731@linuxfoundation.org> (raw)
In-Reply-To: <20250423142624.409452181@linuxfoundation.org>
6.1-stable review patch. If anyone has any objections, please let me know.
------------------
From: Douglas Anderson <dianders@chromium.org>
commit a5951389e58d2e816eed3dbec5877de9327fd881 upstream.
When comparing to the ARM list [1], it appears that several ARM cores
were missing from the lists in spectre_bhb_loop_affected(). Add them.
NOTE: for some of these cores it may not matter since other ways of
clearing the BHB may be used (like the CLRBHB instruction or ECBHB),
but it still seems good to have all the info from ARM's whitepaper
included.
[1] https://developer.arm.com/Arm%20Security%20Center/Spectre-BHB
Fixes: 558c303c9734 ("arm64: Mitigate spectre style branch history side channels")
Cc: stable@vger.kernel.org
Signed-off-by: Douglas Anderson <dianders@chromium.org>
Reviewed-by: James Morse <james.morse@arm.com>
Link: https://lore.kernel.org/r/20250107120555.v4.5.I4a9a527e03f663040721c5401c41de587d015c82@changeid
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
arch/arm64/kernel/proton-pack.c | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
--- a/arch/arm64/kernel/proton-pack.c
+++ b/arch/arm64/kernel/proton-pack.c
@@ -888,6 +888,14 @@ static u8 spectre_bhb_loop_affected(void
{
u8 k = 0;
+ static const struct midr_range spectre_bhb_k132_list[] = {
+ MIDR_ALL_VERSIONS(MIDR_CORTEX_X3),
+ MIDR_ALL_VERSIONS(MIDR_NEOVERSE_V2),
+ };
+ static const struct midr_range spectre_bhb_k38_list[] = {
+ MIDR_ALL_VERSIONS(MIDR_CORTEX_A715),
+ MIDR_ALL_VERSIONS(MIDR_CORTEX_A720),
+ };
static const struct midr_range spectre_bhb_k32_list[] = {
MIDR_ALL_VERSIONS(MIDR_CORTEX_A78),
MIDR_ALL_VERSIONS(MIDR_CORTEX_A78AE),
@@ -901,6 +909,7 @@ static u8 spectre_bhb_loop_affected(void
};
static const struct midr_range spectre_bhb_k24_list[] = {
MIDR_ALL_VERSIONS(MIDR_CORTEX_A76),
+ MIDR_ALL_VERSIONS(MIDR_CORTEX_A76AE),
MIDR_ALL_VERSIONS(MIDR_CORTEX_A77),
MIDR_ALL_VERSIONS(MIDR_NEOVERSE_N1),
MIDR_ALL_VERSIONS(MIDR_QCOM_KRYO_4XX_GOLD),
@@ -916,7 +925,11 @@ static u8 spectre_bhb_loop_affected(void
{},
};
- if (is_midr_in_range_list(read_cpuid_id(), spectre_bhb_k32_list))
+ if (is_midr_in_range_list(read_cpuid_id(), spectre_bhb_k132_list))
+ k = 132;
+ else if (is_midr_in_range_list(read_cpuid_id(), spectre_bhb_k38_list))
+ k = 38;
+ else if (is_midr_in_range_list(read_cpuid_id(), spectre_bhb_k32_list))
k = 32;
else if (is_midr_in_range_list(read_cpuid_id(), spectre_bhb_k24_list))
k = 24;
next prev parent reply other threads:[~2025-04-23 15:20 UTC|newest]
Thread overview: 304+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-23 14:39 [PATCH 6.1 000/291] 6.1.135-rc1 review Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.1 001/291] selftests/futex: futex_waitv wouldblock test should fail Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.1 002/291] ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.1 003/291] tipc: fix memory leak in tipc_link_xmit Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.1 004/291] codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.1 005/291] net: tls: explicitly disallow disconnect Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.1 006/291] rtnl: add helper to check if rtnl group has listeners Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.1 007/291] rtnl: add helper to check if a notification is needed Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.1 008/291] net/sched: cls_api: conditional notification of events Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.1 009/291] tc: Ensure we have enough buffer space when sending filter netlink notifications Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.1 010/291] net: ethtool: Dont call .cleanup_data when prepare_data fails Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 011/291] ata: sata_sx4: Add error handling in pdc20621_i2c_read() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 012/291] nvmet-fcloop: swap list_add_tail arguments Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 013/291] net_sched: sch_sfq: use a temporary work area for validating configuration Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 014/291] net_sched: sch_sfq: move the limit validation Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 015/291] ipv6: Align behavior across nexthops during path selection Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 016/291] net: ppp: Add bound checking for skb data on ppp_sync_txmung Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 017/291] nft_set_pipapo: fix incorrect avx2 match of 5th field octet Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 018/291] iommu/mediatek: Fix NULL pointer deference in mtk_iommu_device_group Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 019/291] fs: consistently deref the files table with rcu_dereference_raw() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 020/291] umount: Allow superblock owners to force umount Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 021/291] pm: cpupower: bench: Prevent NULL dereference on malloc failure Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 022/291] x86/cpu: Dont clear X86_FEATURE_LAHF_LM flag in init_amd_k8() on AMD when running in a virtual machine Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 023/291] perf: arm_pmu: Dont disable counter in armpmu_add() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 024/291] arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 025/291] xen/mcelog: Add __nonstring annotations for unterminated strings Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 026/291] HID: pidff: Convert infinite length from Linux API to PID standard Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 027/291] HID: pidff: Do not send effect envelope if its empty Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 028/291] HID: pidff: Fix null pointer dereference in pidff_find_fields Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 029/291] ALSA: hda: intel: Fix Optimus when GPU has no sound Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 031/291] ASoC: fsl_audmix: register card device depends on dais property Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 032/291] mmc: dw_mmc: add a quirk for accessing 64-bit FIFOs in two halves Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 033/291] ALSA: usb-audio: Fix CME quirk for UF series keyboards Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 034/291] ASoC: amd: Add DMI quirk for ACP6X mic support Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 035/291] f2fs: dont retry IO for corrupted data scenario Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 036/291] page_pool: avoid infinite loop to schedule delayed worker Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 037/291] jfs: Fix uninit-value access of imap allocated in the diMount() function Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 038/291] fs/jfs: cast inactags to s64 to prevent potential overflow Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 039/291] fs/jfs: Prevent integer overflow in AG size calculation Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 040/291] jfs: Prevent copying of nlink with value 0 from disk inode Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 041/291] jfs: add sanity check for agwidth in dbMount Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 042/291] ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 043/291] f2fs: fix to avoid out-of-bounds access in f2fs_truncate_inode_blocks() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 044/291] ahci: add PCI ID for Marvell 88SE9215 SATA Controller Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 045/291] ext4: protect ext4_release_dquot against freezing Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 046/291] ext4: ignore xattrs past end Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 047/291] scsi: st: Fix array overflow in st_setup() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 048/291] wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 049/291] net: vlan: dont propagate flags on open Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 050/291] tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 051/291] Bluetooth: hci_uart: fix race during initialization Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 052/291] Bluetooth: qca: simplify WCN399x NVM loading Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 053/291] drm: allow encoder mode_set even when connectors change for crtc Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 054/291] drm/amd/display: Update Cursor request mode to the beginning prefetch always Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 055/291] drm: panel-orientation-quirks: Add support for AYANEO 2S Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 056/291] drm: panel-orientation-quirks: Add quirks for AYA NEO Flip DS and KB Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 057/291] drm: panel-orientation-quirks: Add quirk for AYA NEO Slide Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 058/291] drm: panel-orientation-quirks: Add new quirk for GPD Win 2 Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 059/291] drm: panel-orientation-quirks: Add quirk for OneXPlayer Mini (Intel) Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 060/291] drm/bridge: panel: forbid initializing a panel with unknown connector type Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 061/291] drivers: base: devres: Allow to release group on device release Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 062/291] drm/amdkfd: clamp queue size to minimum Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 063/291] drm/amdkfd: Fix mode1 reset crash issue Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 064/291] drm/amdkfd: Fix pqm_destroy_queue race with GPU reset Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 065/291] drm/mediatek: mtk_dpi: Move the input_2p_en bit to platform data Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 066/291] drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 067/291] drm/amdgpu: handle amdgpu_cgs_create_device() errors in amd_powerplay_create() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 068/291] PCI: vmd: Make vmd_dev::cfg_lock a raw_spinlock_t type Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 069/291] drm/amdgpu: grab an additional reference on the gang fence v2 Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.1 070/291] fbdev: omapfb: Add plane value check Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 071/291] ktest: Fix Test Failures Due to Missing LOG_FILE Directories Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 072/291] tpm, tpm_tis: Workaround failed command reception on Infineon devices Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 073/291] pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 074/291] pwm: rcar: Improve register calculation Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 075/291] pwm: fsl-ftm: Handle clk_get_rate() returning 0 Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 076/291] bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 077/291] ext4: dont treat fhandle lookup of ea_inode as FS corruption Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 078/291] media: i2c: adv748x: Fix test pattern selection mask Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 079/291] media: venus: hfi: add a check to handle OOB in sfr region Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 080/291] media: venus: hfi: add check to handle incorrect queue size Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 081/291] media: vim2m: print device name after registering device Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 082/291] media: siano: Fix error handling in smsdvb_module_init() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 083/291] xenfs/xensyms: respect hypervisors "next" indication Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 084/291] arm64: cputype: Add MIDR_CORTEX_A76AE Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 085/291] arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 086/291] arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 087/291] arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe list Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 088/291] KVM: arm64: Tear down vGIC on failed vCPU creation Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 089/291] spi: cadence-qspi: Fix probe on AM62A LP SK Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 090/291] mtd: rawnand: brcmnand: fix PM resume warning Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 091/291] tpm, tpm_tis: Fix timeout handling when waiting for TPM status Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 092/291] media: streamzap: prevent processing IR data on URB failure Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 093/291] media: platform: stm32: Add check for clk_enable() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 094/291] media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 095/291] media: i2c: ccs: Set the devices runtime PM status correctly in remove Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 096/291] media: i2c: ccs: Set the devices runtime PM status correctly in probe Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 097/291] media: i2c: ov7251: Set enable GPIO low " Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 098/291] media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 099/291] media: venus: hfi_parser: add check to avoid out of bound access Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 100/291] media: venus: hfi_parser: refactor hfi packet parsing logic Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 101/291] mptcp: sockopt: fix getting IPV6_V6ONLY Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 102/291] mtd: Add check for devm_kcalloc() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 103/291] net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 104/291] mtd: Replace kcalloc() with devm_kcalloc() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 105/291] clocksource/drivers/stm32-lptimer: Use wakeup capable instead of init wakeup Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 106/291] wifi: mt76: Add check for devm_kstrdup() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 107/291] wifi: mac80211: fix integer overflow in hwmp_route_info_get() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 108/291] io_uring/kbuf: reject zero sized provided buffers Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 109/291] ASoC: qdsp6: q6apm-dai: set 10 ms period and buffer alignment Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 110/291] ASoC: qdsp6: q6apm-dai: fix capture pipeline overruns Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 111/291] ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 112/291] bus: mhi: host: Fix race between unprepare and queue_buf Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 113/291] ext4: fix off-by-one error in do_split Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 114/291] vdpa/mlx5: Fix oversized null mkey longer than 32bit Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 115/291] soc: samsung: exynos-chipid: Add NULL pointer check in exynos_chipid_probe() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 116/291] smb311 client: fix missing tcon check when mounting with linux/posix extensions Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 117/291] i3c: master: svc: Use readsb helper for reading MDB Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 118/291] i3c: Add NULL pointer check in i3c_master_queue_ibi() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 119/291] jbd2: remove wrong sb->s_sequence check Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 120/291] mfd: ene-kb3930: Fix a potential NULL pointer dereference Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 121/291] locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 122/291] lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 123/291] mptcp: fix NULL pointer in can_accept_new_subflow Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 124/291] mptcp: only inc MPJoinAckHMacFailure for HMAC failures Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 125/291] mtd: inftlcore: Add error check for inftl_read_oob() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 126/291] mtd: rawnand: Add status chack in r852_ready() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 127/291] arm64: mm: Correct the update of max_pfn Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 128/291] arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 129/291] btrfs: fix non-empty delayed iputs list on unmount due to compressed write workers Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.1 130/291] sparc/mm: disable preemption in lazy mmu mode Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 131/291] mm/rmap: reject hugetlb folios in folio_make_device_exclusive() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 132/291] mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 133/291] mm/hwpoison: do not send SIGBUS to processes with recovered clean pages Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 134/291] sctp: detect and prevent references to a freed transport in sendmsg Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 135/291] thermal/drivers/rockchip: Add missing rk3328 mapping entry Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 136/291] cifs: avoid NULL pointer dereference in dbg call Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 137/291] cifs: fix integer overflow in match_server() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 138/291] clk: qcom: gdsc: Release pm subdomains in reverse add order Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 139/291] clk: qcom: gdsc: Capture pm_genpd_add_subdomain result code Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 140/291] clk: qcom: gdsc: Set retain_ff before moving to HW CTRL Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 141/291] crypto: ccp - Fix check for the primary ASP device Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 142/291] dm-ebs: fix prefetch-vs-suspend race Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 143/291] dm-integrity: set ti->error on memory allocation failure Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 144/291] dm-verity: fix prefetch-vs-suspend race Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 145/291] ftrace: Add cond_resched() to ftrace_graph_set_hash() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 146/291] gpio: tegra186: fix resource handling in ACPI probe path Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 147/291] gpio: zynq: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 148/291] gve: handle overflow when reporting TX consumed descriptors Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 149/291] KVM: x86: Acquire SRCU in KVM_GET_MP_STATE to protect guest memory accesses Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 150/291] ntb: use 64-bit arithmetic for the MSI doorbell mask Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 151/291] of/irq: Fix device node refcount leakage in API of_irq_parse_one() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 152/291] of/irq: Fix device node refcount leakage in API of_irq_parse_raw() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 153/291] of/irq: Fix device node refcount leakages in of_irq_count() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 154/291] of/irq: Fix device node refcount leakage in API irq_of_parse_and_map() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 155/291] of/irq: Fix device node refcount leakages in of_irq_init() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 156/291] PCI: brcmstb: Fix missing of_node_put() in brcm_pcie_probe() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 157/291] PCI: Fix reference leak in pci_alloc_child_bus() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 158/291] pinctrl: qcom: Clear latched interrupt status when changing IRQ type Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 159/291] selftests: mptcp: close fd_in before returning in main_loop Greg Kroah-Hartman
2025-04-23 14:42 ` Greg Kroah-Hartman [this message]
2025-04-23 14:42 ` [PATCH 6.1 161/291] ACPI: platform-profile: Fix CFI violation when accessing sysfs files Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 162/291] x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 163/291] Bluetooth: hci_uart: Fix another race during initialization Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 164/291] HSI: ssi_protocol: Fix use after free vulnerability in ssi_protocol Driver Due to Race Condition Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 165/291] scsi: hisi_sas: Enable force phy when SATA disk directly connected Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 166/291] wifi: at76c50x: fix use after free access in at76_disconnect Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 167/291] wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 168/291] wifi: mac80211: Purge vif txq in ieee80211_do_stop() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 169/291] wifi: wl1251: fix memory leak in wl1251_tx_work Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 170/291] scsi: iscsi: Fix missing scsi_host_put() in error path Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 171/291] md/raid10: fix missing discard IO accounting Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 172/291] md/md-bitmap: fix stats collection for external bitmaps Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 173/291] RDMA/usnic: Fix passing zero to PTR_ERR in usnic_ib_pci_probe() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 174/291] RDMA/hns: Fix wrong maximum DMA segment size Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 175/291] RDMA/core: Silence oversized kvmalloc() warning Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 176/291] Bluetooth: hci_event: Fix sending MGMT_EV_DEVICE_FOUND for invalid address Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 177/291] Bluetooth: btrtl: Prevent potential NULL dereference Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 178/291] Bluetooth: l2cap: Check encryption key size on incoming connection Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 179/291] Revert "wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue()" Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 180/291] igc: fix PTM cycle trigger logic Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 181/291] igc: move ktime snapshot into PTM retry loop Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 182/291] igc: handle the IGC_PTP_ENABLED flag correctly Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 183/291] igc: cleanup PTP module if probe fails Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 184/291] test suite: use %zu to print size_t Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 185/291] net: mctp: Set SOCK_RCU_FREE Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 186/291] net: openvswitch: fix nested key length validation in the set() action Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 187/291] cxgb4: fix memory leak in cxgb4_init_ethtool_filters() error path Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 188/291] net: b53: enable BPDU reception for management port Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 189/291] net: bridge: switchdev: do not notify new brentries as changed Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.1 190/291] net: dsa: mv88e6xxx: avoid unregistering devlink regions which were never registered Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 191/291] net: dsa: mv88e6xxx: fix -ENOENT when deleting VLANs and MST is unsupported Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 192/291] net: dsa: avoid refcount warnings when ds->ops->tag_8021q_vlan_del() fails Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 193/291] ptp: ocp: fix start time alignment in ptp_ocp_signal_set Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 194/291] riscv: Properly export reserved regions in /proc/iomem Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 195/291] riscv: KGDB: Do not inline arch_kgdb_breakpoint() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 196/291] riscv: KGDB: Remove ".option norvc/.option rvc" for kgdb_compiled_break Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 197/291] cpufreq/sched: Fix the usage of CPUFREQ_NEED_UPDATE_LIMITS Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 198/291] writeback: fix false warning in inode_to_wb() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 199/291] Revert "PCI: Avoid reset when disabled via sysfs" Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 200/291] ASoC: codecs:lpass-wsa-macro: Fix vi feedback rate Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 201/291] ASoC: codecs:lpass-wsa-macro: Fix logic of enabling vi channels Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 202/291] asus-laptop: Fix an uninitialized variable Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 203/291] nfs: move nfs_fhandle_hash to common include file Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 204/291] nfs: add missing selections of CONFIG_CRC32 Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 205/291] nfsd: decrease sc_count directly if fail to queue dl_recall Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 206/291] btrfs: correctly escape subvol in btrfs_show_options() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 207/291] cpufreq: Avoid using inconsistent policy->min and policy->max Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 208/291] crypto: caam/qi - Fix drv_ctx refcount bug Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 209/291] hfs/hfsplus: fix slab-out-of-bounds in hfs_bnode_read_key Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 210/291] i2c: cros-ec-tunnel: defer probe if parent EC is not present Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 211/291] isofs: Prevent the use of too small fid Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 212/291] loop: properly send KOBJ_CHANGED uevent for disk device Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 213/291] loop: LOOP_SET_FD: send uevents for partitions Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 214/291] mm/gup: fix wrongly calculated returned value in fault_in_safe_writeable() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 215/291] mm: fix filemap_get_folios_contig returning batches of identical folios Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 216/291] ksmbd: Fix dangling pointer in krb_authenticate Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 217/291] ksmbd: Prevent integer overflow in calculation of deadtime Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 218/291] ksmbd: fix the warning from __kernel_write_iter Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 219/291] riscv: Avoid fortify warning in syscall_get_arguments() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 220/291] smb3 client: fix open hardlink on deferred close file error Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 221/291] string: Add load_unaligned_zeropad() code path to sized_strscpy() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 222/291] tracing: Fix filter string testing Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 223/291] virtiofs: add filesystem context source name check Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 224/291] scsi: megaraid_sas: Block zero-length ATA VPD inquiry Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 225/291] scsi: ufs: exynos: Ensure consistent phy reference counts Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 226/291] RDMA/cma: Fix workqueue crash in cma_netevent_work_handler Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 227/291] perf/x86/intel: Allow to update user space GPRs from PEBS records Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 228/291] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SNR Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 229/291] perf/x86/intel/uncore: Fix the scale of IIO free running counters on ICX Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 230/291] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SPR Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 231/291] drm/repaper: fix integer overflows in repeat functions Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 232/291] drm/msm/a6xx: Fix stale rpmh votes from GPU Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 233/291] drm/amd: Handle being compiled without SI or CIK support better Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 234/291] drm/amd/pm: Prevent division by zero Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 235/291] drm/amd/pm/powerplay: " Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 236/291] drm/amd/pm/smu11: " Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 237/291] drm/amd/pm/powerplay/hwmgr/smu7_thermal: " Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 238/291] drm/amd/pm/swsmu/smu13/smu_v13_0: " Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 239/291] drm/amd/pm/powerplay/hwmgr/vega20_thermal: " Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 240/291] drm/amdgpu/dma_buf: fix page_link check Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 241/291] drm/nouveau: prime: fix ttm_bo_delayed_delete oops Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 242/291] drm/sti: remove duplicate object names Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 243/291] drm/i915/gvt: fix unterminated-string-initialization warning Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 244/291] io_uring/net: fix accept multishot handling Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 245/291] KVM: arm64: Discard any SVE state when entering KVM guests Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 246/291] arm64/fpsimd: Track the saved FPSIMD state type separately to TIF_SVE Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 247/291] arm64/fpsimd: Have KVM explicitly say which FP registers to save Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 248/291] arm64/fpsimd: Stop using TIF_SVE to manage register saving in KVM Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 249/291] KVM: arm64: Unconditionally save+flush host FPSIMD/SVE/SME state Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.1 250/291] KVM: arm64: Remove host FPSIMD saving for non-protected KVM Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 251/291] KVM: arm64: Remove VHE host restore of CPACR_EL1.ZEN Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 252/291] KVM: arm64: Remove VHE host restore of CPACR_EL1.SMEN Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 253/291] KVM: arm64: Refactor exit handlers Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 254/291] KVM: arm64: Mark some header functions as inline Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 255/291] KVM: arm64: Calculate cptr_el2 traps on activating traps Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 256/291] KVM: arm64: Eagerly switch ZCR_EL{1,2} Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 257/291] cpufreq: Reference count policy in cpufreq_update_limits() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 258/291] kbuild: Add -fno-builtin-wcslen Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 259/291] media: mediatek: vcodec: mark vdec_vp9_slice_map_counts_eob_coef noinline Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 260/291] mptcp: sockopt: fix getting freebind & transparent Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 261/291] misc: pci_endpoint_test: Avoid issue of interrupts remaining after request_irq error Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 262/291] misc: pci_endpoint_test: Fix displaying irq_type " Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 263/291] misc: pci_endpoint_test: Fix irq_type to convey the correct type Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 264/291] mm: Fix is_zero_page() usage in try_grab_page() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 265/291] x86/split_lock: Fix the delayed detection logic Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 266/291] x86/pvh: Call C code via the kernel virtual mapping Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 267/291] powerpc/rtas: Prevent Spectre v1 gadget construction in sys_rtas() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 268/291] LoongArch: Eliminate superfluous get_numa_distances_cnt() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 269/291] btrfs: fix qgroup reserve leaks in cow_file_range Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 270/291] btrfs: zoned: fix zone activation with missing devices Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 271/291] btrfs: zoned: fix zone finishing " Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 272/291] Revert "Xen/swiotlb: mark xen_swiotlb_fixup() __init" Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 273/291] drm/amd/display: Stop amdgpu_dm initialize when link nums greater than max_links Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 274/291] landlock: Add the errata interface Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 275/291] Revert "LoongArch: BPF: Fix off-by-one error in build_prologue()" Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 276/291] nvmet-fc: Remove unused functions Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 277/291] smb/server: fix potential null-ptr-deref of lease_ctx_info in smb2_open() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 278/291] cifs: use origin fullpath for automounts Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 279/291] net/sched: act_mirred: dont override retval if we already lost the skb Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 280/291] btrfs: fix the length of reserved qgroup to free Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 281/291] bpf: avoid holding freeze_mutex during mmap operation Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 282/291] bpf: Prevent tail call between progs attached to different hooks Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 283/291] blk-cgroup: support to track if policy is online Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 284/291] blk-iocost: do not WARN if iocg was already offlined Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 285/291] mm: fix apply_to_existing_page_range() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 286/291] sign-file,extract-cert: move common SSL helper functions to a header Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 287/291] sign-file,extract-cert: avoid using deprecated ERR_get_error_line() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 288/291] sign-file,extract-cert: use pkcs11 provider for OPENSSL MAJOR >= 3 Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 289/291] MIPS: dec: Declare which_prom() as static Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 290/291] MIPS: cevt-ds1287: Add missing ds1287.h include Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.1 291/291] MIPS: ds1287: Match ds1287_set_base_clock() function types Greg Kroah-Hartman
2025-04-23 16:52 ` [PATCH 6.1 000/291] 6.1.135-rc1 review Peter Schneider
2025-04-23 19:18 ` Pavel Machek
2025-04-23 21:17 ` Shuah Khan
2025-04-24 7:31 ` Ron Economos
2025-04-24 10:53 ` Jon Hunter
2025-04-24 11:58 ` Mark Brown
2025-04-24 12:46 ` Florian Fainelli
2025-04-24 13:31 ` Naresh Kamboju
2025-04-24 13:41 ` Greg Kroah-Hartman
2025-04-24 14:34 ` Arnd Bergmann
2025-04-24 15:28 ` Greg Kroah-Hartman
2025-04-28 7:50 ` He Zhe
2025-04-25 0:17 ` Miguel Ojeda
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=20250423142630.935150731@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=catalin.marinas@arm.com \
--cc=dianders@chromium.org \
--cc=james.morse@arm.com \
--cc=patches@lists.linux.dev \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox