stable.vger.kernel.org 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,
	"Simon Rettberg" <simon.rettberg@rz.uni-freiburg.de>,
	"Rafael Gieschke" <rafael.gieschke@rz.uni-freiburg.de>,
	"Ville Syrjälä" <ville.syrjala@linux.intel.com>,
	"Jani Nikula" <jani.nikula@intel.com>
Subject: [PATCH 6.0 213/314] drm/display: Dont assume dual mode adaptors support i2c sub-addressing
Date: Wed, 23 Nov 2022 09:50:58 +0100	[thread overview]
Message-ID: <20221123084635.195117092@linuxfoundation.org> (raw)
In-Reply-To: <20221123084625.457073469@linuxfoundation.org>

From: Simon Rettberg <simon.rettberg@rz.uni-freiburg.de>

commit 5954acbacbd1946b96ce8ee799d309cb0cd3cb9d upstream.

Current dual mode adaptor ("DP++") detection code assumes that all
adaptors support i2c sub-addressing for read operations from the
DP-HDMI adaptor ID buffer.  It has been observed that multiple
adaptors do not in fact support this, and always return data starting
at register 0.  On affected adaptors, the code fails to read the proper
registers that would identify the device as a type 2 adaptor, and
handles those as type 1, limiting the TMDS clock to 165MHz, even if
the according register would announce a higher TMDS clock.
Fix this by always reading the ID buffer starting from offset 0, and
discarding any bytes before the actual offset of interest.

We tried finding authoritative documentation on whether or not this is
allowed behaviour, but since all the official VESA docs are paywalled,
the best we could come up with was the spec sheet for Texas Instruments'
SNx5DP149 chip family.[1]  It explicitly mentions that sub-addressing is
supported for register writes, but *not* for reads (See NOTE in
section 8.5.3).  Unless TI openly decided to violate the VESA spec, one
could take that as a hint that sub-addressing is in fact not mandated
by VESA.
The other two adaptors affected used the PS8409(A) and the LT8611,
according to the data returned from their ID buffers.

[1] https://www.ti.com/lit/ds/symlink/sn75dp149.pdf

Cc: stable@vger.kernel.org
Signed-off-by: Simon Rettberg <simon.rettberg@rz.uni-freiburg.de>
Reviewed-by: Rafael Gieschke <rafael.gieschke@rz.uni-freiburg.de>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20221006113314.41101987@computer
Acked-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/gpu/drm/display/drm_dp_dual_mode_helper.c |   51 ++++++++++++----------
 1 file changed, 29 insertions(+), 22 deletions(-)

