patches.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	Stanimir Varbanov <stanimir.varbanov@linaro.org>,
	Mauro Carvalho Chehab <mchehab+huawei@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 206/286] media: venus: Create hfi platform and move vpp/vsp there
Date: Tue, 29 Apr 2025 18:41:50 +0200	[thread overview]
Message-ID: <20250429161116.428579014@linuxfoundation.org> (raw)
In-Reply-To: <20250429161107.848008295@linuxfoundation.org>

5.10-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Stanimir Varbanov <stanimir.varbanov@linaro.org>

[ Upstream commit aa6033892b1d8ea956ce0358867806e171a620d1 ]

Introduce a new hfi platform to cover differences between hfi
versions. As a start move vpp/vsp freq data in that hfi
platform, more platform data will come later.

Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Stable-dep-of: 9edaaa8e3e15 ("media: venus: hfi_parser: refactor hfi packet parsing logic")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/media/platform/qcom/venus/Makefile    |  3 +-
 drivers/media/platform/qcom/venus/core.c      | 17 ------
 drivers/media/platform/qcom/venus/core.h      | 12 +---
 drivers/media/platform/qcom/venus/helpers.c   | 54 ++++++++---------
 drivers/media/platform/qcom/venus/helpers.h   |  2 +-
 .../media/platform/qcom/venus/hfi_platform.c  | 49 +++++++++++++++
 .../media/platform/qcom/venus/hfi_platform.h  | 34 +++++++++++
 .../platform/qcom/venus/hfi_platform_v4.c     | 60 +++++++++++++++++++
 .../media/platform/qcom/venus/pm_helpers.c    |  9 +--
 drivers/media/platform/qcom/venus/vdec.c      |  6 +-
 drivers/media/platform/qcom/venus/venc.c      |  6 +-
 11 files changed, 179 insertions(+), 73 deletions(-)
 create mode 100644 drivers/media/platform/qcom/venus/hfi_platform.c
 create mode 100644 drivers/media/platform/qcom/venus/hfi_platform.h
 create mode 100644 drivers/media/platform/qcom/venus/hfi_platform_v4.c

diff --git a/drivers/media/platform/qcom/venus/Makefile b/drivers/media/platform/qcom/venus/Makefile
index dfc6368657091..09ebf46716925 100644
--- a/drivers/media/platform/qcom/venus/Makefile
+++ b/drivers/media/platform/qcom/venus/Makefile
@@ -3,7 +3,8 @@
 
 venus-core-objs += core.o helpers.o firmware.o \
 		   hfi_venus.o hfi_msgs.o hfi_cmds.o hfi.o \
-		   hfi_parser.o pm_helpers.o dbgfs.o
+		   hfi_parser.o pm_helpers.o dbgfs.o \
+		   hfi_platform.o hfi_platform_v4.o \
 
 venus-dec-objs += vdec.o vdec_ctrls.o
 venus-enc-objs += venc.o venc_ctrls.o
diff --git a/drivers/media/platform/qcom/venus/core.c b/drivers/media/platform/qcom/venus/core.c
index 1859dd3f7f546..987b1d010c047 100644
--- a/drivers/media/platform/qcom/venus/core.c
+++ b/drivers/media/platform/qcom/venus/core.c
@@ -529,17 +529,6 @@ static const struct freq_tbl sdm845_freq_table[] = {
 	{  244800, 100000000 },	/* 1920x1080@30 */
 };
 
