public inbox for stable@vger.kernel.org
 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, Ovidiu Bunea <ovidiu.bunea@amd.com>,
	Hamza Mahfooz <hamza.mahfooz@amd.com>,
	Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>,
	Alex Deucher <alexander.deucher@amd.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.8 227/399] drm/amd/display: Add more checks for exiting idle in DC
Date: Mon,  1 Apr 2024 17:43:13 +0200	[thread overview]
Message-ID: <20240401152555.956509071@linuxfoundation.org> (raw)
In-Reply-To: <20240401152549.131030308@linuxfoundation.org>

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

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

From: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>

[ Upstream commit a9b1a4f684b32bcd33431b67acd6f4c275728380 ]

[Why]
Any interface that touches registers needs to wake up the system.

[How]
Add a new interface dc_exit_ips_for_hw_access that wraps the check
for IPS support and insert it into the public DC interfaces that
touch registers.

We don't re-enter, since we expect that the enter/exit to have been done
on the DM side.

Cc: stable@vger.kernel.org # 6.1+
Reviewed-by: Ovidiu Bunea <ovidiu.bunea@amd.com>
Acked-by: Hamza Mahfooz <hamza.mahfooz@amd.com>
Signed-off-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpu/drm/amd/display/dc/core/dc.c      | 42 +++++++++++++++++++
 .../gpu/drm/amd/display/dc/core/dc_stream.c   | 18 ++++++++
 .../gpu/drm/amd/display/dc/core/dc_surface.c  |  2 +
 drivers/gpu/drm/amd/display/dc/dc.h           |  1 +
 4 files changed, 63 insertions(+)

diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c
index 3b65f216048e1..3c3d613c5f00e 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc.c
@@ -417,6 +417,8 @@ bool dc_stream_adjust_vmin_vmax(struct dc *dc,
 	if (!memcmp(&stream->adjust, adjust, sizeof(*adjust)))
 		return true;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	stream->adjust.v_total_max = adjust->v_total_max;
 	stream->adjust.v_total_mid = adjust->v_total_mid;
 	stream->adjust.v_total_mid_frame_num = adjust->v_total_mid_frame_num;
@@ -457,6 +459,8 @@ bool dc_stream_get_last_used_drr_vtotal(struct dc *dc,
 
 	int i = 0;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < MAX_PIPES; i++) {
 		struct pipe_ctx *pipe = &dc->current_state->res_ctx.pipe_ctx[i];
 
@@ -487,6 +491,8 @@ bool dc_stream_get_crtc_position(struct dc *dc,
 	bool ret = false;
 	struct crtc_position position;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < MAX_PIPES; i++) {
 		struct pipe_ctx *pipe =
 				&dc->current_state->res_ctx.pipe_ctx[i];
@@ -606,6 +612,8 @@ bool dc_stream_configure_crc(struct dc *dc, struct dc_stream_state *stream,
 	if (pipe == NULL)
 		return false;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	/* By default, capture the full frame */
 	param.windowa_x_start = 0;
 	param.windowa_y_start = 0;
@@ -665,6 +673,8 @@ bool dc_stream_get_crc(struct dc *dc, struct dc_stream_state *stream,
 	struct pipe_ctx *pipe;
 	struct timing_generator *tg;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < MAX_PIPES; i++) {
 		pipe = &dc->current_state->res_ctx.pipe_ctx[i];
 		if (pipe->stream == stream)
@@ -689,6 +699,8 @@ void dc_stream_set_dyn_expansion(struct dc *dc, struct dc_stream_state *stream,
 	int i;
 	struct pipe_ctx *pipe_ctx;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < MAX_PIPES; i++) {
 		if (dc->current_state->res_ctx.pipe_ctx[i].stream
 				== stream) {
@@ -724,6 +736,8 @@ void dc_stream_set_dither_option(struct dc_stream_state *stream,
 	if (option > DITHER_OPTION_MAX)
 		return;
 
+	dc_exit_ips_for_hw_access(stream->ctx->dc);
+
 	stream->dither_option = option;
 
 	memset(&params, 0, sizeof(params));
@@ -748,6 +762,8 @@ bool dc_stream_set_gamut_remap(struct dc *dc, const struct dc_stream_state *stre
 	bool ret = false;
 	struct pipe_ctx *pipes;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < MAX_PIPES; i++) {
 		if (dc->current_state->res_ctx.pipe_ctx[i].stream == stream) {
 			pipes = &dc->current_state->res_ctx.pipe_ctx[i];
@@ -765,6 +781,8 @@ bool dc_stream_program_csc_matrix(struct dc *dc, struct dc_stream_state *stream)
 	bool ret = false;
 	struct pipe_ctx *pipes;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < MAX_PIPES; i++) {
 		if (dc->current_state->res_ctx.pipe_ctx[i].stream
 				== stream) {
@@ -791,6 +809,8 @@ void dc_stream_set_static_screen_params(struct dc *dc,
 	struct pipe_ctx *pipes_affected[MAX_PIPES];
 	int num_pipes_affected = 0;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < num_streams; i++) {
 		struct dc_stream_state *stream = streams[i];
 
@@ -1817,6 +1837,8 @@ void dc_enable_stereo(
 	int i, j;
 	struct pipe_ctx *pipe;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < MAX_PIPES; i++) {
 		if (context != NULL) {
 			pipe = &context->res_ctx.pipe_ctx[i];
@@ -1836,6 +1858,8 @@ void dc_enable_stereo(
 void dc_trigger_sync(struct dc *dc, struct dc_state *context)
 {
 	if (context->stream_count > 1 && !dc->debug.disable_timing_sync) {
+		dc_exit_ips_for_hw_access(dc);
+
 		enable_timing_multisync(dc, context);
 		program_timing_sync(dc, context);
 	}
@@ -2097,6 +2121,8 @@ enum dc_status dc_commit_streams(struct dc *dc,
 	if (!streams_changed(dc, streams, stream_count))
 		return res;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	DC_LOG_DC("%s: %d streams\n", __func__, stream_count);
 
 	for (i = 0; i < stream_count; i++) {
@@ -3429,6 +3455,8 @@ static void commit_planes_for_stream_fast(struct dc *dc,
 	int i, j;
 	struct pipe_ctx *top_pipe_to_program = NULL;
 	struct dc_stream_status *stream_status = NULL;
+	dc_exit_ips_for_hw_access(dc);
+
 	dc_z10_restore(dc);
 
 	top_pipe_to_program = resource_get_otg_master_for_stream(
@@ -3557,6 +3585,8 @@ static void commit_planes_for_stream(struct dc *dc,
 	// dc->current_state anymore, so we have to cache it before we apply
 	// the new SubVP context
 	subvp_prev_use = false;
+	dc_exit_ips_for_hw_access(dc);
+
 	dc_z10_restore(dc);
 	if (update_type == UPDATE_TYPE_FULL)
 		wait_for_outstanding_hw_updates(dc, context);
@@ -4437,6 +4467,8 @@ bool dc_update_planes_and_stream(struct dc *dc,
 	bool is_plane_addition = 0;
 	bool is_fast_update_only;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	populate_fast_updates(fast_update, srf_updates, surface_count, stream_update);
 	is_fast_update_only = fast_update_only(dc, fast_update, srf_updates,
 			surface_count, stream_update, stream);
@@ -4557,6 +4589,8 @@ void dc_commit_updates_for_stream(struct dc *dc,
 	int i, j;
 	struct dc_fast_update fast_update[MAX_SURFACES] = {0};
 
+	dc_exit_ips_for_hw_access(dc);
+
 	populate_fast_updates(fast_update, srf_updates, surface_count, stream_update);
 	stream_status = dc_stream_get_status(stream);
 	context = dc->current_state;
@@ -4741,6 +4775,8 @@ void dc_set_power_state(
 	case DC_ACPI_CM_POWER_STATE_D0:
 		dc_state_construct(dc, dc->current_state);
 
+		dc_exit_ips_for_hw_access(dc);
+
 		dc_z10_restore(dc);
 
 		dc->hwss.init_hw(dc);
@@ -4882,6 +4918,12 @@ void dc_allow_idle_optimizations(struct dc *dc, bool allow)
 		dc->idle_optimizations_allowed = allow;
 }
 
+void dc_exit_ips_for_hw_access(struct dc *dc)
+{
+	if (dc->caps.ips_support)
+		dc_allow_idle_optimizations(dc, false);
+}
+
 bool dc_dmub_is_ips_idle_state(struct dc *dc)
 {
 	if (dc->debug.disable_idle_power_optimizations)
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_stream.c b/drivers/gpu/drm/amd/display/dc/core/dc_stream.c
index 54670e0b15189..51a970fcb5d05 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc_stream.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc_stream.c
@@ -423,6 +423,8 @@ bool dc_stream_add_writeback(struct dc *dc,
 		return false;
 	}
 
+	dc_exit_ips_for_hw_access(dc);
+
 	wb_info->dwb_params.out_transfer_func = stream->out_transfer_func;
 
 	dwb = dc->res_pool->dwbc[wb_info->dwb_pipe_inst];
@@ -493,6 +495,8 @@ bool dc_stream_fc_disable_writeback(struct dc *dc,
 		return false;
 	}
 
+	dc_exit_ips_for_hw_access(dc);
+
 	if (dwb->funcs->set_fc_enable)
 		dwb->funcs->set_fc_enable(dwb, DWB_FRAME_CAPTURE_DISABLE);
 
@@ -542,6 +546,8 @@ bool dc_stream_remove_writeback(struct dc *dc,
 		return false;
 	}
 
+	dc_exit_ips_for_hw_access(dc);
+
 	/* disable writeback */
 	if (dc->hwss.disable_writeback) {
 		struct dwbc *dwb = dc->res_pool->dwbc[dwb_pipe_inst];
@@ -557,6 +563,8 @@ bool dc_stream_warmup_writeback(struct dc *dc,
 		int num_dwb,
 		struct dc_writeback_info *wb_info)
 {
+	dc_exit_ips_for_hw_access(dc);
+
 	if (dc->hwss.mmhubbub_warmup)
 		return dc->hwss.mmhubbub_warmup(dc, num_dwb, wb_info);
 	else
@@ -569,6 +577,8 @@ uint32_t dc_stream_get_vblank_counter(const struct dc_stream_state *stream)
 	struct resource_context *res_ctx =
 		&dc->current_state->res_ctx;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < MAX_PIPES; i++) {
 		struct timing_generator *tg = res_ctx->pipe_ctx[i].stream_res.tg;
 
@@ -597,6 +607,8 @@ bool dc_stream_send_dp_sdp(const struct dc_stream_state *stream,
 	dc = stream->ctx->dc;
 	res_ctx = &dc->current_state->res_ctx;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < MAX_PIPES; i++) {
 		struct pipe_ctx *pipe_ctx = &res_ctx->pipe_ctx[i];
 
@@ -628,6 +640,8 @@ bool dc_stream_get_scanoutpos(const struct dc_stream_state *stream,
 	struct resource_context *res_ctx =
 		&dc->current_state->res_ctx;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < MAX_PIPES; i++) {
 		struct timing_generator *tg = res_ctx->pipe_ctx[i].stream_res.tg;
 
@@ -664,6 +678,8 @@ bool dc_stream_dmdata_status_done(struct dc *dc, struct dc_stream_state *stream)
 	if (i == MAX_PIPES)
 		return true;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	return dc->hwss.dmdata_status_done(pipe);
 }
 
@@ -698,6 +714,8 @@ bool dc_stream_set_dynamic_metadata(struct dc *dc,
 
 	pipe_ctx->stream->dmdata_address = attr->address;
 
+	dc_exit_ips_for_hw_access(dc);
+
 	dc->hwss.program_dmdata_engine(pipe_ctx);
 
 	if (hubp->funcs->dmdata_set_attributes != NULL &&
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_surface.c b/drivers/gpu/drm/amd/display/dc/core/dc_surface.c
index 19a2c7140ae84..19140fb65787c 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc_surface.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc_surface.c
@@ -161,6 +161,8 @@ const struct dc_plane_status *dc_plane_get_status(
 		break;
 	}
 
+	dc_exit_ips_for_hw_access(dc);
+
 	for (i = 0; i < dc->res_pool->pipe_count; i++) {
 		struct pipe_ctx *pipe_ctx =
 				&dc->current_state->res_ctx.pipe_ctx[i];
diff --git a/drivers/gpu/drm/amd/display/dc/dc.h b/drivers/gpu/drm/amd/display/dc/dc.h
index 7aa9954ec8407..f1342314f7f43 100644
--- a/drivers/gpu/drm/amd/display/dc/dc.h
+++ b/drivers/gpu/drm/amd/display/dc/dc.h
@@ -2324,6 +2324,7 @@ bool dc_is_plane_eligible_for_idle_optimizations(struct dc *dc, struct dc_plane_
 				struct dc_cursor_attributes *cursor_attr);
 
 void dc_allow_idle_optimizations(struct dc *dc, bool allow);
+void dc_exit_ips_for_hw_access(struct dc *dc);
 bool dc_dmub_is_ips_idle_state(struct dc *dc);
 
 /* set min and max memory clock to lowest and highest DPM level, respectively */
-- 
2.43.0




  parent reply	other threads:[~2024-04-01 16:00 UTC|newest]

Thread overview: 426+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-01 15:39 [PATCH 6.8 000/399] 6.8.3-rc1 review Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 001/399] drm/vmwgfx: Unmap the surface before resetting it on a plane state Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 002/399] wifi: brcmfmac: Fix use-after-free bug in brcmf_cfg80211_detach Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 003/399] wifi: brcmfmac: avoid invalid list operation when vendor attach fails Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 004/399] media: staging: ipu3-imgu: Set fields before media_entity_pads_init() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 005/399] arm64: dts: qcom: sc7280: Add additional MSI interrupts Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 006/399] remoteproc: virtio: Fix wdg cannot recovery remote processor Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 007/399] clk: qcom: gcc-sdm845: Add soft dependency on rpmhpd Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 008/399] smack: Set SMACK64TRANSMUTE only for dirs in smack_inode_setxattr() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 009/399] smack: Handle SMACK64TRANSMUTE in smack_inode_setsecurity() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 010/399] arm: dts: marvell: Fix maxium->maxim typo in brownstone dts Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 011/399] drm/vmwgfx: Fix possible null pointer derefence with invalid contexts Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 012/399] arm64: dts: qcom: sm8450-hdk: correct AMIC4 and AMIC5 microphones Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 013/399] serial: max310x: fix NULL pointer dereference in I2C instantiation Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 014/399] drm/vmwgfx: Fix the lifetime of the bo cursor memory Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 015/399] pci_iounmap(): Fix MMIO mapping leak Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 016/399] media: xc4000: Fix atomicity violation in xc4000_get_frequency Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 017/399] media: mc: Add local pad to pipeline regardless of the link state Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 018/399] media: mc: Fix flags handling when creating pad links Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 019/399] media: nxp: imx8-isi: Check whether crossbar pad is non-NULL before access Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 020/399] media: mc: Add num_links flag to media_pad Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 021/399] media: mc: Rename pad variable to clarify intent Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 022/399] media: mc: Expand MUST_CONNECT flag to always require an enabled link Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 023/399] media: nxp: imx8-isi: Mark all crossbar sink pads as MUST_CONNECT Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 024/399] md: use RCU lock to protect traversal in md_spares_need_change() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 025/399] KVM: Always flush async #PF workqueue when vCPU is being destroyed Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 026/399] arm64: dts: qcom: sm8550-qrd: correct WCD9385 TX port mapping Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 027/399] arm64: dts: qcom: sm8550-mtp: " Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 028/399] cpufreq: amd-pstate: Fix min_perf assignment in amd_pstate_adjust_perf() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 029/399] thermal/intel: Fix intel_tcc_get_temp() to support negative CPU temperature Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 030/399] powercap: intel_rapl: Fix a NULL pointer dereference Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 031/399] powercap: intel_rapl: Fix locking in TPMI RAPL Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 032/399] powercap: intel_rapl_tpmi: Fix a register bug Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.8 033/399] powercap: intel_rapl_tpmi: Fix System Domain probing Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 034/399] powerpc/smp: Adjust nr_cpu_ids to cover all threads of a core Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 035/399] powerpc/smp: Increase nr_cpu_ids to include the boot CPU Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 036/399] sparc64: NMI watchdog: fix return value of __setup handler Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 037/399] sparc: vDSO: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 038/399] crypto: qat - change SLAs cleanup flow at shutdown Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 039/399] crypto: qat - resolve race condition during AER recovery Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 040/399] selftests/mqueue: Set timeout to 180 seconds Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 041/399] pinctrl: qcom: sm8650-lpass-lpi: correct Kconfig name Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 042/399] ext4: correct best extent lstart adjustment logic Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 043/399] drm/amdgpu/display: Address kdoc for is_psr_su in fill_dc_dirty_rects Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 044/399] block: Clear zone limits for a non-zoned stacked queue Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 045/399] kasan/test: avoid gcc warning for intentional overflow Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 046/399] bounds: support non-power-of-two CONFIG_NR_CPUS Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 047/399] fat: fix uninitialized field in nostale filehandles Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 048/399] fuse: fix VM_MAYSHARE and direct_io_allow_mmap Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 049/399] mfd: twl: Select MFD_CORE Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 050/399] ubifs: Set page uptodate in the correct place Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 051/399] ubi: Check for too small LEB size in VTBL code Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 052/399] ubi: correct the calculation of fastmap size Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 053/399] ubifs: ubifs_symlink: Fix memleak of inode->i_link in error path Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 054/399] mtd: rawnand: meson: fix scrambling mode value in command macro Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 055/399] md/md-bitmap: fix incorrect usage for sb_index Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 056/399] x86/nmi: Fix the inverse "in NMI handler" check Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 057/399] parisc/unaligned: Rewrite 64-bit inline assembly of emulate_ldd() Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 058/399] parisc: Avoid clobbering the C/B bits in the PSW with tophys and tovirt macros Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 059/399] parisc: Fix ip_fast_csum Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 060/399] parisc: Fix csum_ipv6_magic on 32-bit systems Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 061/399] parisc: Fix csum_ipv6_magic on 64-bit systems Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 062/399] parisc: Strip upper 32 bit of sum in csum_ipv6_magic for 64-bit builds Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 063/399] md/raid5: fix atomicity violation in raid5_cache_count Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 064/399] iio: adc: rockchip_saradc: fix bitmask for channels on SARADCv2 Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 065/399] iio: adc: rockchip_saradc: use mask for write_enable bitfield Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 066/399] docs: Restore "smart quotes" for quotes Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 067/399] cpufreq: Limit resolving a frequency to policy min/max Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 068/399] PM: suspend: Set mem_sleep_current during kernel command line setup Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 069/399] vfio/pds: Always clear the save/restore FDs on reset Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 070/399] clk: qcom: gcc-ipq5018: fix terminating of frequency table arrays Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 071/399] clk: qcom: gcc-ipq6018: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 072/399] clk: qcom: gcc-ipq8074: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 073/399] clk: qcom: gcc-ipq9574: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 074/399] clk: qcom: camcc-sc8280xp: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 075/399] clk: qcom: mmcc-apq8084: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 076/399] clk: qcom: mmcc-msm8974: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 077/399] usb: xhci: Add error handling in xhci_map_urb_for_dma Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 078/399] powerpc/fsl: Fix mfpmr build errors with newer binutils Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 079/399] USB: serial: ftdi_sio: add support for GMC Z216C Adapter IR-USB Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 080/399] USB: serial: add device ID for VeriFone adapter Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 081/399] USB: serial: cp210x: add ID for MGP Instruments PDS100 Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 082/399] wifi: mac80211: track capability/opmode NSS separately Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 083/399] USB: serial: option: add MeiG Smart SLM320 product Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 084/399] KVM: x86/xen: inject vCPU upcall vector when local APIC is enabled Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 085/399] USB: serial: cp210x: add pid/vid for TDK NC0110013M and MM0110113M Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 086/399] PM: sleep: wakeirq: fix wake irq warning in system suspend Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 087/399] mmc: tmio: avoid concurrent runs of mmc_request_done() Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 088/399] fuse: replace remaining make_bad_inode() with fuse_make_bad() Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 089/399] fuse: fix root lookup with nonzero generation Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 090/399] fuse: dont unhash root Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 091/399] usb: typec: ucsi: Clean up UCSI_CABLE_PROP macros Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 092/399] usb: dwc3-am62: fix module unload/reload behavior Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.8 093/399] usb: dwc3-am62: Disable wakeup at remove Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 094/399] serial: core: only stop transmit when HW fifo is empty Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 095/399] serial: Lock console when calling into driver before registration Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 096/399] btrfs: qgroup: always free reserved space for extent records Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 097/399] btrfs: fix off-by-one chunk length calculation at contains_pending_extent() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 098/399] wifi: rtw88: Add missing VID/PIDs for 8811CU and 8821CU Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 099/399] docs: Makefile: Add dependency to $(YNL_INDEX) for targets other than htmldocs Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 100/399] PCI/PM: Drain runtime-idle callbacks before driver removal Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 101/399] PCI/DPC: Quirk PIO log size for Intel Raptor Lake Root Ports Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 102/399] ACPI: CPPC: Use access_width over bit_width for system memory accesses Greg Kroah-Hartman
2024-04-01 17:16   ` Easwar Hariharan
2024-04-02  7:55     ` Greg Kroah-Hartman
2024-04-11 16:49       ` Easwar Hariharan
2024-04-12  8:25         ` Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 103/399] Revert "Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d"" Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 104/399] md: dont clear MD_RECOVERY_FROZEN for new dm-raid until resume Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 105/399] md: export helpers to stop sync_thread Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 106/399] md: export helper md_is_rdwr() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 107/399] md: add a new helper reshape_interrupted() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 108/399] dm-raid: really frozen sync_thread during suspend Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 109/399] md/dm-raid: dont call md_reap_sync_thread() directly Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 110/399] dm-raid: add a new helper prepare_suspend() in md_personality Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 111/399] dm-raid456, md/raid456: fix a deadlock for dm-raid456 while io concurrent with reshape Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 112/399] dm-raid: fix lockdep waring in "pers->hot_add_disk" Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 113/399] powerpc: xor_vmx: Add -mhard-float to CFLAGS Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 114/399] block: Fix page refcounts for unaligned buffers in __bio_release_pages() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 115/399] mac802154: fix llsec key resources release in mac802154_llsec_key_del Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 116/399] mm: swap: fix race between free_swap_and_cache() and swapoff() Greg Kroah-Hartman
2024-04-02  7:55   ` Ryan Roberts
2024-04-01 15:41 ` [PATCH 6.8 117/399] mmc: core: Fix switch on gp3 partition Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 118/399] Bluetooth: btnxpuart: Fix btnxpuart_close Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 119/399] leds: trigger: netdev: Fix kernel panic on interface rename trig notify Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 120/399] drm/etnaviv: Restore some id values Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 121/399] landlock: Warn once if a Landlock action is requested while disabled Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 122/399] io_uring: fix mshot read defer taskrun cqe posting Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 123/399] hwmon: (amc6821) add of_match table Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 124/399] io_uring: fix io_queue_proc modifying req->flags Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 125/399] ext4: fix corruption during on-line resize Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 126/399] nvmem: meson-efuse: fix function pointer type mismatch Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 127/399] slimbus: core: Remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 128/399] phy: tegra: xusb: Add API to retrieve the port number of phy Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 129/399] usb: gadget: tegra-xudc: Fix USB3 PHY retrieval logic Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 130/399] speakup: Fix 8bit characters from direct synth Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 131/399] debugfs: fix wait/cancellation handling during remove Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 132/399] PCI/AER: Block runtime suspend when handling errors Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 133/399] io_uring/net: correctly handle multishot recvmsg retry setup Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 134/399] io_uring: fix mshot io-wq checks Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 135/399] PCI: qcom: Disable ASPM L0s for sc8280xp, sa8540p and sa8295p Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 136/399] sparc32: Fix parport build with sparc32 Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 137/399] nfs: fix UAF in direct writes Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 138/399] NFS: Read unlock folio on nfs_page_create_from_folio() error Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 139/399] kbuild: Move -Wenum-{compare-conditional,enum-conversion} into W=1 Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 140/399] PCI: qcom: Enable BDF to SID translation properly Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 141/399] PCI: dwc: endpoint: Fix advertised resizable BAR size Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 142/399] PCI: hv: Fix ring buffer size calculation Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 143/399] cifs: prevent updating file size from server if we have a read/write lease Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 144/399] cifs: allow changing password during remount Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 145/399] thermal/drivers/mediatek: Fix control buffer enablement on MT7896 Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 146/399] vfio/pci: Disable auto-enable of exclusive INTx IRQ Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 147/399] vfio/pci: Lock external INTx masking ops Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 148/399] vfio/platform: Disable virqfds on cleanup Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 149/399] vfio/platform: Create persistent IRQ handlers Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 150/399] vfio/fsl-mc: Block calling interrupt handler without trigger Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 151/399] tpm,tpm_tis: Avoid warning splat at shutdown Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 152/399] ksmbd: replace generic_fillattr with vfs_getattr Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.8 153/399] ksmbd: retrieve number of blocks using vfs_getattr in set_file_allocation_info Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 154/399] platform/x86/intel/tpmi: Change vsec offset to u64 Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 155/399] io_uring/rw: return IOU_ISSUE_SKIP_COMPLETE for multishot retry Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 156/399] io_uring: clean rings on NO_MMAP alloc fail Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 157/399] ring-buffer: Do not set shortest_full when full target is hit Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 158/399] ring-buffer: Fix full_waiters_pending in poll Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 159/399] ring-buffer: Use wait_event_interruptible() in ring_buffer_wait() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 160/399] tracing/ring-buffer: Fix wait_on_pipe() race Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 161/399] dlm: fix user space lkb refcounting Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 162/399] soc: fsl: qbman: Always disable interrupts when taking cgr_lock Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 163/399] soc: fsl: qbman: Use raw spinlock for cgr_lock Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 164/399] s390/zcrypt: fix reference counting on zcrypt card objects Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 165/399] drm/probe-helper: warn about negative .get_modes() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 166/399] drm/panel: do not return negative error codes from drm_panel_get_modes() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 167/399] drm/exynos: do not return negative values from .get_modes() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 168/399] drm/imx/ipuv3: " Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 169/399] drm/vc4: hdmi: " Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 170/399] clocksource/drivers/timer-riscv: Clear timer interrupt on timer initialization Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 171/399] memtest: use {READ,WRITE}_ONCE in memory scanning Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 172/399] Revert "block/mq-deadline: use correct way to throttling write requests" Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 173/399] lsm: use 32-bit compatible data types in LSM syscalls Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 174/399] lsm: handle the NULL buffer case in lsm_fill_user_ctx() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 175/399] f2fs: mark inode dirty for FI_ATOMIC_COMMITTED flag Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 176/399] f2fs: truncate page cache before clearing flags when aborting atomic write Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 177/399] nilfs2: fix failure to detect DAT corruption in btree and direct mappings Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 178/399] nilfs2: prevent kernel bug at submit_bh_wbc() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 179/399] cifs: make sure server interfaces are requested only for SMB3+ Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 180/399] cifs: reduce warning log level for server not advertising interfaces Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 181/399] cifs: open_cached_dir(): add FILE_READ_EA to desired access Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 182/399] mtd: rawnand: Fix and simplify again the continuous read derivations Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 183/399] mtd: rawnand: Add a helper for calculating a page index Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 184/399] mtd: rawnand: Ensure all continuous terms are always in sync Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 185/399] mtd: rawnand: Constrain even more when continuous reads are enabled Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 186/399] cpufreq: dt: always allocate zeroed cpumask Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 187/399] io_uring/futex: always remove futex entry for cancel all Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 188/399] io_uring/waitid: always remove waitid " Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 189/399] x86/CPU/AMD: Update the Zenbleed microcode revisions Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 190/399] ksmbd: fix slab-out-of-bounds in smb_strndup_from_utf16() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 191/399] net: esp: fix bad handling of pages from page_pool Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 192/399] NFSD: Fix nfsd_clid_class use of __string_len() macro Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 193/399] drm/i915: Add missing ; to __assign_str() macros in tracepoint code Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 194/399] net: hns3: tracing: fix hclgevf trace event strings Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 195/399] cxl/trace: Properly initialize cxl_poison region name Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 196/399] ksmbd: fix potencial out-of-bounds when buffer offset is invalid Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 197/399] virtio: reenable config if freezing device failed Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 198/399] LoongArch: Change __my_cpu_offset definition to avoid mis-optimization Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 199/399] LoongArch: Define the __io_aw() hook as mmiowb() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 200/399] LoongArch/crypto: Clean up useless assignment operations Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 201/399] wireguard: netlink: check for dangling peer via is_dead instead of empty list Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 202/399] wireguard: netlink: access device through ctx instead of peer Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 203/399] wireguard: selftests: set RISCV_ISA_FALLBACK on riscv{32,64} Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 204/399] ahci: asm1064: asm1166: dont limit reported ports Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 205/399] drm/amd/display: Change default size for dummy plane in DML2 Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 206/399] drm/amdgpu: amdgpu_ttm_gart_bind set gtt bound flag Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 207/399] drm/amdgpu/pm: Fix NULL pointer dereference when get power limit Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 208/399] drm/amdgpu/pm: Check the validity of overdiver " Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 209/399] drm/amd/display: Override min required DCFCLK in dml1_validate Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 210/399] drm/amd/display: Allow dirty rects to be sent to dmub when abm is active Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 211/399] drm/amd/display: Init DPPCLK from SMU on dcn32 Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 212/399] drm/amd/display: Update odm when ODM combine is changed on an otg master pipe with no plane Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.8 213/399] drm/amd/display: Fix idle check for shared firmware state Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 214/399] drm/amd/display: Amend coasting vtotal for replay low hz Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 215/399] drm/amd/display: Lock all enabled otg pipes even with no planes Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 216/399] drm/amd/display: Implement wait_for_odm_update_pending_complete Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 217/399] drm/amd/display: Return the correct HDCP error code Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 218/399] drm/amd/display: Add a dc_state NULL check in dc_state_release Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 219/399] drm/amd/display: Fix noise issue on HDMI AV mute Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 220/399] dm snapshot: fix lockup in dm_exception_table_exit Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 221/399] x86/pm: Work around false positive kmemleak report in msr_build_context() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 222/399] wifi: brcmfmac: add per-vendor feature detection callback Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 223/399] wifi: brcmfmac: cfg80211: Use WSEC to set SAE password Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 224/399] wifi: brcmfmac: Demote vendor-specific attach/detach messages to info Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 225/399] drm/ttm: Make sure the mapped tt pages are decrypted when needed Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 226/399] drm/amd/display: Unify optimize_required flags and VRR adjustments Greg Kroah-Hartman
2024-04-01 15:43 ` Greg Kroah-Hartman [this message]
2024-04-01 15:43 ` [PATCH 6.8 228/399] btrfs: add set_folio_extent_mapped() helper Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 229/399] btrfs: replace sb::s_blocksize by fs_info::sectorsize Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 230/399] btrfs: add helpers to get inode from page/folio pointers Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 231/399] btrfs: add helpers to get fs_info " Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 232/399] btrfs: add helper to get fs_info from struct inode pointer Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 233/399] btrfs: qgroup: validate btrfs_qgroup_inherit parameter Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 234/399] vfio: Introduce interface to flush virqfd inject workqueue Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 235/399] vfio/pci: Create persistent INTx handler Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 236/399] drm/bridge: add ->edid_read hook and drm_bridge_edid_read() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 237/399] drm/bridge: lt8912b: use drm_bridge_edid_read() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 238/399] drm/bridge: lt8912b: clear the EDID property on failures Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 239/399] drm/bridge: lt8912b: do not return negative values from .get_modes() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 240/399] drm/amd/display: Remove pixle rate limit for subvp Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 241/399] drm/amd/display: Revert " Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 242/399] workqueue: Shorten events_freezable_power_efficient name Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 243/399] drm/amd/display: Use freesync when `DRM_EDID_FEATURE_CONTINUOUS_FREQ` found Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 244/399] netfilter: nf_tables: reject constant set with timeout Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 245/399] Revert "crypto: pkcs7 - remove sha1 support" Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 246/399] x86/efistub: Call mixed mode boot services on the firmwares stack Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 247/399] ASoC: amd: yc: Revert "Fix non-functional mic on Lenovo 21J2" Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 248/399] ASoC: amd: yc: Revert "add new YC platform variant (0x63) support" Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 249/399] Fix memory leak in posix_clock_open() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 250/399] wifi: rtw88: 8821cu: Fix connection failure Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 251/399] x86/Kconfig: Remove CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 252/399] x86/sev: Fix position dependent variable references in startup code Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 253/399] clocksource/drivers/arm_global_timer: Fix maximum prescaler value Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 254/399] ARM: 9352/1: iwmmxt: Remove support for PJ4/PJ4B cores Greg Kroah-Hartman
2024-04-02  7:19   ` Arnd Bergmann
2024-04-02  7:30     ` Ard Biesheuvel
2024-04-02  8:17       ` Arnd Bergmann
2024-04-01 15:43 ` [PATCH 6.8 255/399] ARM: 9359/1: flush: check if the folio is reserved for no-mapping addresses Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 256/399] entry: Respect changes to system call number by trace_sys_enter() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 257/399] swiotlb: Fix double-allocation of slots due to broken alignment handling Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 258/399] swiotlb: Honour dma_alloc_coherent() alignment in swiotlb_alloc() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 259/399] swiotlb: Fix alignment checks when both allocation and DMA masks are present Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 260/399] iommu/dma: Force swiotlb_max_mapping_size on an untrusted device Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 261/399] printk: Update @console_may_schedule in console_trylock_spinning() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 262/399] irqchip/renesas-rzg2l: Flush posted write in irq_eoi() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 263/399] irqchip/renesas-rzg2l: Rename rzg2l_tint_eoi() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 264/399] irqchip/renesas-rzg2l: Rename rzg2l_irq_eoi() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 265/399] irqchip/renesas-rzg2l: Prevent spurious interrupts when setting trigger type Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 266/399] kprobes/x86: Use copy_from_kernel_nofault() to read from unsafe address Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 267/399] efi/libstub: fix efi_random_alloc() to allocate memory at alloc_min or higher address Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 268/399] x86/mpparse: Register APIC address only once Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 269/399] x86/fpu: Keep xfd_state in sync with MSR_IA32_XFD Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 270/399] efi: fix panic in kdump kernel Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 271/399] pwm: img: fix pwm clock lookup Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 272/399] selftests/mm: Fix build with _FORTIFY_SOURCE Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.8 273/399] btrfs: handle errors returned from unpin_extent_cache() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 274/399] btrfs: fix warning messages not printing interval at unpin_extent_range() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 275/399] btrfs: do not skip re-registration for the mounted device Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 276/399] mfd: intel-lpss: Switch to generalized quirk table Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 277/399] mfd: intel-lpss: Introduce QUIRK_CLOCK_DIVIDER_UNITY for XPS 9530 Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 278/399] drm/i915: Replace a memset() with zero initialization Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 279/399] drm/i915: Try to preserve the current shared_dpll for fastset on type-c ports Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 280/399] drm/i915: Include the PLL name in the debug messages Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 281/399] drm/i915: Suppress old PLL pipe_mask checks for MG/TC/TBT PLLs Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 282/399] crypto: iaa - Fix nr_cpus < nr_iaa case Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 283/399] drm/amd/display: Prevent crash when disable stream Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 284/399] ALSA: hda/tas2781: remove digital gain kcontrol Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 285/399] ALSA: hda/tas2781: add locks to kcontrols Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 286/399] mm: zswap: fix writeback shinker GFP_NOIO/GFP_NOFS recursion Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 287/399] init: open /initrd.image with O_LARGEFILE Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 288/399] x86/efistub: Add missing boot_params for mixed mode compat entry Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 289/399] efi/libstub: Cast away type warning in use of max() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 290/399] x86/efistub: Reinstate soft limit for initrd loading Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 291/399] prctl: generalize PR_SET_MDWE support check to be per-arch Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 292/399] ARM: prctl: reject PR_SET_MDWE on pre-ARMv6 Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 293/399] tmpfs: fix race on handling dquot rbtree Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 294/399] btrfs: validate device maj:min during open Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 295/399] btrfs: fix race in read_extent_buffer_pages() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 296/399] btrfs: zoned: dont skip block groups with 100% zone unusable Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 297/399] btrfs: zoned: use zone aware sb location for scrub Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 298/399] btrfs: zoned: fix use-after-free in do_zone_finish() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 299/399] wifi: mac80211: check/clear fast rx for non-4addr sta VLAN changes Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 300/399] wifi: cfg80211: add a flag to disable wireless extensions Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 301/399] wifi: iwlwifi: mvm: disable MLO for the time being Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 302/399] wifi: iwlwifi: fw: dont always use FW dump trig Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 303/399] wifi: iwlwifi: mvm: handle debugfs names more carefully Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 304/399] Revert "drm/amd/display: Fix sending VSC (+ colorimetry) packets for DP/eDP displays without PSR" Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 305/399] gpio: cdev: sanitize the label before requesting the interrupt Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 306/399] fbdev: Select I/O-memory framebuffer ops for SBus Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 307/399] exec: Fix NOMMU linux_binprm::exec in transfer_args_to_stack() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 308/399] hexagon: vmlinux.lds.S: handle attributes section Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 309/399] mm: cachestat: fix two shmem bugs Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 310/399] selftests/mm: sigbus-wp test requires UFFD_FEATURE_WP_HUGETLBFS_SHMEM Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 311/399] selftests/mm: fix ARM related issue with fork after pthread_create Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 312/399] mmc: sdhci-omap: re-tuning is needed after a pm transition to support emmc HS200 mode Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 313/399] mmc: core: Initialize mmc_blk_ioc_data Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 314/399] mmc: core: Avoid negative index with array access Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 315/399] sdhci-of-dwcmshc: disable PM runtime in dwcmshc_remove() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 316/399] block: Do not force full zone append completion in req_bio_endio() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 317/399] thermal: devfreq_cooling: Fix perf state when calculate dfc res_util Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 318/399] Revert "thermal: core: Dont update trip points inside the hysteresis range" Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 319/399] nouveau/dmem: handle kcalloc() allocation failure Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 320/399] net: ll_temac: platform_get_resource replaced by wrong function Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 321/399] net: wan: framer: Add missing static inline qualifiers Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 322/399] net: phy: qcom: at803x: fix kernel panic with at8031_probe Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 323/399] drm/xe/query: fix gt_id bounds check Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 324/399] drm/dp: Fix divide-by-zero regression on DP MST unplug with nouveau Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 325/399] drm/vmwgfx: Create debugfs ttm_resource_manager entry only if needed Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 326/399] drm/amdkfd: fix TLB flush after unmap for GFX9.4.2 Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 327/399] drm/amdgpu: fix deadlock while reading mqd from debugfs Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 328/399] drm/amd/display: Remove MPC rate control logic from DCN30 and above Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 329/399] drm/amd/display: Set DCN351 BB and IP the same as DCN35 Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 330/399] drm/i915/hwmon: Fix locking inversion in sysfs getter Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 331/399] drm/i915/vma: Fix UAF on destroy against retire race Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 332/399] drm/i915/bios: Tolerate devdata==NULL in intel_bios_encoder_supports_dp_dual_mode() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.8 333/399] drm/i915/vrr: Generate VRR "safe window" for DSB Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 334/399] drm/i915/dsi: Go back to the previous INIT_OTP/DISPLAY_ON order, mostly Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 335/399] drm/i915/dsb: Fix DSB vblank waits when using VRR Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 336/399] drm/i915: Do not match JSL in ehl_combo_pll_div_frac_wa_needed() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 337/399] drm/i915: Pre-populate the cursor physical dma address Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 338/399] drm/i915/gt: Reset queue_priority_hint on parking Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 339/399] drm/amd/display: Fix bounds check for dcn35 DcfClocks Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 340/399] Bluetooth: hci_sync: Fix not checking error on hci_cmd_sync_cancel_sync Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 341/399] mtd: spinand: Add support for 5-byte IDs Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 342/399] Revert "usb: phy: generic: Get the vbus supply" Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 343/399] usb: cdc-wdm: close race between read and workqueue Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 344/399] usb: misc: ljca: Fix double free in error handling path Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 345/399] USB: UAS: return ENODEV when submit urbs fail with device not attached Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 346/399] vfio/pds: Make sure migration file isnt accessed after reset Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 347/399] ring-buffer: Make wake once of ring_buffer_wait() more robust Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 348/399] btrfs: fix extent map leak in unexpected scenario at unpin_extent_cache() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 349/399] ALSA: sh: aica: reorder cleanup operations to avoid UAF bugs Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 350/399] scsi: ufs: qcom: Provide default cycles_in_1us value Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 351/399] scsi: sd: Fix TCG OPAL unlock on system resume Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 352/399] scsi: sg: Avoid sg device teardown race Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 353/399] scsi: core: Fix unremoved procfs host directory regression Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 354/399] staging: vc04_services: changen strncpy() to strscpy_pad() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 355/399] staging: vc04_services: fix information leak in create_component() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 356/399] genirq: Introduce IRQF_COND_ONESHOT and use it in pinctrl-amd Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 357/399] usb: dwc3: Properly set system wakeup Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 358/399] USB: core: Fix deadlock in usb_deauthorize_interface() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 359/399] USB: core: Add hub_get() and hub_put() routines Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 360/399] USB: core: Fix deadlock in port "disable" sysfs attribute Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 361/399] usb: dwc2: host: Fix remote wakeup from hibernation Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 362/399] usb: dwc2: host: Fix hibernation flow Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 363/399] usb: dwc2: host: Fix ISOC flow in DDMA mode Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 364/399] usb: dwc2: gadget: Fix exiting from clock gating Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 365/399] usb: dwc2: gadget: LPM flow fix Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 366/399] usb: udc: remove warning when queue disabled ep Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 367/399] usb: typec: ucsi: Fix race between typec_switch and role_switch Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 368/399] usb: typec: tcpm: fix double-free issue in tcpm_port_unregister_pd() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 369/399] usb: typec: tcpm: Correct port source pdo array in pd_set callback Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 370/399] usb: typec: tcpm: Update PD of Type-C port upon pd_set Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 371/399] usb: typec: Return size of buffer if pd_set operation succeeds Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 372/399] usb: typec: ucsi: Clear EVENT_PENDING under PPM lock Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 373/399] usb: typec: ucsi: Check for notifications after init Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 374/399] usb: typec: ucsi: Ack unsupported commands Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 375/399] usb: typec: ucsi_acpi: Refactor and fix DELL quirk Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 376/399] usb: typec: ucsi: Clear UCSI_CCI_RESET_COMPLETE before reset Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 377/399] scsi: qla2xxx: Prevent command send on chip reset Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 378/399] scsi: qla2xxx: Fix N2N stuck connection Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 379/399] scsi: qla2xxx: Split FCE|EFT trace control Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 380/399] scsi: qla2xxx: Update manufacturer detail Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 381/399] scsi: qla2xxx: NVME|FCP prefer flag not being honored Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 382/399] scsi: qla2xxx: Fix command flush on cable pull Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 383/399] scsi: qla2xxx: Fix double free of the ha->vp_map pointer Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 384/399] scsi: qla2xxx: Fix double free of fcport Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 385/399] scsi: qla2xxx: Change debug message during driver unload Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 386/399] scsi: qla2xxx: Delay I/O Abort on PCI error Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 387/399] x86/bugs: Fix the SRSO mitigation on Zen3/4 Greg Kroah-Hartman
2024-04-04  9:48   ` Sven Joachim
2024-04-04  9:55     ` Borislav Petkov
2024-04-04 17:41       ` Linus Torvalds
2024-04-05  0:12         ` Borislav Petkov
2024-04-01 15:45 ` [PATCH 6.8 388/399] crash: use macro to add crashk_res into iomem early for specific arch Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 389/399] drm/amd/display: fix IPX enablement Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 390/399] x86/bugs: Use fixed addressing for VERW operand Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 391/399] Revert "x86/bugs: Use fixed addressing for VERW operand" Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 392/399] usb: dwc3: pci: Drop duplicate ID Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.8 393/399] scsi: lpfc: Correct size for cmdwqe/rspwqe for memset() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.8 394/399] scsi: lpfc: Correct size for wqe " Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.8 395/399] scsi: libsas: Add a helper sas_get_sas_addr_and_dev_type() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.8 396/399] scsi: libsas: Fix disk not being scanned in after being removed Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.8 397/399] perf/x86/amd/core: Update and fix stalled-cycles-* events for Zen 2 and later Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.8 398/399] x86/sev: Skip ROM range scans and validation for SEV-SNP guests Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.8 399/399] tools/resolve_btfids: fix build with musl libc Greg Kroah-Hartman
2024-04-01 18:29 ` [PATCH 6.8 000/399] 6.8.3-rc1 review SeongJae Park
2024-04-01 19:03 ` Naresh Kamboju
2024-04-01 19:40 ` Naresh Kamboju
2024-04-02  3:51   ` Jakub Kicinski
2024-04-02  5:01     ` Naresh Kamboju
2024-04-01 20:52 ` Pavel Machek
2024-04-01 21:02 ` Florian Fainelli
2024-04-01 23:21 ` Shuah Khan
2024-04-02  5:01 ` Ron Economos
2024-04-02  8:16 ` Bagas Sanjaya
2024-04-02  9:09 ` Naresh Kamboju
2024-04-02 13:33 ` Justin Forbes
2024-04-02 19:17 ` Mark Brown
2024-04-03 10:12 ` Jon Hunter

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=20240401152555.956509071@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.deucher@amd.com \
    --cc=hamza.mahfooz@amd.com \
    --cc=nicholas.kazlauskas@amd.com \
    --cc=ovidiu.bunea@amd.com \
    --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