--- a/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
+++ b/drivers/gpu/drm/display/drm_dp_dual_mode_helper.c
@@ -63,23 +63,45 @@
 ssize_t drm_dp_dual_mode_read(struct i2c_adapter *adapter,
 			      u8 offset, void *buffer, size_t size)
 {
+	u8 zero = 0;
+	char *tmpbuf = NULL;
+	/*
+	 * As sub-addressing is not supported by all adaptors,
+	 * always explicitly read from the start and discard
+	 * any bytes that come before the requested offset.
+	 * This way, no matter whether the adaptor supports it
+	 * or not, we'll end up reading the proper data.
+	 */
 	struct i2c_msg msgs[] = {
 		{
 			.addr = DP_DUAL_MODE_SLAVE_ADDRESS,
 			.flags = 0,
 			.len = 1,
-			.buf = &offset,
+			.buf = &zero,
 		},
 		{
 			.addr = DP_DUAL_MODE_SLAVE_ADDRESS,
 			.flags = I2C_M_RD,
-			.len = size,
+			.len = size + offset,
 			.buf = buffer,
 		},
 	};
 	int ret;
 
+	if (offset) {
+		tmpbuf = kmalloc(size + offset, GFP_KERNEL);
+		if (!tmpbuf)
+			return -ENOMEM;
+
+		msgs[1].buf = tmpbuf;
+	}
+
 	ret = i2c_transfer(adapter, msgs, ARRAY_SIZE(msgs));
+	if (tmpbuf)
+		memcpy(buffer, tmpbuf + offset, size);
+
+	kfree(tmpbuf);
+
 	if (ret < 0)
 		return ret;
 	if (ret != ARRAY_SIZE(msgs))
@@ -208,18 +230,6 @@ enum drm_dp_dual_mode_type drm_dp_dual_m
 	if (ret)
 		return DRM_DP_DUAL_MODE_UNKNOWN;
 
-	/*
-	 * Sigh. Some (maybe all?) type 1 adaptors are broken and ack
-	 * the offset but ignore it, and instead they just always return
-	 * data from the start of the HDMI ID buffer. So for a broken
-	 * type 1 HDMI adaptor a single byte read will always give us
-	 * 0x44, and for a type 1 DVI adaptor it should give 0x00
-	 * (assuming it implements any registers). Fortunately neither
-	 * of those values will match the type 2 signature of the
-	 * DP_DUAL_MODE_ADAPTOR_ID register so we can proceed with
-	 * the type 2 adaptor detection safely even in the presence
-	 * of broken type 1 adaptors.
-	 */
 	ret = drm_dp_dual_mode_read(adapter, DP_DUAL_MODE_ADAPTOR_ID,
 				    &adaptor_id, sizeof(adaptor_id));
 	drm_dbg_kms(dev, "DP dual mode adaptor ID: %02x (err %zd)\n", adaptor_id, ret);
@@ -233,11 +243,10 @@ enum drm_dp_dual_mode_type drm_dp_dual_m
 				return DRM_DP_DUAL_MODE_TYPE2_DVI;
 		}
 		/*
-		 * If neither a proper type 1 ID nor a broken type 1 adaptor
-		 * as described above, assume type 1, but let the user know
-		 * that we may have misdetected the type.
+		 * If not a proper type 1 ID, still assume type 1, but let
+		 * the user know that we may have misdetected the type.
 		 */
-		if (!is_type1_adaptor(adaptor_id) && adaptor_id != hdmi_id[0])
+		if (!is_type1_adaptor(adaptor_id))
 			drm_err(dev, "Unexpected DP dual mode adaptor ID %02x\n", adaptor_id);
 
 	}