-static const struct codec_freq_data sdm845_codec_freq_data[] =  {
-	{ V4L2_PIX_FMT_H264, VIDC_SESSION_TYPE_ENC, 675, 10 },
-	{ V4L2_PIX_FMT_HEVC, VIDC_SESSION_TYPE_ENC, 675, 10 },
-	{ V4L2_PIX_FMT_VP8, VIDC_SESSION_TYPE_ENC, 675, 10 },
-	{ V4L2_PIX_FMT_MPEG2, VIDC_SESSION_TYPE_DEC, 200, 10 },
-	{ V4L2_PIX_FMT_H264, VIDC_SESSION_TYPE_DEC, 200, 10 },
-	{ V4L2_PIX_FMT_HEVC, VIDC_SESSION_TYPE_DEC, 200, 10 },
-	{ V4L2_PIX_FMT_VP8, VIDC_SESSION_TYPE_DEC, 200, 10 },
-	{ V4L2_PIX_FMT_VP9, VIDC_SESSION_TYPE_DEC, 200, 10 },
-};
-
 static const struct bw_tbl sdm845_bw_table_enc[] = {
 	{ 1944000, 1612000, 0, 2416000, 0 },	/* 3840x2160@60 */
 	{  972000,  951000, 0, 1434000, 0 },	/* 3840x2160@30 */
@@ -561,8 +550,6 @@ static const struct venus_resources sdm845_res = {
 	.bw_tbl_enc_size = ARRAY_SIZE(sdm845_bw_table_enc),
 	.bw_tbl_dec = sdm845_bw_table_dec,
 	.bw_tbl_dec_size = ARRAY_SIZE(sdm845_bw_table_dec),
-	.codec_freq_data = sdm845_codec_freq_data,
-	.codec_freq_data_size = ARRAY_SIZE(sdm845_codec_freq_data),
 	.clks = {"core", "iface", "bus" },
 	.clks_num = 3,
 	.vcodec0_clks = { "core", "bus" },
@@ -584,8 +571,6 @@ static const struct venus_resources sdm845_res_v2 = {
 	.bw_tbl_enc_size = ARRAY_SIZE(sdm845_bw_table_enc),
 	.bw_tbl_dec = sdm845_bw_table_dec,
 	.bw_tbl_dec_size = ARRAY_SIZE(sdm845_bw_table_dec),
-	.codec_freq_data = sdm845_codec_freq_data,
-	.codec_freq_data_size = ARRAY_SIZE(sdm845_codec_freq_data),
 	.clks = {"core", "iface", "bus" },
 	.clks_num = 3,
 	.vcodec0_clks = { "vcodec0_core", "vcodec0_bus" },
@@ -635,8 +620,6 @@ static const struct venus_resources sc7180_res = {
 	.bw_tbl_enc_size = ARRAY_SIZE(sc7180_bw_table_enc),
 	.bw_tbl_dec = sc7180_bw_table_dec,
 	.bw_tbl_dec_size = ARRAY_SIZE(sc7180_bw_table_dec),
-	.codec_freq_data = sdm845_codec_freq_data,
-	.codec_freq_data_size = ARRAY_SIZE(sdm845_codec_freq_data),
 	.clks = {"core", "iface", "bus" },
 	.clks_num = 3,
 	.vcodec0_clks = { "vcodec0_core", "vcodec0_bus" },
diff --git a/drivers/media/platform/qcom/venus/core.h b/drivers/media/platform/qcom/venus/core.h
index e56d7b8142152..53d3202460ae9 100644
--- a/drivers/media/platform/qcom/venus/core.h
+++ b/drivers/media/platform/qcom/venus/core.h
@@ -36,13 +36,6 @@ struct reg_val {
 	u32 value;
 };
 
-struct codec_freq_data {
-	u32 pixfmt;
-	u32 session_type;
-	unsigned long vpp_freq;
-	unsigned long vsp_freq;
-};
-
 struct bw_tbl {
 	u32 mbs_per_sec;
 	u32 avg;
@@ -61,8 +54,6 @@ struct venus_resources {
 	unsigned int bw_tbl_dec_size;
 	const struct reg_val *reg_tbl;
 	unsigned int reg_tbl_size;
-	const struct codec_freq_data *codec_freq_data;
-	unsigned int codec_freq_data_size;
 	const char * const clks[VIDC_CLKS_NUM_MAX];
 	unsigned int clks_num;
 	const char * const vcodec0_clks[VIDC_VCODEC_CLKS_NUM_MAX];
@@ -280,7 +271,8 @@ struct venus_buffer {
 struct clock_data {
 	u32 core_id;
 	unsigned long freq;
-	const struct codec_freq_data *codec_freq_data;
+	unsigned long vpp_freq;
+	unsigned long vsp_freq;
 };
 
 #define to_venus_buffer(ptr)	container_of(ptr, struct venus_buffer, vb)
diff --git a/drivers/media/platform/qcom/venus/helpers.c b/drivers/media/platform/qcom/venus/helpers.c
index 5fdce5f07364e..9ad8abdc4d4f2 100644
--- a/drivers/media/platform/qcom/venus/helpers.c
+++ b/drivers/media/platform/qcom/venus/helpers.c
@@ -15,6 +15,7 @@
 #include "helpers.h"
 #include "hfi_helper.h"
 #include "pm_helpers.h"
+#include "hfi_platform.h"
 
 struct intbuf {
 	struct list_head list;
@@ -1040,36 +1041,6 @@ int venus_helper_set_work_mode(struct venus_inst *inst, u32 mode)
 }
 EXPORT_SYMBOL_GPL(venus_helper_set_work_mode);
 
-int venus_helper_init_codec_freq_data(struct venus_inst *inst)
-{
-	const struct codec_freq_data *data;
-	unsigned int i, data_size;
-	u32 pixfmt;
-	int ret = 0;
-
-	if (!IS_V4(inst->core))
-		return 0;
-
-	data = inst->core->res->codec_freq_data;
-	data_size = inst->core->res->codec_freq_data_size;
-	pixfmt = inst->session_type == VIDC_SESSION_TYPE_DEC ?
-			inst->fmt_out->pixfmt : inst->fmt_cap->pixfmt;
-
-	for (i = 0; i < data_size; i++) {
-		if (data[i].pixfmt == pixfmt &&
-		    data[i].session_type == inst->session_type) {
-			inst->clk_data.codec_freq_data = &data[i];
-			break;
-		}
-	}
-
-	if (!inst->clk_data.codec_freq_data)
-		ret = -EINVAL;
-
-	return ret;
-}
-EXPORT_SYMBOL_GPL(venus_helper_init_codec_freq_data);
-
 int venus_helper_set_num_bufs(struct venus_inst *inst, unsigned int input_bufs,
 			      unsigned int output_bufs,
 			      unsigned int output2_bufs)
@@ -1535,6 +1506,29 @@ void venus_helper_m2m_job_abort(void *priv)
 }
 EXPORT_SYMBOL_GPL(venus_helper_m2m_job_abort);
 
+int venus_helper_session_init(struct venus_inst *inst)
+{
+	enum hfi_version version = inst->core->res->hfi_version;
+	u32 session_type = inst->session_type;
+	u32 codec;
+	int ret;
+
+	codec = inst->session_type == VIDC_SESSION_TYPE_DEC ?
+			inst->fmt_out->pixfmt : inst->fmt_cap->pixfmt;
+
+	ret = hfi_session_init(inst, codec);
+	if (ret)
+		return ret;
+
+	inst->clk_data.vpp_freq = hfi_platform_get_codec_vpp_freq(version, codec,
+								  session_type);
+	inst->clk_data.vsp_freq = hfi_platform_get_codec_vsp_freq(version, codec,
+								  session_type);
+
+	return 0;
+}
+EXPORT_SYMBOL_GPL(venus_helper_session_init);
+
 void venus_helper_init_instance(struct venus_inst *inst)
 {
 	if (inst->session_type == VIDC_SESSION_TYPE_DEC) {
diff --git a/drivers/media/platform/qcom/venus/helpers.h b/drivers/media/platform/qcom/venus/helpers.h
index a4a0562bc83f5..5407979bf234b 100644
--- a/drivers/media/platform/qcom/venus/helpers.h
+++ b/drivers/media/platform/qcom/venus/helpers.h
@@ -33,7 +33,6 @@ int venus_helper_set_output_resolution(struct venus_inst *inst,
 				       unsigned int width, unsigned int height,
 				       u32 buftype);
 int venus_helper_set_work_mode(struct venus_inst *inst, u32 mode);
-int venus_helper_init_codec_freq_data(struct venus_inst *inst);
 int venus_helper_set_num_bufs(struct venus_inst *inst, unsigned int input_bufs,
 			      unsigned int output_bufs,
 			      unsigned int output2_bufs);
@@ -48,6 +47,7 @@ unsigned int venus_helper_get_opb_size(struct venus_inst *inst);
 void venus_helper_acquire_buf_ref(struct vb2_v4l2_buffer *vbuf);
 void venus_helper_release_buf_ref(struct venus_inst *inst, unsigned int idx);
 void venus_helper_init_instance(struct venus_inst *inst);
+int venus_helper_session_init(struct venus_inst *inst);
 int venus_helper_get_out_fmts(struct venus_inst *inst, u32 fmt, u32 *out_fmt,
 			      u32 *out2_fmt, bool ubwc);
 int venus_helper_alloc_dpb_bufs(struct venus_inst *inst);
diff --git a/drivers/media/platform/qcom/venus/hfi_platform.c b/drivers/media/platform/qcom/venus/hfi_platform.c
new file mode 100644
index 0000000000000..65559cae21aaa
--- /dev/null
+++ b/drivers/media/platform/qcom/venus/hfi_platform.c
@@ -0,0 +1,49 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Copyright (c) 2020, The Linux Foundation. All rights reserved.
+ */
+#include "hfi_platform.h"
+
+const struct hfi_platform *hfi_platform_get(enum hfi_version version)
+{
+	switch (version) {
+	case HFI_VERSION_4XX:
+		return &hfi_plat_v4;
+	default:
+		break;
+	}
+
+	return NULL;
+}
+
+unsigned long
+hfi_platform_get_codec_vpp_freq(enum hfi_version version, u32 codec, u32 session_type)
+{
+	const struct hfi_platform *plat;
+	unsigned long freq = 0;
+
+	plat = hfi_platform_get(version);
+	if (!plat)
+		return 0;
+
+	if (plat->codec_vpp_freq)
+		freq = plat->codec_vpp_freq(session_type, codec);
+
+	return freq;
+}
+
+unsigned long
+hfi_platform_get_codec_vsp_freq(enum hfi_version version, u32 codec, u32 session_type)
+{
+	const struct hfi_platform *plat;
+	unsigned long freq = 0;
+
+	plat = hfi_platform_get(version);
+	if (!plat)
+		return 0;
+
+	if (plat->codec_vpp_freq)
+		freq = plat->codec_vsp_freq(session_type, codec);
+
+	return freq;
+}
diff --git a/drivers/media/platform/qcom/venus/hfi_platform.h b/drivers/media/platform/qcom/venus/hfi_platform.h
new file mode 100644
index 0000000000000..8b07ecbb4c825
--- /dev/null
+++ b/drivers/media/platform/qcom/venus/hfi_platform.h
@@ -0,0 +1,34 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * Copyright (c) 2020, The Linux Foundation. All rights reserved.
+ */
+
+#ifndef __HFI_PLATFORM_H__
+#define __HFI_PLATFORM_H__
+
+#include <linux/types.h>
+#include <linux/videodev2.h>
+
+#include "hfi.h"
+#include "hfi_helper.h"
+
+struct hfi_platform_codec_freq_data {
+	u32 pixfmt;
+	u32 session_type;
+	unsigned long vpp_freq;
+	unsigned long vsp_freq;
+};
+
+struct hfi_platform {
+	unsigned long (*codec_vpp_freq)(u32 session_type, u32 codec);
+	unsigned long (*codec_vsp_freq)(u32 session_type, u32 codec);
+};
+
+extern const struct hfi_platform hfi_plat_v4;
+
+const struct hfi_platform *hfi_platform_get(enum hfi_version version);
+unsigned long hfi_platform_get_codec_vpp_freq(enum hfi_version version, u32 codec,
+					      u32 session_type);
+unsigned long hfi_platform_get_codec_vsp_freq(enum hfi_version version, u32 codec,
+					      u32 session_type);
+#endif
diff --git a/drivers/media/platform/qcom/venus/hfi_platform_v4.c b/drivers/media/platform/qcom/venus/hfi_platform_v4.c
new file mode 100644
index 0000000000000..4fc2fd04ca9d1
--- /dev/null
+++ b/drivers/media/platform/qcom/venus/hfi_platform_v4.c
@@ -0,0 +1,60 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Copyright (c) 2020, The Linux Foundation. All rights reserved.
+ */
+#include "hfi_platform.h"
+
+static const struct hfi_platform_codec_freq_data codec_freq_data[] =  {
+	{ V4L2_PIX_FMT_H264, VIDC_SESSION_TYPE_ENC, 675, 10 },
+	{ V4L2_PIX_FMT_HEVC, VIDC_SESSION_TYPE_ENC, 675, 10 },
+	{ V4L2_PIX_FMT_VP8, VIDC_SESSION_TYPE_ENC, 675, 10 },
+	{ V4L2_PIX_FMT_MPEG2, VIDC_SESSION_TYPE_DEC, 200, 10 },
+	{ V4L2_PIX_FMT_H264, VIDC_SESSION_TYPE_DEC, 200, 10 },
+	{ V4L2_PIX_FMT_HEVC, VIDC_SESSION_TYPE_DEC, 200, 10 },
+	{ V4L2_PIX_FMT_VP8, VIDC_SESSION_TYPE_DEC, 200, 10 },
+	{ V4L2_PIX_FMT_VP9, VIDC_SESSION_TYPE_DEC, 200, 10 },
+};
+
+static const struct hfi_platform_codec_freq_data *
+get_codec_freq_data(u32 session_type, u32 pixfmt)
+{
+	const struct hfi_platform_codec_freq_data *data = codec_freq_data;
+	unsigned int i, data_size = ARRAY_SIZE(codec_freq_data);
+	const struct hfi_platform_codec_freq_data *found = NULL;
+
+	for (i = 0; i < data_size; i++) {
+		if (data[i].pixfmt == pixfmt && data[i].session_type == session_type) {
+			found = &data[i];
+			break;
+		}
+	}
+
+	return found;
+}
+
+static unsigned long codec_vpp_freq(u32 session_type, u32 codec)
+{
+	const struct hfi_platform_codec_freq_data *data;
+
+	data = get_codec_freq_data(session_type, codec);
+	if (data)
+		return data->vpp_freq;
+
+	return 0;
+}
+
+static unsigned long codec_vsp_freq(u32 session_type, u32 codec)
+{
+	const struct hfi_platform_codec_freq_data *data;
+
+	data = get_codec_freq_data(session_type, codec);
+	if (data)
+		return data->vsp_freq;
+
+	return 0;
+}
+
+const struct hfi_platform hfi_plat_v4 = {
+	.codec_vpp_freq = codec_vpp_freq,
+	.codec_vsp_freq = codec_vsp_freq,
+};
diff --git a/drivers/media/platform/qcom/venus/pm_helpers.c b/drivers/media/platform/qcom/venus/pm_helpers.c
index 12c5811fefdf9..7c3541c35ab69 100644
--- a/drivers/media/platform/qcom/venus/pm_helpers.c
+++ b/drivers/media/platform/qcom/venus/pm_helpers.c
@@ -18,6 +18,7 @@
 #include "hfi_parser.h"
 #include "hfi_venus_io.h"
 #include "pm_helpers.h"
+#include "hfi_platform.h"
 
 static bool legacy_binding;
 
@@ -506,7 +507,7 @@ min_loaded_core(struct venus_inst *inst, u32 *min_coreid, u32 *min_load)
 		if (inst_pos->state != INST_START)
 			continue;
 
-		vpp_freq = inst_pos->clk_data.codec_freq_data->vpp_freq;
+		vpp_freq = inst_pos->clk_data.vpp_freq;
 		coreid = inst_pos->clk_data.core_id;
 
 		mbs_per_sec = load_per_instance(inst_pos);
@@ -555,7 +556,7 @@ static int decide_core(struct venus_inst *inst)
 		return 0;
 
 	inst_load = load_per_instance(inst);
-	inst_load *= inst->clk_data.codec_freq_data->vpp_freq;
+	inst_load *= inst->clk_data.vpp_freq;
 	max_freq = core->res->freq_tbl[0].freq;
 
 	min_loaded_core(inst, &min_coreid, &min_load);
@@ -940,10 +941,10 @@ static unsigned long calculate_inst_freq(struct venus_inst *inst,
 	if (inst->state != INST_START)
 		return 0;
 
-	vpp_freq = mbs_per_sec * inst->clk_data.codec_freq_data->vpp_freq;
+	vpp_freq = mbs_per_sec * inst->clk_data.vpp_freq;
 	/* 21 / 20 is overhead factor */
 	vpp_freq += vpp_freq / 20;
-	vsp_freq = mbs_per_sec * inst->clk_data.codec_freq_data->vsp_freq;
+	vsp_freq = mbs_per_sec * inst->clk_data.vsp_freq;
 
 	/* 10 / 7 is overhead factor */
 	if (inst->session_type == VIDC_SESSION_TYPE_ENC)
diff --git a/drivers/media/platform/qcom/venus/vdec.c b/drivers/media/platform/qcom/venus/vdec.c
index 6e9b62645e917..68390143d37df 100644
--- a/drivers/media/platform/qcom/venus/vdec.c
+++ b/drivers/media/platform/qcom/venus/vdec.c
@@ -767,7 +767,7 @@ static int vdec_session_init(struct venus_inst *inst)
 {
 	int ret;
 
-	ret = hfi_session_init(inst, inst->fmt_out->pixfmt);
+	ret = venus_helper_session_init(inst);
 	if (ret == -EALREADY)
 		return 0;
 	else if (ret)
@@ -778,10 +778,6 @@ static int vdec_session_init(struct venus_inst *inst)
 	if (ret)
 		goto deinit;
 
-	ret = venus_helper_init_codec_freq_data(inst);
-	if (ret)
-		goto deinit;
-
 	return 0;
 deinit:
 	hfi_session_deinit(inst);
diff --git a/drivers/media/platform/qcom/venus/venc.c b/drivers/media/platform/qcom/venus/venc.c
index 9f1b02e31b98c..bc62cb02458c9 100644
--- a/drivers/media/platform/qcom/venus/venc.c
+++ b/drivers/media/platform/qcom/venus/venc.c
@@ -726,7 +726,7 @@ static int venc_init_session(struct venus_inst *inst)
 {
 	int ret;
 
-	ret = hfi_session_init(inst, inst->fmt_cap->pixfmt);
+	ret = venus_helper_session_init(inst);
 	if (ret == -EALREADY)
 		return 0;
 	else if (ret)
@@ -747,10 +747,6 @@ static int venc_init_session(struct venus_inst *inst)
 	if (ret)
 		goto deinit;
 
-	ret = venus_helper_init_codec_freq_data(inst);
-	if (ret)
-		goto deinit;
-
 	ret = venc_set_properties(inst);
 	if (ret)
 		goto deinit;
-- 
2.39.5




  parent reply	other threads:[~2025-04-29 17:20 UTC|newest]

Thread overview: 292+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-29 16:38 [PATCH 5.10 000/286] 5.10.237-rc1 review Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 001/286] ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 002/286] tipc: fix memory leak in tipc_link_xmit Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 003/286] codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 004/286] net: tls: explicitly disallow disconnect Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 005/286] ata: sata_sx4: Drop pointless VPRINTK() calls and convert the remaining ones Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 006/286] ata: sata_sx4: Add error handling in pdc20621_i2c_read() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 007/286] nvmet-fcloop: swap list_add_tail arguments Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 008/286] net: ppp: Add bound checking for skb data on ppp_sync_txmung Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 009/286] nft_set_pipapo: fix incorrect avx2 match of 5th field octet Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 010/286] umount: Allow superblock owners to force umount Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 011/286] pm: cpupower: bench: Prevent NULL dereference on malloc failure Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 012/286] 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-29 16:38 ` [PATCH 5.10 013/286] perf: arm_pmu: Dont disable counter in armpmu_add() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 014/286] arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 015/286] xen/mcelog: Add __nonstring annotations for unterminated strings Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 016/286] HID: pidff: Convert infinite length from Linux API to PID standard Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 017/286] HID: pidff: Do not send effect envelope if its empty Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 018/286] HID: pidff: Fix null pointer dereference in pidff_find_fields Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 019/286] ALSA: hda: intel: Fix Optimus when GPU has no sound Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 020/286] ALSA: usb-audio: Fix CME quirk for UF series keyboards Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 021/286] page_pool: avoid infinite loop to schedule delayed worker Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 022/286] fs/jfs: cast inactags to s64 to prevent potential overflow Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 023/286] fs/jfs: Prevent integer overflow in AG size calculation Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 024/286] jfs: Prevent copying of nlink with value 0 from disk inode Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 025/286] jfs: add sanity check for agwidth in dbMount Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 026/286] ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 027/286] f2fs: fix to avoid out-of-bounds access in f2fs_truncate_inode_blocks() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 028/286] ahci: add PCI ID for Marvell 88SE9215 SATA Controller Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 029/286] ext4: protect ext4_release_dquot against freezing Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 030/286] ext4: ignore xattrs past end Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 031/286] scsi: st: Fix array overflow in st_setup() Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 032/286] wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 033/286] net: vlan: dont propagate flags on open Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 034/286] tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER Greg Kroah-Hartman
2025-04-29 16:38 ` [PATCH 5.10 035/286] Bluetooth: hci_uart: fix race during initialization Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 036/286] drm: allow encoder mode_set even when connectors change for crtc Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 037/286] drm: panel-orientation-quirks: Add support for AYANEO 2S Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 038/286] drm: panel-orientation-quirks: Add new quirk for GPD Win 2 Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 039/286] drm/bridge: panel: forbid initializing a panel with unknown connector type Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 040/286] drm/amdkfd: clamp queue size to minimum Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 041/286] drm/amdkfd: Fix pqm_destroy_queue race with GPU reset Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 042/286] drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 043/286] fbdev: omapfb: Add plane value check Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 044/286] pwm: mediatek: Always use bus clock Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 045/286] pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 046/286] pwm: rcar: Simplify multiplication/shift logic Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 047/286] pwm: rcar: Improve register calculation Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 048/286] pwm: fsl-ftm: Handle clk_get_rate() returning 0 Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 049/286] bpf: Add endian modifiers to fix endian warnings Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 050/286] bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 051/286] ext4: reject casefold inode flag without casefold feature Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 052/286] ext4: dont treat fhandle lookup of ea_inode as FS corruption Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 053/286] media: i2c: adv748x: Fix test pattern selection mask Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 054/286] media: venus: hfi: add a check to handle OOB in sfr region Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 055/286] media: venus: hfi: add check to handle incorrect queue size Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 056/286] media: vim2m: print device name after registering device Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 057/286] media: siano: Fix error handling in smsdvb_module_init() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 058/286] xenfs/xensyms: respect hypervisors "next" indication Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 059/286] arm64: cputype: Add MIDR_CORTEX_A76AE Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 060/286] arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 061/286] spi: cadence-qspi: Fix probe on AM62A LP SK Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 062/286] mtd: rawnand: brcmnand: fix PM resume warning Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 063/286] media: streamzap: prevent processing IR data on URB failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 064/286] media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 065/286] media: i2c: ov7251: Set enable GPIO low in probe Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 066/286] media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 067/286] media: venus: hfi_parser: add check to avoid out of bound access Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 068/286] net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 069/286] mtd: Replace kcalloc() with devm_kcalloc() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 070/286] clocksource/drivers/stm32-lptimer: Use wakeup capable instead of init wakeup Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 071/286] wifi: mac80211: fix integer overflow in hwmp_route_info_get() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 072/286] ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 073/286] ext4: fix off-by-one error in do_split Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 074/286] vdpa/mlx5: Fix oversized null mkey longer than 32bit Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 075/286] i3c: Add NULL pointer check in i3c_master_queue_ibi() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 076/286] jbd2: remove wrong sb->s_sequence check Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 077/286] mfd: ene-kb3930: Fix a potential NULL pointer dereference Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 078/286] locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 079/286] lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 080/286] mtd: inftlcore: Add error check for inftl_read_oob() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 081/286] mtd: rawnand: Add status chack in r852_ready() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 082/286] arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 083/286] sparc/mm: disable preemption in lazy mmu mode Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 084/286] mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 085/286] sctp: detect and prevent references to a freed transport in sendmsg Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 086/286] thermal/drivers/rockchip: Add missing rk3328 mapping entry Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 087/286] crypto: ccp - Fix check for the primary ASP device Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 088/286] dm-integrity: set ti->error on memory allocation failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 089/286] ftrace: Add cond_resched() to ftrace_graph_set_hash() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 090/286] gpio: zynq: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 091/286] ntb: use 64-bit arithmetic for the MSI doorbell mask Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 092/286] of/irq: Fix device node refcount leakages in of_irq_count() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 093/286] of/irq: Fix device node refcount leakage in API irq_of_parse_and_map() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 094/286] of/irq: Fix device node refcount leakages in of_irq_init() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.10 095/286] PCI: brcmstb: Fix missing of_node_put() in brcm_pcie_probe() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 096/286] PCI: Fix reference leak in pci_alloc_child_bus() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 097/286] pinctrl: qcom: Clear latched interrupt status when changing IRQ type Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 098/286] x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 099/286] Bluetooth: hci_uart: Fix another race during initialization Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 100/286] pwm: mediatek: always use bus clock for PWM on MT7622 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 101/286] HSI: ssi_protocol: Fix use after free vulnerability in ssi_protocol Driver Due to Race Condition Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 102/286] wifi: at76c50x: fix use after free access in at76_disconnect Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 103/286] wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 104/286] wifi: mac80211: Purge vif txq in ieee80211_do_stop() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 105/286] wifi: wl1251: fix memory leak in wl1251_tx_work Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 106/286] scsi: iscsi: Fix missing scsi_host_put() in error path Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 107/286] RDMA/usnic: Fix passing zero to PTR_ERR in usnic_ib_pci_probe() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 108/286] RDMA/hns: Fix wrong maximum DMA segment size Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 109/286] RDMA/core: Silence oversized kvmalloc() warning Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 110/286] Bluetooth: hci_event: Fix sending MGMT_EV_DEVICE_FOUND for invalid address Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 111/286] Bluetooth: btrtl: Prevent potential NULL dereference Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 112/286] Revert "wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue()" Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 113/286] igc: handle the IGC_PTP_ENABLED flag correctly Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 114/286] igc: cleanup PTP module if probe fails Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 115/286] net: openvswitch: fix nested key length validation in the set() action Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 116/286] cxgb4: fix memory leak in cxgb4_init_ethtool_filters() error path Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 117/286] net: b53: enable BPDU reception for management port Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 118/286] riscv: KGDB: Do not inline arch_kgdb_breakpoint() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 119/286] riscv: KGDB: Remove ".option norvc/.option rvc" for kgdb_compiled_break Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 120/286] cpufreq/sched: Fix the usage of CPUFREQ_NEED_UPDATE_LIMITS Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 121/286] writeback: fix false warning in inode_to_wb() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 122/286] asus-laptop: Fix an uninitialized variable Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 123/286] nfs: move nfs_fhandle_hash to common include file Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 124/286] nfs: add missing selections of CONFIG_CRC32 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 125/286] nfsd: decrease sc_count directly if fail to queue dl_recall Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 126/286] btrfs: correctly escape subvol in btrfs_show_options() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 127/286] crypto: caam/qi - Fix drv_ctx refcount bug Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 128/286] hfs/hfsplus: fix slab-out-of-bounds in hfs_bnode_read_key Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 129/286] i2c: cros-ec-tunnel: defer probe if parent EC is not present Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 130/286] isofs: Prevent the use of too small fid Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 131/286] riscv: Avoid fortify warning in syscall_get_arguments() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 132/286] tracing: Fix filter string testing Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 133/286] virtiofs: add filesystem context source name check Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 134/286] perf/x86/intel: Allow to update user space GPRs from PEBS records Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 135/286] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SNR Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 136/286] perf/x86/intel/uncore: Fix the scale of IIO free running counters on ICX Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 137/286] module: sign with sha512 instead of sha1 by default Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 138/286] drm/repaper: fix integer overflows in repeat functions Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 139/286] drm/amd/pm/powerplay: Prevent division by zero Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 140/286] drm/amd/pm/powerplay/hwmgr/smu7_thermal: " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 141/286] drm/amd/pm/powerplay/hwmgr/vega20_thermal: " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 142/286] drm/nouveau: prime: fix ttm_bo_delayed_delete oops Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 143/286] drm/sti: remove duplicate object names Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 144/286] cpufreq: Reference count policy in cpufreq_update_limits() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 145/286] kbuild: Add -fno-builtin-wcslen Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 146/286] tcp/dccp: Dont use timer_pending() in reqsk_queue_unlink() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 147/286] mptcp: fix NULL pointer in can_accept_new_subflow Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 148/286] mptcp: only inc MPJoinAckHMacFailure for HMAC failures Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 149/286] mptcp: sockopt: fix getting IPV6_V6ONLY Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 150/286] misc: pci_endpoint_test: Avoid issue of interrupts remaining after request_irq error Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 151/286] misc: pci_endpoint_test: Fix displaying irq_type " Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 152/286] misc: pci_endpoint_test: Fix irq_type to convey the correct type Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 153/286] x86/pvh: Call C code via the kernel virtual mapping Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 154/286] nvme: avoid double free special payload Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.10 155/286] powerpc/rtas: Prevent Spectre v1 gadget construction in sys_rtas() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 156/286] phy: tegra: xusb: Fix return value of tegra_xusb_find_port_node function Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 157/286] wifi: ath10k: avoid NULL pointer error during sdio remove Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 158/286] drm/amd/display: Stop amdgpu_dm initialize when link nums greater than max_links Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 159/286] drm/amd/display: Fix out-of-bounds access in dcn21_link_encoder_create Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 160/286] nvmet-fc: Remove unused functions Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 161/286] smb: client: fix potential UAF in cifs_debug_files_proc_show() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 162/286] smb: client: fix use-after-free bug in cifs_debug_data_proc_show() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 163/286] cifs: Fix UAF in cifs_demultiplex_thread() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 164/286] smb: client: fix potential deadlock when releasing mids Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 165/286] smb: client: fix potential UAF in cifs_stats_proc_show() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 166/286] smb: client: fix UAF in async decryption Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 167/286] smb: client: fix NULL ptr deref in crypto_aead_setkey() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 168/286] bpf: avoid holding freeze_mutex during mmap operation Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 169/286] bpf: Check rcu_read_lock_trace_held() before calling bpf map helpers Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 170/286] blk-cgroup: support to track if policy is online Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 171/286] blk-iocost: do not WARN if iocg was already offlined Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 172/286] ext4: fix timer use-after-free on failed mount Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 173/286] net/mlx5e: Fix use-after-free of encap entry in neigh update handler Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 174/286] ipvs: properly dereference pe in ip_vs_add_service Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 175/286] net: openvswitch: fix race on port output Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 176/286] openvswitch: fix lockup on tx to unregistering netdev with carrier Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 177/286] scsi: lpfc: Fix a possible data race in lpfc_unregister_fcf_rescan() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 178/286] scsi: ufs: bsg: Set bsg_queue to NULL after removal Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 179/286] net: defer final struct net free in netns dismantle Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 180/286] MIPS: dec: Declare which_prom() as static Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 181/286] MIPS: cevt-ds1287: Add missing ds1287.h include Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 182/286] MIPS: ds1287: Match ds1287_set_base_clock() function types Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 183/286] jfs: Fix shift-out-of-bounds in dbDiscardAG Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 184/286] dm cache: fix flushing uninitialized delayed_work on cache_ctr error Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 185/286] vfio/pci: fix memory leak during D3hot to D0 transition Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 186/286] kernel/resource: fix kfree() of bootmem memory again Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 187/286] drm/i915/gt: Cleanup partial engine discovery failures Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 188/286] fs/proc: do_task_stat: use sig->stats_lock to gather the threads/children stats Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 189/286] mm: fix apply_to_existing_page_range() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 190/286] drivers: staging: rtl8723bs: Fix deadlock in rtw_surveydone_event_callback() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 191/286] s390/dasd: fix double module refcount decrement Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 192/286] pmdomain: ti: Add a null pointer check to the omap_prm_domain_init Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 193/286] drivers: staging: rtl8723bs: Fix locking in rtw_scan_timeout_handler() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 194/286] platform/x86: ISST: Correct command storage data length Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 195/286] tracing: Allow synthetic events to pass around stacktraces Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 196/286] tracing: Fix synth event printk format for str fields Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 197/286] media: streamzap: remove unnecessary ir_raw_event_reset and handle Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 198/286] media: streamzap: no need for usb pid/vid in device name Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 199/286] media: streamzap: less chatter Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 200/286] media: streamzap: remove unused struct members Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 201/286] media: streamzap: fix race between device disconnection and urb callback Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 202/286] media: venus: venc: Init the session only once in queue_setup Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 203/286] media: venus: Limit HFI sessions to the maximum supported Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 204/286] media: venus: hfi: Correct session init return error Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 205/286] media: venus: pm_helpers: Check instance state when calculate instance frequency Greg Kroah-Hartman
2025-04-29 16:41 ` Greg Kroah-Hartman [this message]
2025-04-29 16:41 ` [PATCH 5.10 207/286] media: venus: Rename venus_caps to hfi_plat_caps Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 208/286] media: venus: hfi_plat: Add codecs and capabilities ops Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 209/286] media: venus: Get codecs and capabilities from hfi platform Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 210/286] media: venus: hfi_parser: refactor hfi packet parsing logic Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 211/286] net: dsa: mv88e6xxx: fix VTU methods for 6320 family Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 212/286] soc: samsung: exynos-chipid: initialize later - with arch_initcall Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 213/286] soc: samsung: exynos-chipid: convert to driver and merge exynos-asv Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 214/286] soc: samsung: exynos-chipid: avoid soc_device_to_device() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.10 215/286] soc: samsung: exynos-chipid: Pass revision reg offsets Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 216/286] soc: samsung: exynos-chipid: Add NULL pointer check in exynos_chipid_probe() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 217/286] iio: adc: ad7768-1: Move setting of val a bit later to avoid unnecessary return value check Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 218/286] iio: adc: ad7768-1: Fix conversion result sign Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 219/286] backlight: led_bl: Hold led_access lock when calling led_sysfs_disable() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 220/286] cifs: print TIDs as hex Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 221/286] cifs: avoid NULL pointer dereference in dbg call Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 222/286] PCI: Introduce domain_nr in pci_host_bridge Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 223/286] PCI: Coalesce host bridge contiguous apertures Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 224/286] PCI: Assign PCI domain IDs by ida_alloc() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 225/286] PCI: Fix reference leak in pci_register_host_bridge() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 226/286] selftests/mm: generate a temporary mountpoint for cgroup filesystem Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 227/286] drm/amd/amdgpu/amdgpu_vram_mgr: Add missing descriptions for dev and dir Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 228/286] drm/amdgpu: Remove amdgpu_device arg from free_sgt api (v2) Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 229/286] drm/amdgpu/dma_buf: fix page_link check Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 230/286] dma/contiguous: avoid warning about unused size_bytes Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 231/286] cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 232/286] net: phy: leds: fix memory leak Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 233/286] tipc: fix NULL pointer dereference in tipc_mon_reinit_self() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 234/286] net_sched: hfsc: Fix a UAF vulnerability in class handling Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 235/286] net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 236/286] iommu/amd: Return an error if vCPU affinity is set for non-vCPU IRTE Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 237/286] virtio_console: fix missing byte order handling for cols and rows Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 238/286] KVM: SVM: Allocate IR data using atomic allocation Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 239/286] mcb: fix a double free bug in chameleon_parse_gdd() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 240/286] USB: storage: quirk for ADATA Portable HDD CH94 Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 241/286] mei: me: add panther lake H DID Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 242/286] KVM: x86: Reset IRTE to host control if *new* route isnt postable Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 243/286] serial: sifive: lock port in startup()/shutdown() callbacks Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 244/286] USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 245/286] USB: serial: option: add Sierra Wireless EM9291 Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 246/286] USB: serial: simple: add OWON HDS200 series oscilloscope support Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 247/286] usb: cdns3: Fix deadlock when using NCM gadget Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 248/286] USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02) Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 249/286] usb: dwc3: gadget: check that event count does not exceed event buffer length Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 250/286] usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 251/286] usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 " Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 252/286] USB: VLI disk crashes if LPM is used Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 253/286] MIPS: cm: Detect CM quirks from device tree Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 254/286] crypto: null - Use spin lock instead of mutex Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 255/286] clk: check for disabled clock-provider in of_clk_get_hw_from_clkspec() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 256/286] parisc: PDT: Fix missing prototype warning Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 257/286] usb: host: max3421-hcd: Add missing spi_device_id table Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 258/286] dmaengine: dmatest: Fix dmatest waiting less when interrupted Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 259/286] usb: gadget: aspeed: Add NULL pointer check in ast_vhub_init_dev() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 260/286] objtool, ASoC: codecs: wcd934x: Remove potential undefined behavior in wcd934x_slim_irq_handler() Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 261/286] qibfs: fix _another_ leak Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 262/286] ntb: reduce stack usage in idt_scan_mws Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 263/286] sched/isolation: Make CONFIG_CPU_ISOLATION depend on CONFIG_SMP Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 264/286] KVM: s390: Dont use %pK through tracepoints Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 265/286] udmabuf: fix a buf size overflow issue during udmabuf creation Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 266/286] selftests: ublk: fix test_stripe_04 Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 267/286] nvme: requeue namespace scan on missed AENs Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 268/286] ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 269/286] nvme: re-read ANA log page after ns scan completes Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 270/286] objtool: Stop UNRET validation on UD2 Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 271/286] selftests/mincore: Allow read-ahead pages to reach the end of the file Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 272/286] x86/bugs: Use SBPB in write_ibpb() if applicable Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 273/286] x86/bugs: Dont fill RSB on VMEXIT with eIBRS+retpoline Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 274/286] ext4: make block validity check resistent to sb bh corruption Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.10 275/286] scsi: pm80xx: Set phy_attached to zero when device is gone Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 276/286] md/raid1: Add check for missing source disk in process_checks() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 277/286] s390/virtio_ccw: Dont allocate/assign airqs for non-existing queues Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 278/286] comedi: jr3_pci: Fix synchronous deletion of timer Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 279/286] crypto: atmel-sha204a - Set hwrng quality to lowest possible Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 280/286] xdp: Reset bpf_redirect_info before running a xdps BPF prog Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 281/286] MIPS: cm: Fix warning if MIPS_CM is disabled Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 282/286] nvme: fixup scan failure for non-ANA multipath controllers Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 283/286] PCI: Fix use-after-free in pci_bus_release_domain_nr() Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 284/286] soc: samsung: exynos-chipid: correct helpers __init annotation Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 285/286] media: venus: Fix uninitialized variable count being checked for zero Greg Kroah-Hartman
2025-04-29 16:43 ` [PATCH 5.10 286/286] media: venus: hfi_parser: Check for instance after hfi platform get Greg Kroah-Hartman
2025-04-29 20:16 ` [PATCH 5.10 000/286] 5.10.237-rc1 review Pavel Machek
2025-04-30  3:52 ` Dominique Martinet
2025-04-30 15:03 ` Jon Hunter
2025-04-30 15:50 ` Naresh Kamboju
2025-05-02 12:18 ` Florian Fainelli

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=20250429161116.428579014@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=mchehab+huawei@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=stanimir.varbanov@linaro.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).