From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, "Hanno Böck" <hanno@hboeck.de>,
"Dmitry Torokhov" <dmitry.torokhov@gmail.com>,
"Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 5.10 109/355] Input: synaptics-rmi - fix crash with unsupported versions of F34
Date: Mon, 23 Jun 2025 15:05:10 +0200 [thread overview]
Message-ID: <20250623130630.046976565@linuxfoundation.org> (raw)
In-Reply-To: <20250623130626.716971725@linuxfoundation.org>
5.10-stable review patch. If anyone has any objections, please let me know.
------------------
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
[ Upstream commit ca39500f6af9cfe6823dc5aa8fbaed788d6e35b2 ]
Sysfs interface for updating firmware for RMI devices is available even
when F34 probe fails. The code checks for presence of F34 "container"
pointer and then tries to use the function data attached to the
sub-device. F34 assigns the function data early, before it knows if
probe will succeed, leaving behind a stale pointer.
Fix this by expanding checks to not only test for presence of F34
"container" but also check if there is driver data assigned to the
sub-device, and call dev_set_drvdata() only after we are certain that
probe is successful.
This is not a complete fix, since F34 will be freed during firmware
update, so there is still a race when fetching and accessing this
pointer. This race will be addressed in follow-up changes.
Reported-by: Hanno Böck <hanno@hboeck.de>
Fixes: 29fd0ec2bdbe ("Input: synaptics-rmi4 - add support for F34 device reflash")
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/aBlAl6sGulam-Qcx@google.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/input/rmi4/rmi_f34.c | 135 ++++++++++++++++++++---------------
1 file changed, 76 insertions(+), 59 deletions(-)
diff --git a/drivers/input/rmi4/rmi_f34.c b/drivers/input/rmi4/rmi_f34.c
index c26808f10827a..c93a8ccd87c73 100644
--- a/drivers/input/rmi4/rmi_f34.c
+++ b/drivers/input/rmi4/rmi_f34.c
@@ -4,6 +4,7 @@
* Copyright (C) 2016 Zodiac Inflight Innovations
*/
+#include "linux/device.h"
#include <linux/kernel.h>
#include <linux/rmi.h>
#include <linux/firmware.h>
@@ -298,39 +299,30 @@ static int rmi_f34_update_firmware(struct f34_data *f34,
return ret;
}
-static int rmi_f34_status(struct rmi_function *fn)
-{
- struct f34_data *f34 = dev_get_drvdata(&fn->dev);
-
- /*
- * The status is the percentage complete, or once complete,
- * zero for success or a negative return code.
- */
- return f34->update_status;
-}
-
static ssize_t rmi_driver_bootloader_id_show(struct device *dev,
struct device_attribute *dattr,
char *buf)
{
struct rmi_driver_data *data = dev_get_drvdata(dev);
- struct rmi_function *fn = data->f34_container;
+ struct rmi_function *fn;
struct f34_data *f34;
- if (fn) {
- f34 = dev_get_drvdata(&fn->dev);
-
- if (f34->bl_version == 5)
- return sysfs_emit(buf, "%c%c\n",
- f34->bootloader_id[0],
- f34->bootloader_id[1]);
- else
- return sysfs_emit(buf, "V%d.%d\n",
- f34->bootloader_id[1],
- f34->bootloader_id[0]);
- }
+ fn = data->f34_container;
+ if (!fn)
+ return -ENODEV;
- return 0;
+ f34 = dev_get_drvdata(&fn->dev);
+ if (!f34)
+ return -ENODEV;
+
+ if (f34->bl_version == 5)
+ return sysfs_emit(buf, "%c%c\n",
+ f34->bootloader_id[0],
+ f34->bootloader_id[1]);
+ else
+ return sysfs_emit(buf, "V%d.%d\n",
+ f34->bootloader_id[1],
+ f34->bootloader_id[0]);
}
static DEVICE_ATTR(bootloader_id, 0444, rmi_driver_bootloader_id_show, NULL);
@@ -343,13 +335,16 @@ static ssize_t rmi_driver_configuration_id_show(struct device *dev,
struct rmi_function *fn = data->f34_container;
struct f34_data *f34;
- if (fn) {
- f34 = dev_get_drvdata(&fn->dev);
+ fn = data->f34_container;
+ if (!fn)
+ return -ENODEV;
- return sysfs_emit(buf, "%s\n", f34->configuration_id);
- }
+ f34 = dev_get_drvdata(&fn->dev);
+ if (!f34)
+ return -ENODEV;
- return 0;
+
+ return sysfs_emit(buf, "%s\n", f34->configuration_id);
}
static DEVICE_ATTR(configuration_id, 0444,
@@ -365,10 +360,14 @@ static int rmi_firmware_update(struct rmi_driver_data *data,
if (!data->f34_container) {
dev_warn(dev, "%s: No F34 present!\n", __func__);
- return -EINVAL;
+ return -ENODEV;
}
f34 = dev_get_drvdata(&data->f34_container->dev);
+ if (!f34) {
+ dev_warn(dev, "%s: No valid F34 present!\n", __func__);
+ return -ENODEV;
+ }
if (f34->bl_version == 7) {
if (data->pdt_props & HAS_BSR) {
@@ -494,10 +493,18 @@ static ssize_t rmi_driver_update_fw_status_show(struct device *dev,
char *buf)
{
struct rmi_driver_data *data = dev_get_drvdata(dev);
- int update_status = 0;
+ struct f34_data *f34;
+ int update_status = -ENODEV;
- if (data->f34_container)
- update_status = rmi_f34_status(data->f34_container);
+ /*
+ * The status is the percentage complete, or once complete,
+ * zero for success or a negative return code.
+ */
+ if (data->f34_container) {
+ f34 = dev_get_drvdata(&data->f34_container->dev);
+ if (f34)
+ update_status = f34->update_status;
+ }
return sysfs_emit(buf, "%d\n", update_status);
}
@@ -517,33 +524,21 @@ static const struct attribute_group rmi_firmware_attr_group = {
.attrs = rmi_firmware_attrs,
};
-static int rmi_f34_probe(struct rmi_function *fn)
+static int rmi_f34v5_probe(struct f34_data *f34)
{
- struct f34_data *f34;
- unsigned char f34_queries[9];
+ struct rmi_function *fn = f34->fn;
+ u8 f34_queries[9];
bool has_config_id;
- u8 version = fn->fd.function_version;
- int ret;
-
- f34 = devm_kzalloc(&fn->dev, sizeof(struct f34_data), GFP_KERNEL);
- if (!f34)
- return -ENOMEM;
-
- f34->fn = fn;
- dev_set_drvdata(&fn->dev, f34);
-
- /* v5 code only supported version 0, try V7 probe */
- if (version > 0)
- return rmi_f34v7_probe(f34);
+ int error;
f34->bl_version = 5;
- ret = rmi_read_block(fn->rmi_dev, fn->fd.query_base_addr,
- f34_queries, sizeof(f34_queries));
- if (ret) {
+ error = rmi_read_block(fn->rmi_dev, fn->fd.query_base_addr,
+ f34_queries, sizeof(f34_queries));
+ if (error) {
dev_err(&fn->dev, "%s: Failed to query properties\n",
__func__);
- return ret;
+ return error;
}
snprintf(f34->bootloader_id, sizeof(f34->bootloader_id),
@@ -569,11 +564,11 @@ static int rmi_f34_probe(struct rmi_function *fn)
f34->v5.config_blocks);
if (has_config_id) {
- ret = rmi_read_block(fn->rmi_dev, fn->fd.control_base_addr,
- f34_queries, sizeof(f34_queries));
- if (ret) {
+ error = rmi_read_block(fn->rmi_dev, fn->fd.control_base_addr,
+ f34_queries, sizeof(f34_queries));
+ if (error) {
dev_err(&fn->dev, "Failed to read F34 config ID\n");
- return ret;
+ return error;
}
snprintf(f34->configuration_id, sizeof(f34->configuration_id),
@@ -582,12 +577,34 @@ static int rmi_f34_probe(struct rmi_function *fn)
f34_queries[2], f34_queries[3]);
rmi_dbg(RMI_DEBUG_FN, &fn->dev, "Configuration ID: %s\n",
- f34->configuration_id);
+ f34->configuration_id);
}
return 0;
}
+static int rmi_f34_probe(struct rmi_function *fn)
+{
+ struct f34_data *f34;
+ u8 version = fn->fd.function_version;
+ int error;
+
+ f34 = devm_kzalloc(&fn->dev, sizeof(struct f34_data), GFP_KERNEL);
+ if (!f34)
+ return -ENOMEM;
+
+ f34->fn = fn;
+
+ /* v5 code only supported version 0 */
+ error = version == 0 ? rmi_f34v5_probe(f34) : rmi_f34v7_probe(f34);
+ if (error)
+ return error;
+
+ dev_set_drvdata(&fn->dev, f34);
+
+ return 0;
+}
+
int rmi_f34_create_sysfs(struct rmi_device *rmi_dev)
{
return sysfs_create_group(&rmi_dev->dev.kobj, &rmi_firmware_attr_group);
--
2.39.5
next prev parent reply other threads:[~2025-06-23 21:07 UTC|newest]
Thread overview: 365+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-23 13:03 [PATCH 5.10 000/355] 5.10.239-rc1 review Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 001/355] tracing: Fix compilation warning on arm32 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 002/355] pinctrl: armada-37xx: use correct OUTPUT_VAL register for GPIOs > 31 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 003/355] pinctrl: armada-37xx: set GPIO output value before setting direction Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 004/355] acpi-cpufreq: Fix nominal_freq units to KHz in get_max_boost_ratio() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 005/355] usb: quirks: Add NO_LPM quirk for SanDisk Extreme 55AE Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 006/355] usb: storage: Ignore UAS driver for SanDisk 3.2 Gen2 storage device Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 007/355] usb: usbtmc: Fix timeout value in get_stb Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 008/355] thunderbolt: Do not double dequeue a configuration request Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 009/355] netfilter: nft_socket: fix sk refcount leaks Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 010/355] gfs2: gfs2_create_inode error handling fix Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 011/355] perf/core: Fix broken throttling when max_samples_per_tick=1 Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 012/355] crypto: sun8i-ss - do not use sg_dma_len before calling DMA functions Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 013/355] x86/cpu: Sanitize CPUID(0x80000000) output Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 014/355] crypto: marvell/cesa - Handle zero-length skcipher requests Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 015/355] crypto: marvell/cesa - Avoid empty transfer descriptor Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 016/355] crypto: lrw - Only add ecb if it is not already there Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 017/355] crypto: xts " Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 018/355] crypto: sun8i-ce - move fallback ahash_request to the end of the struct Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 019/355] EDAC/skx_common: Fix general protection fault Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 020/355] power: reset: at91-reset: Optimize at91_reset() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 021/355] PM: wakeup: Delete space in the end of string shown by pm_show_wakelocks() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 022/355] x86/mtrr: Check if fixed-range MTRRs exist in mtrr_save_fixed_ranges() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 023/355] ACPI: OSI: Stop advertising support for "3.0 _SCP Extensions" Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 024/355] spi: sh-msiof: Fix maximum DMA transfer size Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 025/355] drm/vmwgfx: Add seqno waiter for sync_files Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 026/355] media: rkvdec: Fix frame size enumeration Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 027/355] m68k: mac: Fix macintosh_config for Mac II Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 028/355] firmware: psci: Fix refcount leak in psci_dt_init Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 029/355] selftests/seccomp: fix syscall_restart test for arm compat Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 030/355] drm: rcar-du: Fix memory leak in rcar_du_vsps_init() Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 031/355] drm/vkms: Adjust vkms_state->active_planes allocation type Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 032/355] drm/tegra: rgb: Fix the unbound reference count Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 033/355] firmware: SDEI: Allow sdei initialization without ACPI_APEI_GHES Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 034/355] wifi: ath11k: fix node corruption in ar->arvifs list Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 035/355] f2fs: fix to do sanity check on sbi->total_valid_block_count Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 036/355] net: ncsi: Fix GCPS 64-bit member variables Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 037/355] wifi: rtw88: do not ignore hardware read error during DPK Greg Kroah-Hartman
2025-06-23 13:03 ` [PATCH 5.10 038/355] RDMA/hns: Include hnae3.h in hns_roce_hw_v2.h Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 039/355] f2fs: clean up w/ fscrypt_is_bounce_page() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 040/355] netfilter: bridge: Move specific fragmented packet to slow_path instead of dropping it Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 041/355] RDMA/mlx5: Fix error flow upon firmware failure for RQ destruction Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 042/355] clk: bcm: rpi: Add NULL check in raspberrypi_clk_register() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 043/355] ktls, sockmap: Fix missing uncharge operation Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 044/355] libbpf: Use proper errno value in nlattr Greg Kroah-Hartman
2025-06-23 13:54 ` Anton Protopopov
2025-06-24 10:09 ` Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 045/355] pinctrl: at91: Fix possible out-of-boundary access Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 046/355] bpf: Fix WARN() in get_bpf_raw_tp_regs Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 047/355] clk: qcom: gcc-msm8939: Fix mclk0 & mclk1 for 24 MHz Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 048/355] s390/bpf: Store backchain even for leaf progs Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 049/355] wifi: ath9k_htc: Abort software beacon handling if disabled Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 050/355] netfilter: nf_tables: nft_fib_ipv6: fix VRF ipv4/ipv6 result discrepancy Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 051/355] vfio/type1: Fix error unwind in migration dirty bitmap allocation Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 052/355] netfilter: nft_tunnel: fix geneve_opt dump Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 053/355] net: usb: aqc111: fix error handling of usbnet read calls Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 054/355] net: lan743x: rename lan743x_reset_phy to lan743x_hw_reset_phy Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 055/355] calipso: Dont call calipso functions for AF_INET sk Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 056/355] net: openvswitch: Fix the dead loop of MPLS parse Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 057/355] net: phy: mscc: Stop clearing the the UDPv4 checksum for L2 frames Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 058/355] f2fs: use d_inode(dentry) cleanup dentry->d_inode Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 059/355] f2fs: fix to correct check conditions in f2fs_cross_rename Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 060/355] ARM: dts: at91: usb_a9263: fix GPIO for Dataflash chip select Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 061/355] ARM: dts: at91: at91sam9263: fix NAND chip selects Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 062/355] arm64: dts: imx8mm-beacon: Fix RTC capacitive load Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 063/355] Squashfs: check return result of sb_min_blocksize Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 064/355] nilfs2: add pointer check for nilfs_direct_propagate() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 065/355] nilfs2: do not propagate ENOENT error from nilfs_btree_propagate() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 066/355] bus: fsl-mc: fix double-free on mc_dev Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 067/355] ARM: dts: qcom: apq8064 merge hw splinlock into corresponding syscon device Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 068/355] arm64: dts: rockchip: disable unrouted USB controllers and PHY on RK3399 Puma with Haikou Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 069/355] soc: aspeed: lpc: Fix impossible judgment condition Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 070/355] soc: aspeed: Add NULL check in aspeed_lpc_enable_snoop() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 071/355] fbdev: core: fbcvt: avoid division by 0 in fb_cvt_hperiod() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 072/355] randstruct: gcc-plugin: Remove bogus void member Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 073/355] randstruct: gcc-plugin: Fix attribute addition Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 074/355] perf build: Warn when libdebuginfod devel files are not available Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 075/355] perf ui browser hists: Set actions->thread before calling do_zoom_thread() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 076/355] backlight: pm8941: Add NULL check in wled_configure() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 077/355] perf scripts python: exported-sql-viewer.py: Fix pattern matching with Python 3 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 078/355] rpmsg: qcom_smd: Fix uninitialized return variable in __qcom_smd_send() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 079/355] mfd: exynos-lpass: Avoid calling exynos_lpass_disable() twice in exynos_lpass_remove() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 080/355] mfd: stmpe-spi: Correct the name used in MODULE_DEVICE_TABLE Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 081/355] perf tests switch-tracking: Fix timestamp comparison Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 082/355] perf record: Fix incorrect --user-regs comments Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 083/355] nfs: clear SB_RDONLY before getting superblock Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 084/355] nfs: ignore SB_RDONLY when remounting nfs Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 085/355] rtc: sh: assign correct interrupts with DT Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 086/355] PCI: cadence: Fix runtime atomic count underflow Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 087/355] dmaengine: ti: Add NULL check in udma_probe() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 088/355] PCI/DPC: Initialize aer_err_info before using it Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 089/355] rtc: Fix offset calculation for .start_secs < 0 Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 090/355] usb: renesas_usbhs: Reorder clock handling and power management in probe Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 091/355] serial: Fix potential null-ptr-deref in mlb_usio_probe() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 092/355] iio: adc: ad7124: Fix 3dB filter frequency reading Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 093/355] MIPS: Loongson64: Add missing #interrupt-cells for loongson64c_ls7a Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 094/355] vt: remove VT_RESIZE and VT_RESIZEX from vt_compat_ioctl() Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 095/355] net: stmmac: platform: guarantee uniqueness of bus_id Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 096/355] gve: Fix RX_BUFFERS_POSTED stat to report per-queue fill_cnt Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 097/355] net: tipc: fix refcount warning in tipc_aead_encrypt Greg Kroah-Hartman
2025-06-23 13:04 ` [PATCH 5.10 098/355] driver: net: ethernet: mtk_star_emac: fix suspend/resume issue Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 099/355] net/mlx4_en: Prevent potential integer overflow calculating Hz Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 100/355] spi: bcm63xx-spi: fix shared reset Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 101/355] spi: bcm63xx-hsspi: " Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 102/355] Bluetooth: L2CAP: Fix not responding with L2CAP_CR_LE_ENCRYPTION Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 103/355] ice: create new Tx scheduler nodes for new queues only Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 104/355] vmxnet3: correctly report gso type for UDP tunnels Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 105/355] PM: sleep: Fix power.is_suspended cleanup for direct-complete devices Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 106/355] do_change_type(): refuse to operate on unmounted/not ours mounts Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 107/355] pmdomain: core: Fix error checking in genpd_dev_pm_attach_by_id() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 108/355] Input: synaptics-rmi4 - convert to use sysfs_emit() APIs Greg Kroah-Hartman
2025-06-23 13:05 ` Greg Kroah-Hartman [this message]
2025-06-23 13:05 ` [PATCH 5.10 110/355] arm64: dts: ti: k3-am65-main: Drop deprecated ti,otap-del-sel property Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 111/355] arm64: dts: ti: k3-am65-main: Fix sdhci node properties Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 112/355] arm64: dts: ti: k3-am65-main: Add missing taps to sdhci0 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 113/355] serial: sh-sci: Check if TX data was written to device in .tx_empty() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 114/355] serial: sh-sci: Move runtime PM enable to sci_probe_single() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 115/355] serial: sh-sci: Clean sci_ports[0] after at earlycon exit Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 116/355] ath10k: add atomic protection for device recovery Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 117/355] ath10k: prevent deinitializing NAPI twice Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 118/355] ath10k: snoc: fix unbalanced IRQ enable in crash recovery Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 119/355] scsi: iscsi: Fix incorrect error path labels for flashnode operations Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 120/355] net_sched: sch_sfq: fix a potential crash on gso_skb handling Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 121/355] powerpc/vas: Move VAS API to book3s common platform Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 122/355] powerpc/vas: Return -EINVAL if the offset is non-zero in mmap() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 123/355] i40e: return false from i40e_reset_vf if reset is in progress Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 124/355] i40e: retry VFLR handling if there is ongoing VF reset Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 125/355] tcp: factorize logic into tcp_epollin_ready() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 126/355] bpf: Clean up sockmap related Kconfigs Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 127/355] net: Rename ->stream_memory_read to ->sock_is_readable Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 128/355] net: Fix TOCTOU issue in sk_is_readable() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 129/355] macsec: MACsec SCI assignment for ES = 0 Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 130/355] net: mdio: C22 is now optional, EOPNOTSUPP if not provided Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 131/355] net/mdiobus: Fix potential out-of-bounds read/write access Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 132/355] net/mlx5: Ensure fw pages are always allocated on same NUMA Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 133/355] net/mlx5: Fix return value when searching for existing flow group Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 134/355] net_sched: prio: fix a race in prio_tune() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 135/355] net_sched: red: fix a race in __red_change() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 136/355] net_sched: tbf: fix a race in tbf_change() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 137/355] sch_ets: make est_qlen_notify() idempotent Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 138/355] net_sched: ets: fix a race in ets_qdisc_change() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 139/355] fs/filesystems: Fix potential unsigned integer underflow in fs_name() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 140/355] posix-cpu-timers: fix race between handle_posix_cpu_timers() and posix_cpu_timer_del() Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 141/355] x86/boot/compressed: prefer cc-option for CFLAGS additions Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 142/355] MIPS: Move -Wa,-msoft-float check from as-option to cc-option Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 143/355] MIPS: Prefer cc-option for additions to cflags Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 144/355] kbuild: Update assembler calls to use proper flags and language target Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 145/355] drm/amd/display: Do not add -mhard-float to dml_ccflags for clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 146/355] mips: Include KBUILD_CPPFLAGS in CHECKFLAGS invocation Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 147/355] kbuild: Add CLANG_FLAGS to as-instr Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 148/355] kbuild: add $(CLANG_FLAGS) to KBUILD_CPPFLAGS Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 149/355] kbuild: Add KBUILD_CPPFLAGS to as-option invocation Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 150/355] drm/amd/display: Do not add -mhard-float to dcn2{1,0}_resource.o for clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 151/355] usb: Flush altsetting 0 endpoints before reinitializating them after reset Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 152/355] xen/arm: call uaccess_ttbr0_enable for dm_op hypercall Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 154/355] calipso: unlock rcu before returning -EAFNOSUPPORT Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 155/355] net: usb: aqc111: debug info before sanitation Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 156/355] kbuild: userprogs: fix bitsize and target detection on clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 157/355] kbuild: hdrcheck: fix cross build with clang Greg Kroah-Hartman
2025-06-23 13:05 ` [PATCH 5.10 158/355] tcp: tcp_data_ready() must look at SOCK_DONE Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 160/355] crypto: marvell/cesa - Do not chain submitted requests Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 161/355] gfs2: move msleep to sleepable context Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 163/355] ASoC: meson: meson-card-utils: use of_property_present() for DT parsing Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 164/355] net/mlx5_core: Add error handling inmlx5_query_nic_vport_qkey_viol_cntr() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 165/355] net/mlx5: Add error handling in mlx5_query_nic_vport_node_guid() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 167/355] nfsd: nfsd4_spo_must_allow() must check this is a v4 compound request Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 168/355] nfsd: Initialize ssc before laundromat_work to prevent NULL dereference Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 169/355] jbd2: fix data-race and null-ptr-deref in jbd2_journal_dirty_metadata() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 170/355] wifi: rtlwifi: disable ASPM for RTL8723BE with subsystem ID 11ad:1723 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 171/355] media: ov8856: suppress probe deferral errors Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 172/355] media: cxusb: no longer judge rbuf when the write fails Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 173/355] media: gspca: Add error handling for stv06xx_read_sensor() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 174/355] media: v4l2-dev: fix error handling in __video_register_device() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 175/355] media: venus: Fix probe error handling Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 176/355] media: videobuf2: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 177/355] media: vidtv: Terminating the subsequent process of initialization failure Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 178/355] media: vivid: Change the siize of the composing Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 179/355] ARM: 9447/1: arm/memremap: fix arch_memremap_can_ram_remap() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 180/355] ARM: omap: pmic-cpcap: do not mess around without CPCAP or OMAP4 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 181/355] bus: mhi: host: Fix conflict between power_up and SYSERR Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 182/355] ata: pata_via: Force PIO for ATAPI devices on VT6415/VT6330 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 183/355] bus: fsl-mc: do not add a device-link for the UAPI used DPMCP device Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 184/355] ext4: inline: fix len overflow in ext4_prepare_inline_data Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 185/355] ext4: fix calculation of credits for extent tree modification Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 186/355] ext4: factor out ext4_get_maxbytes() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 187/355] ext4: ensure i_size is smaller than maxbytes Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 188/355] Input: ims-pcu - check record size in ims_pcu_flash_firmware() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 189/355] f2fs: prevent kernel warning due to negative i_nlink from corrupted image Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 190/355] f2fs: fix to do sanity check on sit_bitmap_size Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 191/355] NFC: nci: uart: Set tty->disc_data only in success path Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 192/355] EDAC/altera: Use correct write width with the INTTEST register Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 193/355] fbdev: Fix fb_set_var to prevent null-ptr-deref in fb_videomode_to_var Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 194/355] vgacon: Add check for vc_origin address range in vgacon_scroll() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 195/355] parisc: fix building with gcc-15 Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 196/355] clk: meson-g12a: add missing fclk_div2 to spicc Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 197/355] ipc: fix to protect IPCS lookups using RCU Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 198/355] mm: fix ratelimit_pages update error in dirty_ratio_handler() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 199/355] mtd: rawnand: sunxi: Add randomizer configuration in sunxi_nfc_hw_ecc_write_chunk Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 200/355] mtd: nand: sunxi: Add randomizer configuration before randomizer enable Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 201/355] dm-mirror: fix a tiny race condition Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 202/355] ftrace: Fix UAF when lookup kallsym after ftrace disabled Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 203/355] net: ch9200: fix uninitialised access during mii_nway_restart Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 204/355] staging: iio: ad5933: Correct settling cycles encoding per datasheet Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 205/355] mips: Add -std= flag specified in KBUILD_CFLAGS to vdso CFLAGS Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 206/355] regulator: max14577: Add error check for max14577_read_reg() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 207/355] uio_hv_generic: Use correct size for interrupt and monitor pages Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 208/355] PCI: Add ACS quirk for Loongson PCIe Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 209/355] PCI: Fix lock symmetry in pci_slot_unlock() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 210/355] iio: imu: inv_icm42600: Fix temperature calculation Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 211/355] iio: adc: ad7606_spi: fix reg write value mask Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 212/355] ACPICA: fix acpi operand cache leak in dswstate.c Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 213/355] clocksource: Fix the CPUs choice in the watchdog per CPU verification Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 214/355] ACPICA: Avoid sequence overread in call to strncmp() Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 215/355] ASoC: tas2770: Power cycle amp on ISENSE/VSENSE change Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 216/355] ACPICA: fix acpi parse and parseext cache leaks Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 217/355] power: supply: bq27xxx: Retrieve again when busy Greg Kroah-Hartman
2025-06-23 13:06 ` [PATCH 5.10 218/355] ACPICA: utilities: Fix overflow check in vsnprintf() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 219/355] ASoC: tegra210_ahub: Add check to of_device_get_match_data() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 220/355] PM: runtime: fix denying of auto suspend in pm_suspend_timer_fn() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 221/355] ACPI: battery: negate current when discharging Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 222/355] drm/amdgpu/gfx6: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 223/355] sunrpc: update nextcheck time when adding new cache entries Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 224/355] drm/bridge: analogix_dp: Add irq flag IRQF_NO_AUTOEN instead of calling disable_irq() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 225/355] exfat: fix double free in delayed_free Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 226/355] drm/msm/hdmi: add runtime PM calls to DDC transfer function Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 227/355] media: uapi: v4l: Fix V4L2_TYPE_IS_OUTPUT condition Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 228/355] drm/amd/display: Add NULL pointer checks in dm_force_atomic_commit() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 229/355] drm/msm/a6xx: Increase HFI response timeout Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 230/355] drm/amdgpu/gfx10: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 231/355] media: uapi: v4l: Change V4L2_TYPE_IS_CAPTURE condition Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 232/355] drm/amdgpu/gfx7: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 233/355] ext4: ext4: unify EXT4_EX_NOCACHE|NOFAIL flags in ext4_ext_remove_space() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 234/355] jfs: fix array-index-out-of-bounds read in add_missing_indices Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 235/355] media: rkvdec: Initialize the m2m context before the controls Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 236/355] sunrpc: fix race in cache cleanup causing stale nextcheck time Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 237/355] ext4: prevent stale extent cache entries caused by concurrent get es_cache Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 238/355] drm/amdgpu/gfx8: fix CSIB handling Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 239/355] drm/amdgpu/gfx9: " Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 240/355] jfs: Fix null-ptr-deref in jfs_ioc_trim Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 241/355] drm/msm/dpu: dont select single flush for active CTL blocks Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 242/355] drm/amdkfd: Set SDMA_RLCx_IB_CNTL/SWITCH_INSIDE_IB Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 243/355] media: tc358743: ignore video while HPD is low Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 244/355] media: platform: exynos4-is: Add hardware sync wait to fimc_is_hw_change_mode() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 245/355] nios2: force update_mmu_cache on spurious tlb-permission--related pagefaults Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 246/355] thermal/drivers/qcom/tsens: Update conditions to strictly evaluate for IP v2+ Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 247/355] cpufreq: Force sync policy boost with global boost on sysfs update Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 248/355] net: macb: Check return value of dma_set_mask_and_coherent() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 249/355] tipc: use kfree_sensitive() for aead cleanup Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 250/355] i2c: designware: Invoke runtime suspend on quick slave re-registration Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 251/355] emulex/benet: correct command version selection in be_cmd_get_stats() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 252/355] wifi: mt76: mt76x2: Add support for LiteOn WN4516R,WN4519R Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 253/355] sctp: Do not wake readers in __sctp_write_space() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 254/355] i2c: npcm: Add clock toggle recovery Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 255/355] net: dlink: add synchronization for stats update Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 256/355] tcp: always seek for minimal rtt in tcp_rcv_rtt_update() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 257/355] tcp: fix initial tp->rcvq_space.space value for passive TS enabled flows Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 258/355] ipv4/route: Use this_cpu_inc() for stats on PREEMPT_RT Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 259/355] net: atlantic: generate software timestamp just before the doorbell Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 260/355] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_set_by_name() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 261/355] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get_direction() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 262/355] pinctrl: armada-37xx: propagate error from armada_37xx_pmx_gpio_set_direction() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 263/355] pinctrl: armada-37xx: propagate error from armada_37xx_gpio_get() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 264/355] net: mlx4: add SOF_TIMESTAMPING_TX_SOFTWARE flag when getting ts info Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 265/355] wifi: mac80211: do not offer a mesh path if forwarding is disabled Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 266/355] clk: rockchip: rk3036: mark ddrphy as critical Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 267/355] scsi: lpfc: Fix lpfc_check_sli_ndlp() handling for GEN_REQUEST64 commands Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 268/355] iommu/amd: Ensure GA log notifier callbacks finish running before module unload Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 269/355] vxlan: Do not treat dst cache initialization errors as fatal Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 270/355] software node: Correct a OOB check in software_node_get_reference_args() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 271/355] scsi: lpfc: Use memcpy() for BIOS version Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 272/355] sock: Correct error checking condition for (assign|release)_proto_idx() Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 273/355] i40e: fix MMIO write access to an invalid page in i40e_clear_hw Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 274/355] watchdog: da9052_wdt: respect TWDMIN Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 275/355] bus: fsl-mc: increase MC_CMD_COMPLETION_TIMEOUT_MS value Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 276/355] ARM: OMAP2+: Fix l4ls clk domain handling in STANDBY Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 277/355] tee: Prevent size calculation wraparound on 32-bit kernels Greg Kroah-Hartman
2025-06-23 13:07 ` [PATCH 5.10 278/355] Revert "bus: ti-sysc: Probe for l4_wkup and l4_cfg interconnect devices first" Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 279/355] platform: Add Surface platform directory Greg Kroah-Hartman
2025-07-16 15:03 ` Mahmoud Nagy Adam
2025-07-17 8:58 ` Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 280/355] platform/x86: dell_rbu: Fix list usage Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 281/355] platform/x86: dell_rbu: Stop overwriting data buffer Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 282/355] powerpc/eeh: Fix missing PE bridge reconfiguration during VFIO EEH recovery Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 283/355] Revert "x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2" on v6.6 and older Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 284/355] drivers/rapidio/rio_cm.c: prevent possible heap overwrite Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 285/355] jffs2: check that raw node were preallocated before writing summary Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 286/355] jffs2: check jffs2_prealloc_raw_node_refs() result in few other places Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 287/355] scsi: storvsc: Increase the timeouts to storvsc_timeout Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 288/355] scsi: s390: zfcp: Ensure synchronous unit_add Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 289/355] udmabuf: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 290/355] selinux: fix selinux_xfrm_alloc_user() to set correct ctx_len Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 291/355] atm: Revert atm_account_tx() if copy_from_iter_full() fails Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 292/355] HID: usbhid: Eliminate recurrent out-of-bounds bug in usbhid_parse() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 293/355] Input: sparcspkr - avoid unannotated fall-through Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 294/355] ALSA: usb-audio: Rename ALSA kcontrol PCM and PCM1 for the KTMicro sound card Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 295/355] ALSA: hda/intel: Add Thinkpad E15 to PM deny list Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 296/355] ALSA: hda/realtek: enable headset mic on Latitude 5420 Rugged Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 297/355] hugetlb: unshare some PMDs when splitting VMAs Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 298/355] mm/hugetlb: unshare page tables during VMA split, not before Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 299/355] mm: hugetlb: independent PMD page table shared count Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 300/355] mm/hugetlb: fix huge_pmd_unshare() vs GUP-fast race Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 301/355] erofs: remove unused trace event erofs_destroy_inode Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 302/355] drm/nouveau/bl: increase buffer size to avoid truncate warning Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 303/355] hwmon: (occ) Add new temperature sensor type Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 304/355] hwmon: (occ) Add soft minimum power cap attribute Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 305/355] hwmon: (occ) Rework attribute registration for stack usage Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 306/355] hwmon: (occ) fix unaligned accesses Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 307/355] pldmfw: Select CRC32 when PLDMFW is selected Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 308/355] aoe: clean device rq_list in aoedev_downdev() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 309/355] net: ice: Perform accurate aRFS flow match Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 310/355] wifi: carl9170: do not ping device which has failed to load firmware Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 311/355] mpls: Use rcu_dereference_rtnl() in mpls_route_input_rcu() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 312/355] atm: atmtcp: Free invalid length skb in atmtcp_c_send() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 313/355] tcp: fix tcp_packet_delayed() for tcp_is_non_sack_preventing_reopen() behavior Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 314/355] tipc: fix null-ptr-deref when acquiring remote ip of ethernet bearer Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 315/355] calipso: Fix null-ptr-deref in calipso_req_{set,del}attr() Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 316/355] net: atm: add lec_mutex Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 317/355] net: atm: fix /proc/net/atm/lec handling Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 318/355] ARM: dts: am335x-bone-common: Add GPIO PHY reset on revision C3 board Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 319/355] ARM: dts: am335x-bone-common: Increase MDIO reset deassert time Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 320/355] ARM: dts: am335x-bone-common: Increase MDIO reset deassert delay to 50ms Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 321/355] serial: sh-sci: Increment the runtime usage counter for the earlycon device Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 322/355] arm64: insn: Add barrier encodings Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 323/355] arm64: move AARCH64_BREAK_FAULT into insn-def.h Greg Kroah-Hartman
2025-06-23 23:24 ` Dominique Martinet
2025-06-24 2:05 ` Pu Lehui
2025-06-24 3:34 ` Pu Lehui
2025-06-24 10:24 ` Greg Kroah-Hartman
2025-06-24 11:57 ` Pu Lehui
2025-06-23 13:08 ` [PATCH 5.10 324/355] arm64: insn: add encoders for atomic operations Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 325/355] arm64: insn: Add support for encoding DSB Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 326/355] arm64: proton-pack: Expose whether the platform is mitigated by firmware Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 327/355] arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 328/355] arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe list Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 329/355] arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected() lists Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 330/355] arm64: errata: Add missing sentinels to Spectre-BHB MIDR arrays Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 331/355] arm64: proton-pack: Expose whether the branchy loop k value Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 333/355] arm64: bpf: Add BHB mitigation to the epilogue for cBPF programs Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 334/355] arm64: bpf: Only mitigate cBPF programs loaded by unprivileged users Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 335/355] arm64: proton-pack: Add new CPUs k values for branch mitigation Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 336/355] net/ipv4: fix type mismatch in inet_ehash_locks_alloc() causing build failure Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 337/355] net: Fix checksum update for ILA adj-transport Greg Kroah-Hartman
2025-06-23 13:08 ` [PATCH 5.10 338/355] bpf: Fix L4 csum update on IPv6 in CHECKSUM_COMPLETE Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 339/355] rtc: Improve performance of rtc_time64_to_tm(). Add tests Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 340/355] rtc: Make rtc_time64_to_tm() support dates before 1970 Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 341/355] net_sched: sch_sfq: annotate data-races around q->perturb_period Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 342/355] net_sched: sch_sfq: handle bigger packets Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 343/355] net_sched: sch_sfq: dont allow 1 packet limit Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 344/355] net_sched: sch_sfq: use a temporary work area for validating configuration Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 345/355] net_sched: sch_sfq: move the limit validation Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 346/355] mm/huge_memory: fix dereferencing invalid pmd migration entry Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 347/355] hwmon: (occ) Fix P10 VRM temp sensors Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 348/355] rtc: test: Fix invalid format specifier Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 349/355] s390/pci: Fix __pcilg_mio_inuser() inline assembly Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 350/355] Revert "selftests/bpf: make test_align selftest more robust" Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 351/355] Revert "bpf: aggressively forget precise markings during state checkpointing" Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 352/355] Revert "bpf: stop setting precise in current state" Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 353/355] Revert "bpf: allow precision tracking for programs with subprogs" Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 354/355] perf: Fix sample vs do_exit() Greg Kroah-Hartman
2025-06-23 13:09 ` [PATCH 5.10 355/355] arm64/ptrace: Fix stack-out-of-bounds read in regs_get_kernel_stack_nth() Greg Kroah-Hartman
2025-06-23 20:26 ` [PATCH 5.10 000/355] 5.10.239-rc1 review Naresh Kamboju
2025-06-24 10:27 ` Greg Kroah-Hartman
2025-06-24 10:41 ` Pavel Machek
2025-06-23 20:30 ` Florian Fainelli
2025-06-24 7:02 ` Dominique Martinet
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=20250623130630.046976565@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=dmitry.torokhov@gmail.com \
--cc=hanno@hboeck.de \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.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 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).