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, James Prestwood <prestwoj@gmail.com>,
	Baochen Qiang <quic_bqiang@quicinc.com>,
	Jeff Johnson <quic_jjohnson@quicinc.com>,
	Kalle Valo <quic_kvalo@quicinc.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 034/317] wifi: ath10k: poll service ready message before failing
Date: Thu, 13 Jun 2024 13:30:52 +0200	[thread overview]
Message-ID: <20240613113248.861393707@linuxfoundation.org> (raw)
In-Reply-To: <20240613113247.525431100@linuxfoundation.org>

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

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

From: Baochen Qiang <quic_bqiang@quicinc.com>

[ Upstream commit e57b7d62a1b2f496caf0beba81cec3c90fad80d5 ]

Currently host relies on CE interrupts to get notified that
the service ready message is ready. This results in timeout
issue if the interrupt is not fired, due to some unknown
reasons. See below logs:

[76321.937866] ath10k_pci 0000:02:00.0: wmi service ready event not received
...
[76322.016738] ath10k_pci 0000:02:00.0: Could not init core: -110

And finally it causes WLAN interface bring up failure.

Change to give it one more chance here by polling CE rings,
before failing directly.

Tested-on: QCA6174 hw3.2 PCI WLAN.RM.4.4.1-00157-QCARMSWPZ-1

Fixes: 5e3dd157d7e7 ("ath10k: mac80211 driver for Qualcomm Atheros 802.11ac CQA98xx devices")
Reported-by: James Prestwood <prestwoj@gmail.com>
Tested-By: James Prestwood <prestwoj@gmail.com> # on QCA6174 hw3.2
Link: https://lore.kernel.org/linux-wireless/304ce305-fbe6-420e-ac2a-d61ae5e6ca1a@gmail.com/
Signed-off-by: Baochen Qiang <quic_bqiang@quicinc.com>
Acked-by: Jeff Johnson <quic_jjohnson@quicinc.com>
Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com>
Link: https://msgid.link/20240227030409.89702-1-quic_bqiang@quicinc.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/wireless/ath/ath10k/wmi.c | 26 +++++++++++++++++++++++---
 1 file changed, 23 insertions(+), 3 deletions(-)

diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c
index 85fe855ece097..9cfd35dc87ba3 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.c
+++ b/drivers/net/wireless/ath/ath10k/wmi.c
@@ -1762,12 +1762,32 @@ void ath10k_wmi_put_wmi_channel(struct ath10k *ar, struct wmi_channel *ch,
 
 int ath10k_wmi_wait_for_service_ready(struct ath10k *ar)
 {
-	unsigned long time_left;
+	unsigned long time_left, i;
 
 	time_left = wait_for_completion_timeout(&ar->wmi.service_ready,
 						WMI_SERVICE_READY_TIMEOUT_HZ);
-	if (!time_left)
-		return -ETIMEDOUT;
+	if (!time_left) {
+		/* Sometimes the PCI HIF doesn't receive interrupt
+		 * for the service ready message even if the buffer
+		 * was completed. PCIe sniffer shows that it's
+		 * because the corresponding CE ring doesn't fires
+		 * it. Workaround here by polling CE rings once.
+		 */
+		ath10k_warn(ar, "failed to receive service ready completion, polling..\n");
+
+		for (i = 0; i < CE_COUNT; i++)
+			ath10k_hif_send_complete_check(ar, i, 1);
+
+		time_left = wait_for_completion_timeout(&ar->wmi.service_ready,
+							WMI_SERVICE_READY_TIMEOUT_HZ);
+		if (!time_left) {
+			ath10k_warn(ar, "polling timed out\n");
+			return -ETIMEDOUT;
+		}
+
+		ath10k_warn(ar, "service ready completion received, continuing normally\n");
+	}
+
 	return 0;
 }
 
-- 
2.43.0




  parent reply	other threads:[~2024-06-13 12:14 UTC|newest]

Thread overview: 336+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-13 11:30 [PATCH 5.10 000/317] 5.10.219-rc1 review Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 001/317] x86/tsc: Trust initial offset in architectural TSC-adjust MSRs Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 002/317] tty: n_gsm: fix possible out-of-bounds in gsm0_receive() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 003/317] speakup: Fix sizeof() vs ARRAY_SIZE() bug Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 004/317] r8169: Fix possible ring buffer corruption on fragmented Tx packets Greg Kroah-Hartman
2024-06-13 17:21   ` Alexey Khoroshilov
2024-06-13 20:27     ` Ken Milmore
2024-06-14 11:06       ` Ken Milmore
2024-06-15 10:58       ` Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 005/317] ring-buffer: Fix a race between readers and resize checks Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 006/317] net: smc91x: Fix m68k kernel compilation for ColdFire CPU Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 007/317] nilfs2: fix unexpected freezing of nilfs_segctor_sync() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 008/317] nilfs2: fix potential hang in nilfs_detach_log_writer() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 009/317] ALSA: core: Fix NULL module pointer assignment at card init Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 010/317] wifi: cfg80211: fix the order of arguments for trace events of the tx_rx_evt class Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 011/317] net: usb: qmi_wwan: add Telit FN920C04 compositions Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 012/317] drm/amd/display: Set color_mgmt_changed to true on unsuspend Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 013/317] ASoC: rt5645: Fix the electric noise due to the CBJ contacts floating Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 014/317] ASoC: dt-bindings: rt5645: add cbj sleeve gpio property Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 015/317] regulator: vqmmc-ipq4019: fix module autoloading Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 016/317] ASoC: rt715: add vendor clear control register Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 017/317] ASoC: da7219-aad: fix usage of device_get_named_child_node() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 018/317] drm/amdkfd: Flush the process wq before creating a kfd_process Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 019/317] nvme: find numa distance only if controller has valid numa id Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 020/317] openpromfs: finish conversion to the new mount API Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 021/317] crypto: bcm - Fix pointer arithmetic Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 022/317] firmware: raspberrypi: Use correct device for DMA mappings Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 023/317] ecryptfs: Fix buffer size for tag 66 packet Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 024/317] nilfs2: fix out-of-range warning Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 025/317] parisc: add missing export of __cmpxchg_u8() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 026/317] crypto: ccp - drop platform ifdef checks Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 027/317] crypto: x86/nh-avx2 - add missing vzeroupper Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 028/317] crypto: x86/sha256-avx2 " Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 029/317] s390/cio: fix tracepoint subchannel type field Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 030/317] jffs2: prevent xattr node from overflowing the eraseblock Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 031/317] soc: mediatek: cmdq: Fix typo of CMDQ_JUMP_RELATIVE Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 032/317] null_blk: Fix missing mutex_destroy() at module removal Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 033/317] md: fix resync softlockup when bitmap size is less than array size Greg Kroah-Hartman
2024-06-13 11:30 ` Greg Kroah-Hartman [this message]
2024-06-13 11:30 ` [PATCH 5.10 035/317] x86/boot: Ignore relocations in .notes sections in walk_relocs() too Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 036/317] qed: avoid truncating work queue length Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 037/317] scsi: ufs: qcom: Perform read back after writing reset bit Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 038/317] scsi: ufs-qcom: Fix ufs RST_n spec violation Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 039/317] scsi: ufs: qcom: Perform read back after writing REG_UFS_SYS1CLK_1US Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 040/317] scsi: ufs: ufs-qcom: Fix the Qcom register name for offset 0xD0 Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.10 041/317] scsi: ufs: ufs-qcom: Clear qunipro_g4_sel for HW version major 5 Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 042/317] scsi: ufs: qcom: Perform read back after writing unipro mode Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 043/317] scsi: ufs: qcom: Perform read back after writing CGC enable Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 044/317] scsi: ufs: cdns-pltfrm: Perform read back after writing HCLKDIV Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 045/317] scsi: ufs: core: Perform read back after disabling interrupts Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 046/317] scsi: ufs: core: Perform read back after disabling UIC_COMMAND_COMPL Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 047/317] irqchip/alpine-msi: Fix off-by-one in allocation error path Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 048/317] irqchip/loongson-pch-msi: Fix off-by-one on " Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 049/317] ACPI: disable -Wstringop-truncation Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 050/317] gfs2: Fix "ignore unlock failures after withdraw" Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 051/317] selftests/bpf: Fix umount cgroup2 error in test_sockmap Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 052/317] cpufreq: Reorganize checks in cpufreq_offline() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 053/317] cpufreq: Split cpufreq_offline() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 054/317] cpufreq: Rearrange locking in cpufreq_remove_dev() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 055/317] cpufreq: exit() callback is optional Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 056/317] net: export inet_lookup_reuseport and inet6_lookup_reuseport Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 057/317] net: remove duplicate reuseport_lookup functions Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 058/317] udp: Avoid call to compute_score on multiple sites Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 059/317] scsi: libsas: Fix the failure of adding phy with zero-address to port Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 060/317] scsi: hpsa: Fix allocation size for Scsi_Host private data Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 061/317] x86/purgatory: Switch to the position-independent small code model Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 062/317] wifi: ath10k: Fix an error code problem in ath10k_dbg_sta_write_peer_debug_trigger() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 063/317] wifi: ath10k: populate board data for WCN3990 Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 064/317] tcp: avoid premature drops in tcp_add_backlog() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 065/317] net: give more chances to rcu in netdev_wait_allrefs_any() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 066/317] macintosh/via-macii: Fix "BUG: sleeping function called from invalid context" Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 067/317] wifi: carl9170: add a proper sanity check for endpoints Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 068/317] wifi: ar5523: enable proper endpoint verification Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 069/317] sh: kprobes: Merge arch_copy_kprobe() into arch_prepare_kprobe() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 070/317] Revert "sh: Handle calling csum_partial with misaligned data" Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 071/317] selftests/binderfs: use the Makefiles rules, not Makes implicit rules Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 072/317] HID: intel-ish-hid: ipc: Add check for pci_alloc_irq_vectors Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 073/317] scsi: bfa: Ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 074/317] scsi: qedf: " Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 075/317] wifi: mwl8k: initialize cmd->addr[] properly Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 076/317] usb: aqc111: stop lying about skb->truesize Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 077/317] net: usb: sr9700: " Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 078/317] m68k: Fix spinlock race in kernel thread creation Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 079/317] m68k: mac: Fix reboot hang on Mac IIci Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 080/317] net: ipv6: fix wrong start position when receive hop-by-hop fragment Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 081/317] eth: sungem: remove .ndo_poll_controller to avoid deadlocks Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 082/317] net: ethernet: cortina: Locking fixes Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 083/317] af_unix: Fix data races in unix_release_sock/unix_stream_sendmsg Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 084/317] net: usb: smsc95xx: stop lying about skb->truesize Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 085/317] net: openvswitch: fix overwriting ct original tuple for ICMPv6 Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 086/317] ipv6: sr: add missing seg6_local_exit Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 087/317] ipv6: sr: fix incorrect unregister order Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 088/317] ipv6: sr: fix invalid unregister error path Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 089/317] net/mlx5: Discard command completions in internal error Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 090/317] drm/amd/display: Fix potential index out of bounds in color transformation function Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 091/317] ASoC: soc-acpi: add helper to identify parent driver Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 092/317] ASoC: Intel: Disable route checks for Skylake boards Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 093/317] mtd: rawnand: hynix: fixed typo Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 094/317] fbdev: shmobile: fix snprintf truncation Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 095/317] drm/meson: vclk: fix calculation of 59.94 fractional rates Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 096/317] drm/mediatek: Add 0 size check to mtk_drm_gem_obj Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 097/317] powerpc/fsl-soc: hide unused const variable Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 098/317] fbdev: sisfb: hide unused variables Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 099/317] media: ngene: Add dvb_ca_en50221_init return value check Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 100/317] media: radio-shark2: Avoid led_names truncations Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.10 101/317] drm: bridge: cdns-mhdp8546: Fix possible null pointer dereference Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 102/317] fbdev: sh7760fb: allow modular build Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 103/317] media: atomisp: ssh_css: Fix a null-pointer dereference in load_video_binaries Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 104/317] drm/arm/malidp: fix a possible null pointer dereference Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 105/317] drm: vc4: Fix " Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 106/317] ASoC: tracing: Export SND_SOC_DAPM_DIR_OUT to its value Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 107/317] drm/bridge: lt9611: Dont log an error when DSI host cant be found Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 108/317] drm/bridge: tc358775: " Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 109/317] drm/panel: simple: Add missing Innolux G121X1-L03 format, flags, connector Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 110/317] drm/mipi-dsi: use correct return type for the DSC functions Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 111/317] RDMA/hns: Refactor the hns_roce_buf allocation flow Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 112/317] RDMA/hns: Create QP with selected QPN for bank load balance Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 113/317] RDMA/hns: Fix incorrect symbol types Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 114/317] RDMA/hns: Fix return value in hns_roce_map_mr_sg Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 115/317] RDMA/hns: Use complete parentheses in macros Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 116/317] RDMA/hns: Modify the print level of CQE error Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 117/317] clk: qcom: mmcc-msm8998: fix venus clock issue Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 118/317] x86/insn: Fix PUSH instruction in x86 instruction decoder opcode map Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 119/317] ext4: avoid excessive credit estimate in ext4_tmpfile() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 120/317] sunrpc: removed redundant procp check Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 121/317] ext4: simplify calculation of blkoff in ext4_mb_new_blocks_simple Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 122/317] ext4: fix unit mismatch " Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 123/317] ext4: try all groups " Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 124/317] ext4: remove unused parameter from ext4_mb_new_blocks_simple() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 125/317] ext4: fix potential unnitialized variable Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 126/317] SUNRPC: Fix gss_free_in_token_pages() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 127/317] selftests/kcmp: Make the test output consistent and clear Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 128/317] selftests/kcmp: remove unused open mode Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 129/317] RDMA/IPoIB: Fix format truncation compilation errors Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 130/317] net: qrtr: fix null-ptr-deref in qrtr_ns_remove Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 131/317] net: qrtr: ns: Fix module refcnt Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 132/317] netrom: fix possible dead-lock in nr_rt_ioctl() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 133/317] af_packet: do not call packet_read_pending() from tpacket_destruct_skb() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 134/317] sched/fair: Allow disabling sched_balance_newidle with sched_relax_domain_level Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 135/317] perf evlist: Use the right prefix for struct evlist sideband thread methods Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 136/317] perf record: Delete session after stopping sideband thread Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 137/317] perf probe: Add missing libgen.h header needed for using basename() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 138/317] greybus: lights: check return of get_channel_from_mode Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 139/317] f2fs: fix to wait on page writeback in __clone_blkaddrs() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 140/317] perf annotate: Add --demangle and --demangle-kernel Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 141/317] perf annotate: Get rid of duplicate --group option item Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 142/317] soundwire: cadence: fix invalid PDI offset Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 143/317] dmaengine: idma64: Add check for dma_set_max_seg_size Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 144/317] firmware: dmi-id: add a release callback function Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 145/317] serial: max3100: Lock port->lock when calling uart_handle_cts_change() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 146/317] serial: max3100: Update uart_driver_registered on driver removal Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 147/317] serial: max3100: Fix bitwise types Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 148/317] greybus: arche-ctrl: move device table to its right location Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 149/317] serial: sc16is7xx: add proper sched.h include for sched_set_fifo() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 150/317] f2fs: compress: support chksum Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 151/317] f2fs: add compress_mode mount option Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 152/317] f2fs: compress: clean up parameter of __f2fs_cluster_blocks() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 153/317] f2fs: compress: remove unneeded preallocation Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 154/317] f2fs: introduce FI_COMPRESS_RELEASED instead of using IMMUTABLE bit Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 155/317] f2fs: compress: fix to relocate check condition in f2fs_{release,reserve}_compress_blocks() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 156/317] f2fs: add cp_error check in f2fs_write_compressed_pages Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 157/317] f2fs: fix to force keeping write barrier for strict fsync mode Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 158/317] f2fs: do not allow partial truncation on pinned file Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 159/317] f2fs: fix typos in comments Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 160/317] f2fs: fix to relocate check condition in f2fs_fallocate() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.10 161/317] f2fs: fix to check pinfile flag in f2fs_move_file_range() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 162/317] iio: pressure: dps310: support negative temperature values Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 163/317] fpga: region: change FPGA indirect article to an Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 164/317] fpga: region: Rename dev to parent for parent device Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 165/317] docs: driver-api: fpga: avoid using UTF-8 chars Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 166/317] fpga: region: Use standard dev_release for class driver Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 167/317] fpga: region: add owner module and take its refcount Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 168/317] microblaze: Remove gcc flag for non existing early_printk.c file Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 169/317] microblaze: Remove early printk call from cpuinfo-static.c Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 170/317] perf intel-pt: Fix unassigned instruction op (discovered by MemorySanitizer) Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 171/317] ovl: remove upper umask handling from ovl_create_upper() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 172/317] usb: gadget: u_audio: Clear uac pointer when freed Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 173/317] stm class: Fix a double free in stm_register_device() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 174/317] ppdev: Remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 175/317] ppdev: Add an error check in register_device Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 176/317] perf bench internals inject-build-id: Fix trap divide when collecting just one DSO Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 177/317] perf top: Fix TUI exit screen refresh race condition Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 178/317] perf ui: Update use of pthread mutex Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 179/317] perf ui browser: Dont save pointer to stack memory Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 180/317] extcon: max8997: select IRQ_DOMAIN instead of depending on it Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 181/317] PCI/EDR: Align EDR_PORT_DPC_ENABLE_DSM with PCI Firmware r3.3 Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 182/317] PCI/EDR: Align EDR_PORT_LOCATE_DSM " Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 183/317] perf ui browser: Avoid SEGV on title Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 184/317] perf report: Avoid SEGV in report__setup_sample_type() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 185/317] f2fs: compress: fix to cover {reserve,release}_compress_blocks() w/ cp_rwsem lock Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 186/317] f2fs: fix to release node block count in error path of f2fs_new_node_page() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 187/317] f2fs: compress: dont allow unaligned truncation on released compress inode Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 188/317] serial: sh-sci: protect invalidating RXDMA on shutdown Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 189/317] libsubcmd: Fix parse-options memory leak Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 190/317] perf stat: Dont display metric header for non-leader uncore events Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 191/317] s390/ipl: Fix incorrect initialization of len fields in nvme reipl block Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 192/317] s390/ipl: Fix incorrect initialization of nvme dump block Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 193/317] Input: ims-pcu - fix printf string overflow Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 194/317] Input: ioc3kbd - convert to platform remove callback returning void Greg Kroah-Hartman
2024-08-28  4:04   ` Dominique Martinet
2024-08-30 12:47     ` Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 195/317] Input: ioc3kbd - add device table Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 196/317] mmc: sdhci_am654: Add tuning algorithm for delay chain Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 197/317] mmc: sdhci_am654: Write ITAPDLY for DDR52 timing Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 198/317] mmc: sdhci_am654: Drop lookup for deprecated ti,otap-del-sel Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 199/317] mmc: sdhci_am654: Add OTAP/ITAP delay enable Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 200/317] mmc: sdhci_am654: Add ITAPDLYSEL in sdhci_j721e_4bit_set_clock Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 201/317] mmc: sdhci_am654: Fix ITAPDLY for HS400 timing Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 202/317] Input: pm8xxx-vibrator - correct VIB_MAX_LEVELS calculation Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 203/317] drm/msm/dpu: Always flush the slave INTF on the CTL Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 204/317] um: Fix return value in ubd_init() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 205/317] um: Add winch to winch_handlers before registering winch IRQ Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 206/317] um: vector: fix bpfflash parameter evaluation Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 207/317] drm/bridge: tc358775: fix support for jeida-18 and jeida-24 Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 208/317] media: stk1160: fix bounds checking in stk1160_copy_video() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 209/317] scsi: qla2xxx: Replace all non-returning strlcpy() with strscpy() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 210/317] media: flexcop-usb: clean up endpoint sanity checks Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 211/317] media: flexcop-usb: fix sanity check of bNumEndpoints Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 212/317] powerpc/pseries: Add failure related checks for h_get_mpp and h_get_ppp Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 213/317] um: Fix the -Wmissing-prototypes warning for __switch_mm Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 214/317] media: cec: cec-adap: always cancel work in cec_transmit_msg_fh Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 215/317] media: cec: cec-api: add locking in cec_release() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 216/317] media: core headers: fix kernel-doc warnings Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 217/317] media: cec: fix a deadlock situation Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 218/317] media: cec: call enable_adap on s_log_addrs Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 219/317] media: cec: abort if the current transmit was canceled Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 220/317] media: cec: correctly pass on reply results Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.10 221/317] media: cec: use call_op and check for !unregistered Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 222/317] media: cec-adap.c: drop activate_cnt, use state info instead Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 223/317] media: cec: core: avoid recursive cec_claim_log_addrs Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 224/317] media: cec: core: avoid confusing "transmit timed out" message Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 225/317] null_blk: Fix the WARNING: modpost: missing MODULE_DESCRIPTION() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 226/317] regulator: bd71828: Dont overwrite runtime voltages Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 227/317] x86/kconfig: Select ARCH_WANT_FRAME_POINTERS again when UNWINDER_FRAME_POINTER=y Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 228/317] nfc: nci: Fix uninit-value in nci_rx_work Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 229/317] ASoC: tas2552: Add TX path for capturing AUDIO-OUT data Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 230/317] sunrpc: fix NFSACL RPC retry on soft mount Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 231/317] rpcrdma: fix handling for RDMA_CM_EVENT_DEVICE_REMOVAL Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 232/317] ipv6: sr: fix memleak in seg6_hmac_init_algo Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 233/317] params: lift param_set_uint_minmax to common code Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 234/317] tcp: Fix shift-out-of-bounds in dctcp_update_alpha() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 235/317] openvswitch: Set the skbuff pkt_type for proper pmtud support Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 236/317] arm64: asm-bug: Add .align 2 to the end of __BUG_ENTRY Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 237/317] virtio: delete vq in vp_find_vqs_msix() when request_irq() fails Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 238/317] riscv: Cleanup stacktrace Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 239/317] riscv: stacktrace: Make walk_stackframe cross pt_regs frame Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 240/317] riscv: stacktrace: fixed walk_stackframe() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 241/317] net: fec: avoid lock evasion when reading pps_enable Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 242/317] tls: fix missing memory barrier in tls_init Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 243/317] nfc: nci: Fix kcov check in nci_rx_work() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 244/317] nfc: nci: Fix handling of zero-length payload packets " Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 245/317] netfilter: nfnetlink_queue: acquire rcu_read_lock() in instance_destroy_rcu() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 246/317] netfilter: nft_payload: restore vlan q-in-q match support Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 247/317] spi: Dont mark message DMA mapped when no transfer in it is Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 248/317] nvmet: fix ns enable/disable possible hang Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 249/317] net/mlx5e: Use rx_missed_errors instead of rx_dropped for reporting buffer exhaustion Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 250/317] dma-buf/sw-sync: dont enable IRQ from sync_print_obj() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 251/317] bpf: Fix potential integer overflow in resolve_btfids Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 252/317] enic: Validate length of nl attributes in enic_set_vf_port Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 253/317] net: usb: smsc95xx: fix changing LED_SEL bit value updated from EEPROM Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 254/317] bpf: Allow delete from sockmap/sockhash only if update is allowed Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 255/317] net:fec: Add fec_enet_deinit() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 256/317] netfilter: tproxy: bail out if IP has been disabled on the device Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 257/317] kconfig: fix comparison to constant symbols, m, n Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 258/317] spi: stm32: Dont warn about spurious interrupts Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 259/317] ipvlan: Dont Use skb->sk in ipvlan_process_v{4,6}_outbound Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 260/317] powerpc/uaccess: Use asm goto for get_user when compiler supports it Greg Kroah-Hartman
2024-06-14  7:27   ` Michael Ellerman
2024-06-15 11:02     ` Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 261/317] hwmon: (shtc1) Fix property misspelling Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 262/317] ALSA: timer: Set lower bound of start tick time Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 263/317] genirq/cpuhotplug, x86/vector: Prevent vector leak during CPU offline Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 264/317] media: cec: core: add adap_nb_transmit_canceled() callback Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 265/317] SUNRPC: Fix loop termination condition in gss_free_in_token_pages() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 266/317] binder: fix max_thread type inconsistency Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 267/317] mmc: core: Do not force a retune before RPMB switch Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 268/317] io_uring: fail NOP if non-zero op flags is passed in Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 269/317] afs: Dont cross .backup mountpoint from backup volume Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 270/317] nilfs2: fix use-after-free of timer for log writer thread Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 271/317] vxlan: Fix regression when dropping packets due to invalid src addresses Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 272/317] x86/mm: Remove broken vsyscall emulation code from the page fault code Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 273/317] netfilter: nf_tables: restrict tunnel object to NFPROTO_NETDEV Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 274/317] netfilter: nf_tables: Fix potential data-race in __nft_obj_type_get() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 275/317] f2fs: fix to do sanity check on i_xattr_nid in sanity_check_inode() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 276/317] media: lgdt3306a: Add a check against null-pointer-def Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 277/317] drm/amdgpu: add error handle to avoid out-of-bounds Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 278/317] ata: pata_legacy: make legacy_exit() work again Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 279/317] ACPI: resource: Do IRQ override on TongFang GXxHRXx and GMxHGxx Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 280/317] arm64: tegra: Correct Tegra132 I2C alias Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.10 281/317] arm64: dts: qcom: qcs404: fix bluetooth device address Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 282/317] md/raid5: fix deadlock that raid5d() wait for itself to clear MD_SB_CHANGE_PENDING Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 283/317] wifi: rtl8xxxu: Fix the TX power of RTL8192CU, RTL8723AU Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 284/317] wifi: rtlwifi: rtl8192de: Fix low speed with WPA3-SAE Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 285/317] wifi: rtlwifi: rtl8192de: Fix endianness issue in RX path Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 286/317] arm64: dts: hi3798cv200: fix the size of GICR Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 287/317] media: mc: mark the media devnode as registered from the, start Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 288/317] media: mxl5xx: Move xpt structures off stack Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 289/317] media: v4l2-core: hold videodev_lock until dev reg, finishes Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 290/317] mmc: core: Add mmc_gpiod_set_cd_config() function Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 291/317] mmc: sdhci-acpi: Sort DMI quirks alphabetically Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 292/317] mmc: sdhci-acpi: Fix Lenovo Yoga Tablet 2 Pro 1380 sdcard slot not working Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 293/317] mmc: sdhci-acpi: Disable write protect detection on Toshiba WT10-A Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 294/317] fbdev: savage: Handle err return when savagefb_check_var failed Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 295/317] KVM: arm64: Allow AArch32 PSTATE.M to be restored as System mode Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 296/317] crypto: ecrdsa - Fix module auto-load on add_key Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 297/317] crypto: qat - Fix ADF_DEV_RESET_SYNC memory leak Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 298/317] net/ipv6: Fix route deleting failure when metric equals 0 Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 299/317] net/9p: fix uninit-value in p9_client_rpc() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 300/317] intel_th: pci: Add Meteor Lake-S CPU support Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 301/317] sparc64: Fix number of online CPUs Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 302/317] watchdog: rti_wdt: Set min_hw_heartbeat_ms to accommodate a safety margin Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 303/317] kdb: Fix buffer overflow during tab-complete Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 304/317] kdb: Use format-strings rather than \0 injection in kdb_read() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 305/317] kdb: Fix console handling when editing and tab-completing commands Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 306/317] kdb: Merge identical case statements in kdb_read() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 307/317] kdb: Use format-specifiers rather than memset() for padding " Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 308/317] net: fix __dst_negative_advice() race Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 309/317] sparc: move struct termio to asm/termios.h Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 310/317] ext4: fix mb_cache_entrys e_refcnt leak in ext4_xattr_block_cache_find() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 311/317] s390/ap: Fix crash in AP internal function modify_bitmap() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 312/317] nfs: fix undefined behavior in nfs_block_bits() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 313/317] NFS: Fix READ_PLUS when server doesnt support OP_READ_PLUS Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 314/317] scsi: ufs: ufs-qcom: Clear qunipro_g4_sel for HW major version > 5 Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 315/317] f2fs: compress: fix compression chksum Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 316/317] RDMA/hns: Use mutex instead of spinlock for ida allocation Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.10 317/317] RDMA/hns: Fix CQ and QP cache affinity Greg Kroah-Hartman
2024-06-13 14:54 ` [PATCH 5.10 000/317] 5.10.219-rc1 review Naresh Kamboju
2024-06-13 15:13 ` Naresh Kamboju
2024-06-13 22:35   ` Nathan Chancellor
2024-06-15 11:00     ` Greg Kroah-Hartman
2024-06-14  8:37 ` Dominique Martinet
2024-06-14  9:35 ` Pavel Machek
2024-06-14 14:16 ` Mark Brown
2024-06-14 17:04 ` Jon Hunter
2024-06-15  7:06 ` Naresh Kamboju
2024-06-16 12:52 ` Florian Fainelli

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240613113248.861393707@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=patches@lists.linux.dev \
    --cc=prestwoj@gmail.com \
    --cc=quic_bqiang@quicinc.com \
    --cc=quic_jjohnson@quicinc.com \
    --cc=quic_kvalo@quicinc.com \
    --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