@@ -343,10 +352,8 @@ EXPORT_SYMBOL(drm_dp_dual_mode_get_tmds_
  * @enable: enable (as opposed to disable) the TMDS output buffers
  *
  * Set the state of the TMDS output buffers in the adaptor. For
- * type2 this is set via the DP_DUAL_MODE_TMDS_OEN register. As
- * some type 1 adaptors have problems with registers (see comments
- * in drm_dp_dual_mode_detect()) we avoid touching the register,
- * making this function a no-op on type 1 adaptors.
+ * type2 this is set via the DP_DUAL_MODE_TMDS_OEN register.
+ * Type1 adaptors do not support any register writes.
  *
  * Returns:
  * 0 on success, negative error code on failure



  parent reply	other threads:[~2022-11-23  9:59 UTC|newest]

Thread overview: 325+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-23  8:47 [PATCH 6.0 000/314] 6.0.10-rc1 review Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 001/314] mtd: rawnand: qcom: handle ret from parse with codeword_fixup Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 002/314] drm/msm/gpu: Fix crash during system suspend after unbind Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 003/314] spi: tegra210-quad: Fix combined sequence Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 004/314] ASoC: wm5102: Revert "ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe" Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 005/314] ASoC: wm5110: Revert "ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe" Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 006/314] ASoC: wm8997: Revert "ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe" Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 007/314] ASoC: mt6660: Keep the pm_runtime enables before component stuff in mt6660_i2c_probe Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 008/314] ASoC: rt5682s: Fix the TDM Tx settings Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 009/314] ASoC: rt1019: Fix the TDM settings Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 010/314] ASoC: wm8962: Add an event handler for TEMP_HP and TEMP_SPK Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 011/314] spi: intel: Fix the offset to get the 64K erase opcode Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 012/314] ASoC: codecs: jz4725b: add missed Line In power control bit Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 013/314] ASoC: codecs: jz4725b: fix reported volume for Master ctl Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 014/314] ASoC: codecs: jz4725b: use right control for Capture Volume Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 015/314] ASoC: codecs: jz4725b: fix capture selector naming Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 016/314] ASoC: Intel: sof_sdw: add quirk variant for LAPBC710 NUC15 Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 017/314] selftests/futex: fix build for clang Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 018/314] selftests/intel_pstate: fix build for ARCH=x86_64 Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 019/314] selftests/kexec: " Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 020/314] ASoC: Intel: sof_rt5682: Add quirk for Rex board Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 021/314] rtc: cmos: fix build on non-ACPI platforms Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 022/314] ASoC: rt1308-sdw: add the default value of some registers Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 023/314] ASoC: amd: yc: Adding Lenovo ThinkBook 14 Gen 4+ ARA and Lenovo ThinkBook 16 Gen 4+ ARA to the Quirks List Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 024/314] ASoC: amd: yc: Add Lenovo Thinkbook 14+ 2022 21D0 to quirks table Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 025/314] drm/amdgpu: Adjust MES polling timeout for sriov Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 026/314] platform/x86: thinkpad_acpi: Fix reporting a non present second fan on some models Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 027/314] platform/x86/intel: pmc/core: Add Raptor Lake support to pmc core driver Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 028/314] drm/amd/display: Remove wrong pipe control lock Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 029/314] drm/amd/display: Dont return false if no stream Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 030/314] drm/scheduler: fix fence ref counting Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 031/314] ACPI: scan: Add LATT2021 to acpi_ignore_dep_ids[] Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 032/314] cxl/mbox: Add a check on input payload size Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 033/314] RDMA/efa: Add EFA 0xefa2 PCI ID Greg Kroah-Hartman
2022-11-23  8:47 ` [PATCH 6.0 034/314] btrfs: raid56: properly handle the error when unable to find the missing stripe Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 035/314] NFSv4: Retry LOCK on OLD_STATEID during delegation return Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 036/314] SUNRPC: Fix crasher in gss_unwrap_resp_integ() Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 037/314] ACPI: x86: Add another system to quirk list for forcing StorageD3Enable Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 038/314] drm/rockchip: vop2: fix null pointer in plane_atomic_disable Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 039/314] drm/rockchip: vop2: disable planes when disabling the crtc Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 040/314] ksefltests: pidfd: Fix wait_states: Test terminated by timeout Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 041/314] powerpc/64e: Fix amdgpu build on Book3E w/o AltiVec Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 042/314] block: blk_add_rq_to_plug(): clear stale last after flush Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 043/314] firmware: arm_scmi: Cleanup the core driver removal callback Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 044/314] firmware: arm_scmi: Make tx_prepare time out eventually Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 045/314] i2c: tegra: Allocate DMA memory for DMA engine Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 046/314] i2c: i801: add lis3lv02ds I2C address for Vostro 5568 Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 047/314] drm/imx: imx-tve: Fix return type of imx_tve_connector_mode_valid Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 048/314] btrfs: remove pointless and double ulist frees in error paths of qgroup tests Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 049/314] drm/amd/display: Ignore Cable ID Feature Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 050/314] drm/amd/display: Enable timing sync on DCN32 Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 051/314] drm/amdgpu: set fb_modifiers_not_supported in vkms Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 052/314] drm/amd: Fail the suspend if resources cant be evicted Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 053/314] drm/amd/display: Fix DCN32 DSC delay calculation Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 054/314] drm/amd/display: Use forced DSC bpp in DML Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 055/314] drm/amd/display: Round up DST_after_scaler to nearest int Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 056/314] drm/amd/display: Investigate tool reported FCLK P-state deviations Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 057/314] Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 058/314] cxl/pmem: Use size_add() against integer overflow Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 059/314] x86/cpu: Add several Intel server CPU model numbers Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 060/314] tools/testing/cxl: Fix some error exits Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 061/314] cifs: always iterate smb sessions using primary channel Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 062/314] ASoC: codecs: jz4725b: Fix spelling mistake "Sourc" -> "Source", "Routee" -> "Route" Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 063/314] arm64/mm: fold check for KFENCE into can_set_direct_map() Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 064/314] arm64: fix rodata=full again Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 065/314] hugetlb: rename remove_huge_page to hugetlb_delete_from_page_cache Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 066/314] hugetlbfs: dont delete error page from pagecache Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 067/314] KVM: SVM: remove dead field from struct svm_cpu_data Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 068/314] KVM: SVM: do not allocate struct svm_cpu_data dynamically Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 069/314] KVM: SVM: restore host save area from assembly Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 070/314] KVM: SVM: move MSR_IA32_SPEC_CTRL save/restore to assembly Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 071/314] arm64: dts: qcom: ipq8074: correct APCS register space size Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 072/314] arm64: dts: qcom: sa8155p-adp: Specify which LDO modes are allowed Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 073/314] arm64: dts: qcom: sa8295p-adp: " Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 074/314] arm64: dts: qcom: sc8280xp-crd: " Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 075/314] arm64: dts: qcom: sm8150-xperia-kumano: " Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 076/314] arm64: dts: qcom: sm8250-xperia-edo: " Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 077/314] arm64: dts: qcom: sm8350-hdk: " Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 078/314] arm64: dts: qcom: sc8280xp: fix ufs_card_phy ref clock Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 079/314] arm64: dts: qcom: sc8280xp: correct ref clock for ufs_mem_phy Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 080/314] arm64: dts: qcom: sc8280xp: fix USB0 PHY PCS_MISC registers Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 081/314] arm64: dts: qcom: sc8280xp: fix USB1 PHY RX1 registers Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 082/314] arm64: dts: qcom: sc8280xp: fix USB PHY PCS registers Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 083/314] arm64: dts: qcom: sc8280xp: drop broken DP PHY nodes Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 084/314] arm64: dts: qcom: sc8280xp: fix UFS PHY serdes size Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 085/314] arm64: dts: qcom: sc7280: Add the reset reg for lpass audiocc on SC7280 Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 086/314] spi: stm32: Print summary callbacks suppressed message Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 087/314] ARM: dts: at91: sama7g5: fix signal name of pin PB2 Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 088/314] ASoC: core: Fix use-after-free in snd_soc_exit() Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 089/314] ASoC: fsl_asrc fsl_esai fsl_sai: allow CONFIG_PM=N Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 090/314] arm64: dts: qcom: sm8250: Disable the not yet supported cluster idle state Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 091/314] ASoC: tas2770: Fix set_tdm_slot in case of single slot Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 092/314] ASoC: tas2764: " Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 093/314] ASoC: tas2780: " Greg Kroah-Hartman
2022-11-23  8:48 ` [PATCH 6.0 094/314] ARM: at91: pm: avoid soft resetting AC DLL Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 095/314] serial: 8250: omap: Fix missing PM runtime calls for omap8250_set_mctrl() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 096/314] serial: 8250_omap: remove wait loop from Errata i202 workaround Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 097/314] serial: 8250: omap: Fix unpaired pm_runtime_put_sync() in omap8250_remove() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 098/314] serial: 8250: omap: Flush PM QOS work on remove Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 099/314] tty: serial: fsl_lpuart: dont break the on-going transfer when global reset Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 100/314] serial: imx: Add missing .thaw_noirq hook Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 101/314] tty: n_gsm: fix sleep-in-atomic-context bug in gsm_control_send Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 102/314] ASoC: rt5514: fix legacy dai naming Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 103/314] ASoC: rt5677: " Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 104/314] bpf, test_run: Fix alignment problem in bpf_prog_test_run_skb() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 105/314] bnxt_en: refactor bnxt_cancel_reservations() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 106/314] bnxt_en: fix the handling of PCIE-AER Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 107/314] ASoC: soc-utils: Remove __exit for snd_soc_util_exit() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 108/314] pinctrl: rockchip: list all pins in a possible mux route for PX30 Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 109/314] mtd: onenand: omap2: add dependency on GPMC Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 110/314] scsi: scsi_transport_sas: Fix error handling in sas_phy_add() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 111/314] sctp: remove the unnecessary sinfo_stream check in sctp_prsctp_prune_unsent Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 112/314] sctp: clear out_curr if all frag chunks of current msg are pruned Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 113/314] erofs: clean up .read_folio() and .readahead() in fscache mode Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 114/314] erofs: get correct count for unmapped range " Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 115/314] block: sed-opal: kmalloc the cmd/resp buffers Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 116/314] nfsd: put the export reference in nfsd4_verify_deleg_dentry Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 117/314] bpf: Fix memory leaks in __check_func_call Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 118/314] io_uring: calculate CQEs from the user visible value Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 119/314] pinctrl: mediatek: common-v2: Fix bias-disable for PULL_PU_PD_RSEL_TYPE Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 120/314] arm64: Fix bit-shifting UB in the MIDR_CPU_MODEL() macro Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 121/314] nvmet: fix a memory leak Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 122/314] siox: fix possible memory leak in siox_device_add() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 123/314] parport_pc: Avoid FIFO port location truncation Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 124/314] selftests/bpf: Fix casting error when cross-compiling test_verifier for 32-bit platforms Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 125/314] selftests/bpf: Fix test_progs compilation failure in 32-bit arch Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 126/314] pinctrl: devicetree: fix null pointer dereferencing in pinctrl_dt_to_map Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 127/314] drm/vc4: kms: Fix IS_ERR() vs NULL check for vc4_kms Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 128/314] drm/panel: simple: set bpc field for logic technologies displays Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 129/314] drm/drv: Fix potential memory leak in drm_dev_init() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 130/314] drm: Fix potential null-ptr-deref in drm_vblank_destroy_worker() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 131/314] arm64: dts: imx8mm-tqma8mqml-mba8mx: Fix USB DR Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 132/314] ARM: dts: imx7: Fix NAND controller size-cells Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 133/314] arm64: dts: imx8mm: " Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 134/314] erofs: put metabuf in error path in fscache mode Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 135/314] arm64: dts: imx8mn: Fix NAND controller size-cells Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 136/314] arm64: dts: imx93-pinfunc: drop execution permission Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 137/314] ata: libata-transport: fix double ata_host_put() in ata_tport_add() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 138/314] ata: libata-transport: fix error handling " Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 139/314] ata: libata-transport: fix error handling in ata_tlink_add() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 140/314] ata: libata-transport: fix error handling in ata_tdev_add() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 141/314] nfp: change eeprom length to max length enumerators Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 142/314] MIPS: fix duplicate definitions for exported symbols Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 143/314] MIPS: Loongson64: Add WARN_ON on kexec related kmalloc failed Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 144/314] io_uring/poll: fix double poll req->flags races Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 145/314] cifs: Fix connections leak when tlink setup failed Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 146/314] bpf: Initialize same number of free nodes for each pcpu_freelist Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 147/314] ata: libata-core: do not issue non-internal commands once EH is pending Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 148/314] net: bgmac: Drop free_netdev() from bgmac_enet_remove() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 149/314] mISDN: fix possible memory leak in mISDN_dsp_element_register() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 150/314] net: hinic: Fix error handling in hinic_module_init() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 151/314] net: phy: dp83867: Fix SGMII FIFO depth for non OF devices Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 152/314] net: stmmac: ensure tx function is not running in stmmac_xdp_release() Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 153/314] mctp i2c: dont count unused / invalid keys for flow release Greg Kroah-Hartman
2022-11-23  8:49 ` [PATCH 6.0 154/314] soc: imx8m: Enable OCOTP clock before reading the register Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 155/314] net: liquidio: release resources when liquidio driver open failed Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 156/314] mISDN: fix misuse of put_device() in mISDN_register_device() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 157/314] net: macvlan: Use built-in RCU list checking Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 158/314] net: caif: fix double disconnect client in chnl_net_open() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 159/314] bnxt_en: Remove debugfs when pci_register_driver failed Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 160/314] octeon_ep: delete unnecessary napi rollback under set_queues_err in octep_open() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 161/314] octeon_ep: ensure octep_get_link_status() successfully before octep_link_up() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 162/314] octeon_ep: fix potential memory leak in octep_device_setup() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 163/314] octeon_ep: ensure get mac address successfully before eth_hw_addr_set() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 164/314] drm/lima: Fix opp clkname setting in case of missing regulator Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 165/314] net: mhi: Fix memory leak in mhi_net_dellink() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 166/314] net: dsa: make dsa_master_ioctl() see through port_hwtstamp_get() shims Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 167/314] xen/pcpu: fix possible memory leak in register_pcpu() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 168/314] erofs: fix missing xas_retry() in fscache mode Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 169/314] mlxsw: Avoid warnings when not offloaded FDB entry with IPv6 is removed Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 170/314] net: ionic: Fix error handling in ionic_init_module() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 171/314] kcm: close race conditions on sk_receive_queue Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 172/314] net: ena: Fix error handling in ena_init() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 173/314] net: hns3: fix incorrect hw rss hash type of rx packet Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 174/314] net: hns3: fix return value check bug of rx copybreak Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 175/314] net: hns3: fix setting incorrect phy link ksettings for firmware in resetting process Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 176/314] bridge: switchdev: Fix memory leaks when changing VLAN protocol Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 177/314] drbd: use after free in drbd_create_device() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 178/314] platform/x86/intel: pmc: Dont unconditionally attach Intel PMC when virtualized Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 179/314] platform/surface: aggregator: Do not check for repeated unsequenced packets Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 180/314] netfs: Fix missing xas_retry() calls in xarray iteration Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 181/314] netfs: Fix dodgy maths Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 182/314] cifs: add check for returning value of SMB2_close_init Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 183/314] net: ag71xx: call phylink_disconnect_phy if ag71xx_hw_enable() fail in ag71xx_open() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 184/314] net/x25: Fix skb leak in x25_lapb_receive_frame() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 185/314] net: dsa: dont leak tagger-owned storage on switch driver unbind Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 186/314] nvmet: fix a memory leak in nvmet_auth_set_key Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 187/314] cifs: Fix wrong return value checking when GETFLAGS Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 188/314] net: lan966x: Fix potential null-ptr-deref in lan966x_stats_init() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 189/314] net: microchip: sparx5: Fix potential null-ptr-deref in sparx_stats_init() and sparx5_start() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 190/314] net: thunderbolt: Fix error handling in tbnet_init() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 191/314] s390: avoid using global register for current_stack_pointer Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 192/314] cifs: add check for returning value of SMB2_set_info_init Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 193/314] netdevsim: Fix memory leak of nsim_dev->fa_cookie Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 194/314] block: make dma_alignment a stacking queue_limit Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 195/314] dm-crypt: provide dma_alignment limit in io_hints Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 196/314] ftrace: Fix the possible incorrect kernel message Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 197/314] ftrace: Optimize the allocation for mcount entries Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 198/314] ftrace: Fix null pointer dereference in ftrace_add_mod() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 199/314] ring_buffer: Do not deactivate non-existant pages Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 200/314] tracing: Fix memory leak in tracing_read_pipe() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 201/314] tracing/ring-buffer: Have polling block on watermark Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 202/314] tracing: Fix memory leak in test_gen_synth_cmd() and test_empty_synth_event() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 203/314] tracing: Fix wild-memory-access in register_synth_event() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 204/314] tracing: Fix race where eprobes can be called before the event Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 205/314] tracing: kprobe: Fix potential null-ptr-deref on trace_event_file in kprobe_event_gen_test_exit() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 206/314] tracing: kprobe: Fix potential null-ptr-deref on trace_array " Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 207/314] rethook: fix a potential memleak in rethook_alloc() Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 208/314] platform/x86/amd: pmc: Remove more CONFIG_DEBUG_FS checks Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 209/314] platform/x86/amd: pmc: Add new ACPI ID AMDI0009 Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 210/314] drm/amd/pm: enable runpm support over BACO for SMU13.0.7 Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 211/314] drm/amd/pm: enable runpm support over BACO for SMU13.0.0 Greg Kroah-Hartman
2022-11-23  8:50 ` [PATCH 6.0 212/314] drm/amd/pm: fix SMU13 runpm hang due to unintentional workaround Greg Kroah-Hartman
2022-11-23  8:50 ` Greg Kroah-Hartman [this message]
2022-11-23  8:50 ` [PATCH 6.0 214/314] drm/amd/display: Fix invalid DPIA AUX reply causing system hang Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 215/314] drm/amd/display: Add HUBP surface flip interrupt handler Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 216/314] drm/amd/display: Fix access timeout to DPIA AUX at boot time Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 217/314] drm/amd/display: Support parsing VRAM info v3.0 from VBIOS Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 218/314] drm/amd/display: Fix optc2_configure warning on dcn314 Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 219/314] drm/amd/display: dont enable DRM CRTC degamma property for DCE Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 220/314] drm/amd/display: Fix prefetch calculations for dcn32 Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 221/314] ALSA: usb-audio: Drop snd_BUG_ON() from snd_usbmidi_output_open() Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 222/314] ALSA: hda/realtek: fix speakers for Samsung Galaxy Book Pro Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 223/314] ALSA: hda/realtek: Fix the speaker output on Samsung Galaxy Book Pro 360 Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 224/314] Revert "usb: dwc3: disable USB core PHY management" Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 225/314] usb: dwc3: Do not get extcon device when usb-role-switch is used Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 226/314] io_uring: update res mask in io_poll_check_events Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 227/314] nvme-pci: add NVME_QUIRK_BOGUS_NID for Micron Nitro Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 228/314] nvme-pci: add NVME_QUIRK_BOGUS_NID for Netac NV7000 Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 229/314] slimbus: qcom-ngd: Fix build error when CONFIG_SLIM_QCOM_NGD_CTRL=y && CONFIG_QCOM_RPROC_COMMON=m Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 230/314] slimbus: stream: correct presence rate frequencies Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 231/314] speakup: fix a segfault caused by switching consoles Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 232/314] speakup: replace utils u_char with unsigned char Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 233/314] USB: bcma: Make GPIO explicitly optional Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 234/314] USB: serial: option: add Sierra Wireless EM9191 Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 235/314] USB: serial: option: remove old LARA-R6 PID Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 236/314] USB: serial: option: add u-blox LARA-R6 00B modem Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 237/314] USB: serial: option: add u-blox LARA-L6 modem Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 238/314] USB: serial: option: add Fibocom FM160 0x0111 composition Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 239/314] usb: add NO_LPM quirk for Realforce 87U Keyboard Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 240/314] usb: chipidea: fix deadlock in ci_otg_del_timer Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 241/314] usb: cdns3: host: fix endless superspeed hub port reset Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 242/314] usb: typec: mux: Enter safe mode only when pins need to be reconfigured Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 243/314] usb: typec: tipd: Prevent uninitialized event{1,2} in IRQ handler Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 244/314] iio: accel: bma400: Ensure VDDIO is enable defore reading the chip ID Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 245/314] iio: adc: at91_adc: fix possible memory leak in at91_adc_allocate_trigger() Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 246/314] iio: trigger: sysfs: fix possible memory leak in iio_sysfs_trig_init() Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 247/314] iio: adc: mp2629: fix wrong comparison of channel Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 248/314] iio: adc: mp2629: fix potential array out of bound access Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 249/314] iio: pressure: ms5611: fixed value compensation bug Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 250/314] iio: pressure: ms5611: changed hardcoded SPI speed to value limited Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 251/314] dm bufio: Fix missing decrement of no_sleep_enabled if dm_bufio_client_create failed Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 252/314] dm ioctl: fix misbehavior if list_versions races with module loading Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 253/314] serial: 8250: Fall back to non-DMA Rx if IIR_RDI occurs Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 254/314] serial: 8250: Flush DMA Rx on RLSI Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 255/314] serial: 8250_lpss: Configure DMA also w/o DMA filter Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 256/314] serial: 8250_lpss: Use 16B DMA burst with Elkhart Lake Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 257/314] io_uring: fix tw losing poll events Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 258/314] io_uring: fix multishot accept request leaks Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 259/314] io_uring: fix multishot recv " Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 260/314] io_uring: disallow self-propelled ring polling Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 261/314] ceph: avoid putting the realm twice when decoding snaps fails Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 262/314] Input: iforce - invert valid length check when fetching device IDs Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 263/314] maccess: Fix writing offset in case of fault in strncpy_from_kernel_nofault() Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 264/314] net: phy: marvell: add sleep time after enabling the loopback bit Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 265/314] scsi: zfcp: Fix double free of FSF request when qdio send fails Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 266/314] iommu/vt-d: Preset Access bit for IOVA in FL non-leaf paging entries Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 267/314] iommu/vt-d: Set SRE bit only when hardware has SRS cap Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 268/314] firmware: coreboot: Register bus in module init Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 269/314] mmc: core: properly select voltage range without power cycle Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 270/314] mmc: sdhci-pci-o2micro: fix card detect fail issue caused by CD# debounce timeout Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 271/314] mmc: sdhci-pci: Fix possible memory leak caused by missing pci_dev_put() Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 272/314] docs: update mediator contact information in CoC doc Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 273/314] docs/driver-api/miscellaneous: Remove kernel-doc of serial_core.c Greg Kroah-Hartman
2022-11-23  8:51 ` [PATCH 6.0 274/314] s390/dcssblk: fix deadlock when adding a DCSS Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 275/314] misc/vmw_vmci: fix an infoleak in vmci_host_do_receive_datagram() Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 276/314] blk-cgroup: properly pin the parent in blkcg_css_online Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 277/314] x86/sgx: Add overflow check in sgx_validate_offset_length() Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 278/314] x86/fpu: Drop fpregs lock before inheriting FPU permissions Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 279/314] perf/x86/amd/uncore: Fix memory leak for events array Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 280/314] perf/x86/intel/pt: Fix sampling using single range output Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 281/314] nvme: restrict management ioctls to admin Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 282/314] nvme: ensure subsystem reset is single threaded Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 283/314] ASoC: SOF: topology: No need to assign core ID if token parsing failed Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 284/314] perf: Improve missing SIGTRAP checking Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 285/314] vfio: Rename vfio_ioctl_check_extension() Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 286/314] vfio: Split the register_device ops call into functions Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 287/314] perf/x86/amd: Fix crash due to race between amd_pmu_enable_all, perf NMI and throttling Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 288/314] ring-buffer: Include dropped pages in counting dirty patches Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 289/314] tracing: Fix warning on variable struct trace_array Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 290/314] net: usb: smsc95xx: fix external PHY reset Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 291/314] net: use struct_group to copy ip/ipv6 header addresses Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 292/314] scsi: target: tcm_loop: Fix possible name leak in tcm_loop_setup_hba_bus() Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 293/314] scsi: scsi_debug: Fix possible UAF in sdebug_add_host_helper() Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 294/314] kprobes: Skip clearing aggrprobes post_handler in kprobe-on-ftrace case Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 295/314] tracing: Fix potential null-pointer-access of entry in list tr->err_log Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 296/314] arm64/mm: fix incorrect file_map_count for non-leaf pmd/pud Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 297/314] Input: i8042 - fix leaking of platform device on module removal Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 298/314] macvlan: enforce a consistent minimal mtu Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 299/314] tcp: cdg: allow tcp_cdg_release() to be called multiple times Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 300/314] kcm: avoid potential race in kcm_tx_work Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 301/314] KVM: x86/xen: Fix eventfd error handling in kvm_xen_eventfd_assign() Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 302/314] 9p: trans_fd/p9_conn_cancel: drop client lock earlier Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 303/314] gfs2: Check sb_bsize_shift after reading superblock Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 304/314] gfs2: Switch from strlcpy to strscpy Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 305/314] 9p/trans_fd: always use O_NONBLOCK read/write Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 306/314] netlink: Bounds-check struct nlmsgerr creation Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 307/314] wifi: wext: use flex array destination for memcpy() Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 308/314] rseq: Use pr_warn_once() when deprecated/unknown ABI flags are encountered Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 309/314] mm: fs: initialize fsdata passed to write_begin/write_end interface Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 310/314] net/9p: use a dedicated spinlock for trans_fd Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 311/314] bpf: Prevent bpf program recursion for raw tracepoint probes Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 312/314] ntfs: fix use-after-free in ntfs_attr_find() Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 313/314] ntfs: fix out-of-bounds read " Greg Kroah-Hartman
2022-11-23  8:52 ` [PATCH 6.0 314/314] ntfs: check overflow when iterating ATTR_RECORDs Greg Kroah-Hartman
2022-11-23 17:03 ` [PATCH 6.0 000/314] 6.0.10-rc1 review Guenter Roeck
2022-11-25  7:35   ` Greg Kroah-Hartman
2022-11-23 22:31 ` Ron Economos
2022-11-24  2:04 ` Fenil Jain
2022-11-24  2:39 ` Guenter Roeck
2022-11-24  8:18 ` Naresh Kamboju
2022-11-24  8:48 ` Bagas Sanjaya
2022-11-24 11:16 ` Sudip Mukherjee
2022-11-25  7:45   ` Greg Kroah-Hartman
2022-11-25  0:29 ` Justin Forbes

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=20221123084635.195117092@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jani.nikula@intel.com \
    --cc=patches@lists.linux.dev \
    --cc=rafael.gieschke@rz.uni-freiburg.de \
    --cc=simon.rettberg@rz.uni-freiburg.de \
    --cc=stable@vger.kernel.org \
    --cc=ville.syrjala@linux.intel.com \
    /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).