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, Bob Pearson <rpearsonhpe@gmail.com>,
	Jason Gunthorpe <jgg@nvidia.com>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.9 367/427] RDMA/rxe: Fix seg fault in rxe_comp_queue_pkt
Date: Mon, 27 May 2024 20:56:54 +0200	[thread overview]
Message-ID: <20240527185634.083917706@linuxfoundation.org> (raw)
In-Reply-To: <20240527185601.713589927@linuxfoundation.org>

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

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

From: Bob Pearson <rpearsonhpe@gmail.com>

[ Upstream commit 2b23b6097303ed0ba5f4bc036a1c07b6027af5c6 ]

In rxe_comp_queue_pkt() an incoming response packet skb is enqueued to the
resp_pkts queue and then a decision is made whether to run the completer
task inline or schedule it. Finally the skb is dereferenced to bump a 'hw'
performance counter. This is wrong because if the completer task is
already running in a separate thread it may have already processed the skb
and freed it which can cause a seg fault.  This has been observed
infrequently in testing at high scale.

This patch fixes this by changing the order of enqueuing the packet until
after the counter is accessed.

Link: https://lore.kernel.org/r/20240329145513.35381-4-rpearsonhpe@gmail.com
Signed-off-by: Bob Pearson <rpearsonhpe@gmail.com>
Fixes: 0b1e5b99a48b ("IB/rxe: Add port protocol stats")
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/infiniband/sw/rxe/rxe_comp.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/infiniband/sw/rxe/rxe_comp.c b/drivers/infiniband/sw/rxe/rxe_comp.c
index b78b8c0856abd..c997b7cbf2a9e 100644
--- a/drivers/infiniband/sw/rxe/rxe_comp.c
+++ b/drivers/infiniband/sw/rxe/rxe_comp.c
@@ -131,12 +131,12 @@ void rxe_comp_queue_pkt(struct rxe_qp *qp, struct sk_buff *skb)
 {
 	int must_sched;
 
-	skb_queue_tail(&qp->resp_pkts, skb);
-
-	must_sched = skb_queue_len(&qp->resp_pkts) > 1;
+	must_sched = skb_queue_len(&qp->resp_pkts) > 0;
 	if (must_sched != 0)
 		rxe_counter_inc(SKB_TO_PKT(skb)->rxe, RXE_CNT_COMPLETER_SCHED);
 
+	skb_queue_tail(&qp->resp_pkts, skb);
+
 	if (must_sched)
 		rxe_sched_task(&qp->comp.task);
 	else
-- 
2.43.0




  parent reply	other threads:[~2024-05-27 19:15 UTC|newest]

Thread overview: 438+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-27 18:50 [PATCH 6.9 000/427] 6.9.3-rc1 review Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 001/427] x86/tsc: Trust initial offset in architectural TSC-adjust MSRs Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 002/427] selftests/ftrace: Fix BTFARG testcase to check fprobe is enabled correctly Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 003/427] selftests/ftrace: Fix checkbashisms errors Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 004/427] ftrace: Fix possible use-after-free issue in ftrace_location() Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 005/427] Revert "arm64: fpsimd: Implement lazy restore for kernel mode FPSIMD" Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 006/427] arm64/fpsimd: Avoid erroneous elide of user state reload Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 007/427] Reapply "arm64: fpsimd: Implement lazy restore for kernel mode FPSIMD" Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 008/427] tty: n_gsm: fix possible out-of-bounds in gsm0_receive() Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 009/427] tty: n_gsm: fix missing receive state reset after mode switch Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 010/427] speakup: Fix sizeof() vs ARRAY_SIZE() bug Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 011/427] serial: sc16is7xx: fix bug in sc16is7xx_set_baud() when using prescaler Greg Kroah-Hartman
2024-05-27 18:50 ` [PATCH 6.9 012/427] serial: 8250_bcm7271: use default_mux_rate if possible Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 013/427] serial: 8520_mtk: Set RTS on shutdown for Rx in-band wakeup Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 014/427] Input: try trimming too long modalias strings Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 015/427] io_uring: fail NOP if non-zero op flags is passed in Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 016/427] io_uring/sqpoll: ensure that normal task_work is also run timely Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 017/427] Revert "r8169: dont try to disable interrupts if NAPI is, scheduled already" Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 018/427] r8169: Fix possible ring buffer corruption on fragmented Tx packets Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 019/427] ring-buffer: Fix a race between readers and resize checks Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 020/427] net: mana: Fix the extra HZ in mana_hwc_send_request Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 021/427] tools/latency-collector: Fix -Wformat-security compile warns Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 022/427] tools/nolibc/stdlib: fix memory error in realloc() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 023/427] net: ti: icssg_prueth: Fix NULL pointer dereference in prueth_probe() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 024/427] net: lan966x: remove debugfs directory in probe() error path Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 025/427] net: smc91x: Fix m68k kernel compilation for ColdFire CPU Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 026/427] f2fs: fix false alarm on invalid block address Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 027/427] dt-bindings: adc: axi-adc: add clocks property Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 028/427] nilfs2: fix use-after-free of timer for log writer thread Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 029/427] nilfs2: fix unexpected freezing of nilfs_segctor_sync() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 030/427] nilfs2: fix potential hang in nilfs_detach_log_writer() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 031/427] fs/ntfs3: Remove max link count info display during driver init Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 032/427] fs/ntfs3: Taking DOS names into account during link counting Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 033/427] fs/ntfs3: Fix case when index is reused during tree transformation Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 034/427] fs/ntfs3: Break dir enumeration if directory contents error Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 035/427] ksmbd: avoid to send duplicate oplock break notifications Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 036/427] ksmbd: ignore trailing slashes in share paths Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 037/427] ALSA: hda/realtek: fix mute/micmute LEDs dont work for ProBook 440/460 G11 Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 038/427] ALSA: core: Fix NULL module pointer assignment at card init Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 039/427] ALSA: timer: Set lower bound of start tick time Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 040/427] ALSA: Fix deadlocks with kctl removals at disconnection Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 041/427] KEYS: asymmetric: Add missing dependency on CRYPTO_SIG Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 042/427] KEYS: asymmetric: Add missing dependencies of FIPS_SIGNATURE_SELFTEST Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 043/427] openpromfs: finish conversion to the new mount API Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 044/427] crypto: bcm - Fix pointer arithmetic Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 045/427] firmware: qcom: qcm: fix unused qcom_scm_qseecom_allowlist Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 046/427] mm/slub, kunit: Use inverted data to corrupt kmem cache Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 047/427] firmware: raspberrypi: Use correct device for DMA mappings Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 048/427] ecryptfs: Fix buffer size for tag 66 packet Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 049/427] nilfs2: fix out-of-range warning Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 050/427] parisc: add missing export of __cmpxchg_u8() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 051/427] crypto: ccp - drop platform ifdef checks Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 052/427] crypto: x86/nh-avx2 - add missing vzeroupper Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 053/427] crypto: x86/sha256-avx2 " Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 054/427] crypto: x86/sha512-avx2 " Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 055/427] s390/cio: fix tracepoint subchannel type field Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 056/427] io_uring: use the right type for work_llist empty check Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 057/427] rcu-tasks: Fix show_rcu_tasks_trace_gp_kthread buffer overflow Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 058/427] rcu: Fix buffer overflow in print_cpu_stall_info() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 059/427] ARM: configs: sunxi: Enable DRM_DW_HDMI Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 060/427] jffs2: prevent xattr node from overflowing the eraseblock Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 061/427] libfs: Fix simple_offset_rename_exchange() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 062/427] libfs: Add simple_offset_rename() API Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 063/427] shmem: Fix shmem_rename2() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 064/427] io-wq: write next_work before dropping acct_lock Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 065/427] mm/userfaultfd: Do not place zeropages when zeropages are disallowed Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 066/427] s390/mm: Re-enable the shared zeropage for !PV and !skeys KVM guests Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 067/427] crypto: octeontx2 - add missing check for dma_map_single Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 068/427] crypto: qat - improve error message in adf_get_arbiter_mapping() Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 069/427] crypto: qat - improve error logging to be consistent across features Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 070/427] soc: qcom: pmic_glink: dont traverse clients list without a lock Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 071/427] soc: qcom: pmic_glink: notify clients about the current state Greg Kroah-Hartman
2024-05-27 18:51 ` [PATCH 6.9 072/427] firmware: qcom: scm: Fix __scm and waitq completion variable initialization Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 073/427] soc: mediatek: cmdq: Fix typo of CMDQ_JUMP_RELATIVE Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 074/427] null_blk: Fix missing mutex_destroy() at module removal Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 075/427] crypto: qat - validate slices count returned by FW Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 076/427] hwrng: stm32 - use logical OR in conditional Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 077/427] hwrng: stm32 - put IP into RPM suspend on failure Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 078/427] hwrng: stm32 - repair clock handling Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 079/427] kunit/fortify: Fix mismatched kvalloc()/vfree() usage Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 080/427] s390: vmlinux.lds.S: Drop .hash and .gnu.hash for !CONFIG_PIE_BUILD Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 081/427] io_uring/net: fix sendzc lazy wake polling Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 082/427] soc: qcom: pmic_glink: Make client-lock non-sleeping Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 083/427] lkdtm: Disable CFI checking for perms functions Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 084/427] kunit/fortify: Fix replaced failure path to unbreak __alloc_size Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 085/427] md: fix resync softlockup when bitmap size is less than array size Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 086/427] crypto: qat - specify firmware files for 402xx Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 087/427] block: refine the EOF check in blkdev_iomap_begin Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 088/427] block: fix and simplify blkdevparts= cmdline parsing Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 089/427] block: support to account io_ticks precisely Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 090/427] wifi: ath10k: poll service ready message before failing Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 091/427] wifi: brcmfmac: pcie: handle randbuf allocation failure Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 092/427] wifi: ath11k: dont force enable power save on non-running vdevs Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 093/427] bpftool: Fix missing pids during link show Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 094/427] libbpf: Prevent null-pointer dereference when prog to load has no BTF Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 095/427] wifi: ath12k: use correct flag field for 320 MHz channels Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 096/427] wifi: mt76: mt7915: workaround too long expansion sparse warnings Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 097/427] x86/boot: Ignore relocations in .notes sections in walk_relocs() too Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 098/427] x86/fred: Fix typo in Kconfig description Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 099/427] wifi: ieee80211: fix ieee80211_mle_basic_sta_prof_size_ok() Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 100/427] wifi: cfg80211: ignore non-TX BSSs in per-STA profile Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 101/427] wifi: iwlwifi: mvm: Do not warn on invalid link on scan complete Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 102/427] wifi: iwlwifi: mvm: allocate STA links only for active links Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 103/427] wifi: mac80211: dont select link ID if not provided in scan request Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 104/427] wifi: iwlwifi: mvm: fix active link counting during recovery Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 105/427] wifi: iwlwifi: mvm: set wider BW OFDMA ignore correctly Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 106/427] wifi: iwlwifi: mvm: select STA mask only for active links Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 107/427] wifi: iwlwifi: reconfigure TLC during HW restart Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 108/427] wifi: iwlwifi: mvm: fix check in iwl_mvm_sta_fw_id_mask Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 109/427] sched/fair: Add EAS checks before updating root_domain::overutilized Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 110/427] ACPI: bus: Indicate support for _TFP thru _OSC Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 111/427] ACPI: bus: Indicate support for more than 16 p-states " Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 112/427] ACPI: bus: Indicate support for the Generic Event Device " Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 113/427] ACPI: Fix Generic Initiator Affinity _OSC bit Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 114/427] ACPI: bus: Indicate support for IRQ ResourceSource thru _OSC Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 115/427] enetc: avoid truncating error message Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 116/427] qed: avoid truncating work queue length Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 117/427] mlx5: avoid truncating error message Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 118/427] mlx5: stop warning for 64KB pages Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 119/427] bitops: add missing prototype check Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 120/427] dlm: fix user space lock decision to copy lvb Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 121/427] wifi: carl9170: re-fix fortified-memset warning Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 122/427] bpftool: Mount bpffs on provided dir instead of parent dir Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 123/427] bpf: Pack struct bpf_fib_lookup Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 124/427] bpf: prevent r10 register from being marked as precise Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 125/427] x86/microcode/AMD: Avoid -Wformat warning with clang-15 Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 126/427] scsi: ufs: qcom: Perform read back after writing reset bit Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 127/427] scsi: ufs: qcom: Perform read back after writing REG_UFS_SYS1CLK_1US Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 128/427] scsi: ufs: qcom: Perform read back after writing unipro mode Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 129/427] scsi: ufs: qcom: Perform read back after writing CGC enable Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 130/427] scsi: ufs: cdns-pltfrm: Perform read back after writing HCLKDIV Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 131/427] scsi: ufs: core: Perform read back after writing UTP_TASK_REQ_LIST_BASE_H Greg Kroah-Hartman
2024-05-27 18:52 ` [PATCH 6.9 132/427] scsi: ufs: core: Perform read back after disabling interrupts Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 133/427] scsi: ufs: core: Perform read back after disabling UIC_COMMAND_COMPL Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 134/427] ACPI: LPSS: Advertise number of chip selects via property Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 135/427] EDAC/skx_common: Allow decoding of SGX addresses Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 136/427] locking/atomic/x86: Correct the definition of __arch_try_cmpxchg128() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 137/427] irqchip/alpine-msi: Fix off-by-one in allocation error path Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 138/427] irqchip/loongson-pch-msi: Fix off-by-one on " Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 139/427] ACPI: disable -Wstringop-truncation Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 140/427] gfs2: Dont forget to complete delayed withdraw Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 141/427] gfs2: Fix "ignore unlock failures after withdraw" Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 142/427] arm64: Remove unnecessary irqflags alternative.h include Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 143/427] x86/boot/64: Clear most of CR4 in startup_64(), except PAE, MCE and LA57 Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 144/427] selftests/bpf: Fix umount cgroup2 error in test_sockmap Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 145/427] tcp: increase the default TCP scaling ratio Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 146/427] cpufreq: exit() callback is optional Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 147/427] x86/pat: Introduce lookup_address_in_pgd_attr() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 148/427] x86/pat: Restructure _lookup_address_cpa() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 149/427] x86/pat: Fix W^X violation false-positives when running as Xen PV guest Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 150/427] udp: Avoid call to compute_score on multiple sites Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 151/427] openrisc: Use do_kernel_power_off() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 152/427] openrisc: traps: Dont send signals to kernel mode threads Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 153/427] cppc_cpufreq: Fix possible null pointer dereference Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 154/427] wifi: mac80211: transmit deauth only if link is available Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 155/427] wifi: iwlwifi: mvm: introduce esr_disable_reason Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 156/427] wifi: iwlwifi: mvm: calculate EMLSR mode after connection Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 157/427] wifi: iwlwifi: mvm: dont always disable EMLSR due to BT coex Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 158/427] wifi: iwlwifi: mvm: init vif works only once Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 159/427] scsi: libsas: Fix the failure of adding phy with zero-address to port Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 160/427] scsi: hpsa: Fix allocation size for Scsi_Host private data Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 161/427] x86/purgatory: Switch to the position-independent small code model Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 162/427] wifi: ath12k: fix out-of-bound access of qmi_invoke_handler() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 163/427] thermal/drivers/mediatek/lvts_thermal: Add coeff for mt8192 Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 164/427] thermal/drivers/tsens: Fix null pointer dereference Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 165/427] dt-bindings: thermal: loongson,ls2k-thermal: Add Loongson-2K0500 compatible Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 166/427] dt-bindings: thermal: loongson,ls2k-thermal: Fix incorrect compatible definition Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 167/427] wifi: ath10k: Fix an error code problem in ath10k_dbg_sta_write_peer_debug_trigger() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 168/427] gfs2: Remove ill-placed consistency check Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 169/427] gfs2: Fix potential glock use-after-free on unmount Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 170/427] gfs2: finish_xmote cleanup Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 171/427] gfs2: do_xmote fixes Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 172/427] thermal/debugfs: Avoid excessive updates of trip point statistics Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 173/427] selftests/bpf: Fix a fd leak in error paths in open_netns Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 174/427] scsi: ufs: core: mcq: Fix ufshcd_mcq_sqe_search() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 175/427] cpufreq: brcmstb-avs-cpufreq: ISO C90 forbids mixed declarations Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 176/427] wifi: ath10k: populate board data for WCN3990 Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 177/427] net: dsa: mv88e6xxx: Add support for model-specific pre- and post-reset handlers Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 178/427] net: dsa: mv88e6xxx: Avoid EEPROM timeout without EEPROM on 88E6250-family switches Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 179/427] tcp: avoid premature drops in tcp_add_backlog() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 180/427] thermal/debugfs: Create records for cdev states as they get used Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 181/427] thermal/debugfs: Pass cooling device state to thermal_debug_cdev_add() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 182/427] pwm: sti: Simplify probe function using devm functions Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 183/427] drivers/perf: hisi_pcie: Fix out-of-bound access when valid event group Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 184/427] drivers/perf: hisi: hns3: " Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 185/427] drivers/perf: hisi: hns3: Actually use devm_add_action_or_reset() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 186/427] net: give more chances to rcu in netdev_wait_allrefs_any() Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 187/427] macintosh/via-macii: Fix "BUG: sleeping function called from invalid context" Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 188/427] wifi: carl9170: add a proper sanity check for endpoints Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 189/427] bpf: Fix verifier assumptions about socket->sk Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 190/427] selftests/bpf: Run cgroup1_hierarchy test in own mount namespace Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 191/427] wifi: ar5523: enable proper endpoint verification Greg Kroah-Hartman
2024-05-27 18:53 ` [PATCH 6.9 192/427] pwm: meson: Add check for error from clk_round_rate() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 193/427] pwm: meson: Use mul_u64_u64_div_u64() for frequency calculating Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 194/427] bpf: Add BPF_PROG_TYPE_CGROUP_SKB attach type enforcement in BPF_LINK_CREATE Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 195/427] sh: kprobes: Merge arch_copy_kprobe() into arch_prepare_kprobe() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 196/427] Revert "sh: Handle calling csum_partial with misaligned data" Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 197/427] wifi: mt76: mt7603: fix tx queue of loopback packets Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 198/427] wifi: mt76: mt7603: add wpdma tx eof flag for PSE client reset Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 199/427] wifi: mt76: connac: check for null before dereferencing Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 200/427] wifi: mt76: mt7996: fix size of txpower MCU command Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 201/427] wifi: mt76: mt7925: ensure 4-byte alignment for suspend & wow command Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 202/427] wifi: mt76: mt7996: fix uninitialized variable in mt7996_irq_tasklet() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 203/427] wifi: mt76: mt7996: fix potential memory leakage when reading chip temperature Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 204/427] wifi: mt76: connac: use muar idx 0xe for non-mt799x as well Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 205/427] libbpf: Fix error message in attach_kprobe_multi Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 206/427] wifi: nl80211: Avoid address calculations via out of bounds array indexing Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 207/427] wifi: rtw89: wow: refine WoWLAN flows of HCI interrupts and low power mode Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 208/427] selftests: ktap_helpers: Make it POSIX-compliant Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 209/427] selftests: power_supply: " Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 210/427] selftests/binderfs: use the Makefiles rules, not Makes implicit rules Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 211/427] selftests/resctrl: fix clang build failure: use LOCAL_HDRS Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 212/427] selftests: default to host arch for LLVM builds Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 213/427] kunit: Fix kthread reference Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 214/427] kunit: unregister the device on error Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 215/427] kunit: bail out early in __kunit_test_suites_init() if there are no suites to test Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 216/427] selftests/bpf: Fix pointer arithmetic in test_xdp_do_redirect Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 217/427] HID: intel-ish-hid: ipc: Add check for pci_alloc_irq_vectors Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 218/427] scsi: bfa: Ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 219/427] scsi: qedf: " Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 220/427] scsi: qla2xxx: Fix debugfs output for fw_resource_count Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 221/427] gpio: nuvoton: Fix sgpio irq handle error Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 222/427] x86/numa: Fix SRAT lookup of CFMWS ranges with numa_fill_memblks() Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 223/427] wifi: mwl8k: initialize cmd->addr[] properly Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 224/427] HID: amd_sfh: Handle "no sensors" in PM operations Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 225/427] btrfs: set start on clone before calling copy_extent_buffer_full Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 226/427] usb: aqc111: stop lying about skb->truesize Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 227/427] net: usb: sr9700: " Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 228/427] m68k: Fix spinlock race in kernel thread creation Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 229/427] m68k: mac: Fix reboot hang on Mac IIci Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 230/427] m68k: Move ARCH_HAS_CPU_CACHE_ALIASING Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 231/427] selftests: Compile kselftest headers with -D_GNU_SOURCE Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 232/427] selftests/sgx: Include KHDR_INCLUDES in Makefile Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 233/427] dm-delay: fix workqueue delay_timer race Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 234/427] dm-delay: fix hung task introduced by kthread mode Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 235/427] dm-delay: fix max_delay calculations Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 236/427] ptp: ocp: fix DPLL functions Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 237/427] net: ipv6: fix wrong start position when receive hop-by-hop fragment Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 238/427] eth: sungem: remove .ndo_poll_controller to avoid deadlocks Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 239/427] selftests: net: add missing config for amt.sh Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 240/427] selftests: net: move amt to socat for better compatibility Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 241/427] net: ethernet: mediatek: split tx and rx fields in mtk_soc_data struct Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 242/427] net: ethernet: mediatek: use ADMAv1 instead of ADMAv2.0 on MT7981 and MT7986 Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 243/427] ice: Fix package download algorithm Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 244/427] net: ethernet: cortina: Locking fixes Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 245/427] af_unix: Fix data races in unix_release_sock/unix_stream_sendmsg Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 246/427] net: usb: smsc95xx: stop lying about skb->truesize Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 247/427] net: openvswitch: fix overwriting ct original tuple for ICMPv6 Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 248/427] ipv6: sr: add missing seg6_local_exit Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 249/427] ipv6: sr: fix incorrect unregister order Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 250/427] ipv6: sr: fix invalid unregister error path Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 251/427] net/mlx5e: Fix netif state handling Greg Kroah-Hartman
2024-05-27 18:54 ` [PATCH 6.9 252/427] net/mlx5: Fix peer devlink set for SF representor devlink port Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 253/427] net/mlx5: Reload only IB representors upon lag disable/enable Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 254/427] net/mlx5: Add a timeout to acquire the command queue semaphore Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 255/427] net/mlx5: Discard command completions in internal error Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 256/427] s390/bpf: Emit a barrier for BPF_FETCH instructions Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 257/427] riscv, bpf: make some atomic operations fully ordered Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 258/427] inet: fix inet_fill_ifaddr() flags truncation Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 259/427] ax25: Use kernel universal linked list to implement ax25_dev_list Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 260/427] ax25: Fix reference count leak issues of ax25_dev Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 261/427] ax25: Fix reference count leak issue of net_device Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 262/427] dpll: fix return value check for kmemdup Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 263/427] net: fec: remove .ndo_poll_controller to avoid deadlocks Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 264/427] mptcp: SO_KEEPALIVE: fix getsockopt support Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 265/427] mptcp: fix full TCP keep-alive support Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 266/427] net: stmmac: move the EST lock to struct stmmac_priv Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 267/427] net: micrel: Fix receiving the timestamp in the frame for lan8841 Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 268/427] Bluetooth: compute LE flow credits based on recvbuf space Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 269/427] Bluetooth: qca: Fix error code in qca_read_fw_build_info() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 270/427] Bluetooth: ISO: Make iso_get_sock_listen generic Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 271/427] Bluetooth: HCI: Remove HCI_AMP support Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 272/427] Bluetooth: hci_conn, hci_sync: Use __counted_by() to avoid -Wfamnae warnings Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 273/427] Bluetooth: hci_core: Fix not handling hdev->le_num_of_adv_sets=1 Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 274/427] drm/panel-edp: Add prepare_to_enable to 200ms for MNC207QS1-1 Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 275/427] drm/bridge: Fix improper bridge init order with pre_enable_prev_first Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 276/427] drm/ci: update device type for volteer devices Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 277/427] drm/nouveau/dp: Fix incorrect return code in r535_dp_aux_xfer() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 278/427] drm/omapdrm: Fix console by implementing fb_dirty Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 279/427] drm/omapdrm: Fix console with deferred ops Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 280/427] printk: Let no_printk() use _printk() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 281/427] dev_printk: Add and use dev_no_printk() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 282/427] drm/lcdif: Do not disable clocks on already suspended hardware Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 283/427] drm/panel: atna33xc20: Fix unbalanced regulator in the case HPD doesnt assert Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 284/427] drm/amd/display: Fix potential index out of bounds in color transformation function Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 285/427] drm/amd/display: Remove redundant condition in dcn35_calc_blocks_to_gate() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 286/427] ASoC: Intel: Disable route checks for Skylake boards Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 287/427] ASoC: Intel: avs: ssm4567: Do not ignore route checks Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 288/427] mtd: core: Report error if first mtd_otp_size() call fails in mtd_otp_nvmem_add() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 289/427] mtd: rawnand: hynix: fixed typo Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 290/427] drm/imagination: avoid -Woverflow warning Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 291/427] ASoC: mediatek: Assign dummy when codec not specified for a DAI link Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 292/427] drm/panel: ltk050h3146w: add MIPI_DSI_MODE_VIDEO to LTK050H3148W flags Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 293/427] drm/panel: ltk050h3146w: drop duplicate commands from LTK050H3148W init Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 294/427] fbdev: shmobile: fix snprintf truncation Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 295/427] ASoC: kirkwood: Fix potential NULL dereference Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 296/427] drm/meson: vclk: fix calculation of 59.94 fractional rates Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 297/427] drm/mediatek: Add 0 size check to mtk_drm_gem_obj Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 298/427] drm/mediatek: Init `ddp_comp` with devm_kcalloc() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 299/427] ASoC: SOF: Intel: hda-dai: fix channel map configuration for aggregated dailink Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 300/427] powerpc/fsl-soc: hide unused const variable Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 301/427] ASoC: SOF: Intel: mtl: Correct rom_status_reg Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 302/427] ASoC: SOF: Intel: lnl: " Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 303/427] ASoC: SOF: Intel: mtl: Disable interrupts when firmware boot failed Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 304/427] ASoC: SOF: Intel: mtl: Implement firmware boot state check Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 305/427] fbdev: sisfb: hide unused variables Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 306/427] selftests: cgroup: skip test_cgcore_lesser_ns_open when cgroup2 mounted without nsdelegate Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 307/427] ASoC: Intel: avs: Restore stream decoupling on prepare Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 308/427] ASoC: Intel: avs: Fix debug-slot offset calculation Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 309/427] ASoC: Intel: avs: Fix ASRC module initialization Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 310/427] ASoC: Intel: avs: Fix potential integer overflow Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 311/427] ASoC: Intel: avs: Test result of avs_get_module_entry() Greg Kroah-Hartman
2024-05-27 18:55 ` [PATCH 6.9 312/427] media: ngene: Add dvb_ca_en50221_init return value check Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 313/427] staging: media: starfive: Remove links when unregistering devices Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 314/427] media: rcar-vin: work around -Wenum-compare-conditional warning Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 315/427] media: radio-shark2: Avoid led_names truncations Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 316/427] drm: bridge: cdns-mhdp8546: Fix possible null pointer dereference Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 317/427] platform/x86: xiaomi-wmi: Fix race condition when reporting key events Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 318/427] drm/msm/dp: allow voltage swing / pre emphasis of 3 Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 319/427] drm/msm/dp: Avoid a long timeout for AUX transfer if nothing connected Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 320/427] drm/msm/dp: Account for the timeout in wait_hpd_asserted() callback Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 321/427] media: ipu3-cio2: Request IRQ earlier Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 322/427] media: dt-bindings: ovti,ov2680: Fix the power supply names Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 323/427] media: i2c: et8ek8: Dont strip remove function when driver is builtin Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 324/427] media: v4l2-subdev: Fix stream handling for crop API Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 325/427] fbdev: sh7760fb: allow modular build Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 326/427] media: atomisp: ssh_css: Fix a null-pointer dereference in load_video_binaries Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 327/427] drm/arm/malidp: fix a possible null pointer dereference Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 328/427] drm: vc4: Fix " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 329/427] ASoC: tracing: Export SND_SOC_DAPM_DIR_OUT to its value Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 330/427] drm/bridge: anx7625: Dont log an error when DSI host cant be found Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 331/427] drm/bridge: icn6211: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 332/427] drm/bridge: lt8912b: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 333/427] drm/bridge: lt9611: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 334/427] drm/bridge: lt9611uxc: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 335/427] drm/bridge: tc358775: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 336/427] drm/bridge: dpc3433: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 337/427] drm/panel: novatek-nt35950: " Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 338/427] drm/bridge: anx7625: Update audio status while detecting Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 339/427] drm/panel: simple: Add missing Innolux G121X1-L03 format, flags, connector Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 340/427] ALSA: hda: cs35l41: Remove Speaker ID for Lenovo Legion slim 7 16ARHA7 Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 341/427] drm/mipi-dsi: use correct return type for the DSC functions Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 342/427] media: uvcvideo: Add quirk for Logitech Rally Bar Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 343/427] drm/rockchip: vop2: Do not divide height twice for YUV Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 344/427] RISC-V: Fix the typo in Scountovf CSR name Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 345/427] drm/edid: Parse topology block for all DispID structure v1.x Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 346/427] media: cadence: csi2rx: configure DPHY before starting source stream Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 347/427] power: supply: core: simplify charge_behaviour formatting Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 348/427] clk: samsung: exynosautov9: fix wrong pll clock id value Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 349/427] RDMA/mlx5: Uncacheable mkey has neither rb_key or cache_ent Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 350/427] RDMA/mlx5: Change check for cacheable mkeys Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 351/427] RDMA/mlx5: Adding remote atomic access flag to updatable flags Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 352/427] clk: mediatek: pllfh: Dont log error for missing fhctl node Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 353/427] iommu: Undo pasid attachment only for the devices that have succeeded Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 354/427] RDMA/hns: Fix return value in hns_roce_map_mr_sg Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 355/427] RDMA/hns: Add max_ah and cq moderation capacities in query_device() Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 356/427] RDMA/hns: Fix deadlock on SRQ async events Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 357/427] RDMA/hns: Fix UAF for cq async event Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 358/427] RDMA/hns: Fix mismatch exception rollback Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 359/427] RDMA/hns: Fix GMV table pagesize Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 360/427] RDMA/hns: Use complete parentheses in macros Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 361/427] RDMA/hns: Modify the print level of CQE error Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 362/427] clk: mediatek: mt8365-mm: fix DPI0 parent Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 363/427] clk: rs9: fix wrong default value for clock amplitude Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 364/427] clk: qcom: clk-alpha-pll: remove invalid Stromer register offset Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 365/427] clk: samsung: gs101: propagate PERIC0 USI SPI clock rate Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 366/427] clk: samsung: gs101: propagate PERIC1 " Greg Kroah-Hartman
2024-05-27 18:56 ` Greg Kroah-Hartman [this message]
2024-05-27 18:56 ` [PATCH 6.9 368/427] RDMA/rxe: Allow good work requests to be executed Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 369/427] RDMA/rxe: Fix incorrect rxe_put in error path Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 370/427] IB/mlx5: Use __iowrite64_copy() for write combining stores Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 371/427] clk: renesas: r8a779a0: Fix CANFD parent clock Greg Kroah-Hartman
2024-05-27 18:56 ` [PATCH 6.9 372/427] clk: renesas: r9a07g043: Add clock and reset entry for PLIC Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 373/427] lib/test_hmm.c: handle src_pfns and dst_pfns allocation failure Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 374/427] mm/ksm: fix ksm exec support for prctl Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 375/427] clk: qcom: dispcc-sm8450: fix DisplayPort clocks Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 376/427] clk: qcom: dispcc-sm6350: " Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 377/427] clk: qcom: dispcc-sm8550: " Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 378/427] clk: qcom: dispcc-sm8650: " Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 379/427] clk: qcom: mmcc-msm8998: fix venus clock issue Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 380/427] x86/insn: Fix PUSH instruction in x86 instruction decoder opcode map Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 381/427] x86/insn: Add VEX versions of VPDPBUSD, VPDPBUSDS, VPDPWSSD and VPDPWSSDS Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 382/427] ext4: avoid excessive credit estimate in ext4_tmpfile() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 383/427] RDMA/mana_ib: Introduce helpers to create and destroy mana queues Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 384/427] RDMA/mana_ib: Use struct mana_ib_queue for CQs Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 385/427] RDMA/mana_ib: boundary check before installing cq callbacks Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 386/427] virt: acrn: stop using follow_pfn Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 387/427] drivers/virt/acrn: fix PFNMAP PTE checks in acrn_vm_ram_map() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 388/427] iommu/vt-d: Decouple igfx_off from graphic identity mapping Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 389/427] iommu/amd: Enable Guest Translation after reading IOMMU feature register Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 390/427] sunrpc: removed redundant procp check Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 391/427] nfsd: dont create nfsv4recoverydir in nfsdfs when not used Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 392/427] dax/bus.c: replace WARN_ON_ONCE() with lockdep asserts Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 393/427] dax/bus.c: fix locking for unregister_dax_dev / unregister_dax_mapping paths Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 394/427] dax/bus.c: dont use down_write_killable for non-user processes Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 395/427] dax/bus.c: use the right locking mode (read vs write) in size_show Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 396/427] ext4: fix potential unnitialized variable Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 397/427] ext4: remove the redundant folio_wait_stable() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 398/427] clk: qcom: Fix SC_CAMCC_8280XP dependencies Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 399/427] clk: qcom: Fix SM_GPUCC_8650 dependencies Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 400/427] clk: qcom: apss-ipq-pll: fix PLL rate for IPQ5018 Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 401/427] of: module: add buffer overflow check in of_modalias() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 402/427] bnxt_re: avoid shift undefined behavior in bnxt_qplib_alloc_init_hwq Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 403/427] SUNRPC: Fix gss_free_in_token_pages() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 404/427] selftests/damon/_damon_sysfs: check errors from nr_schemes file reads Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 405/427] selftests/kcmp: remove unused open mode Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 406/427] RDMA/IPoIB: Fix format truncation compilation errors Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 407/427] RDMA/cma: Fix kmemleak in rdma_core observed during blktests nvme/rdma use siw Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 408/427] samples/landlock: Fix incorrect free in populate_ruleset_net Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 409/427] tracing/user_events: Fix non-spaced field matching Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 410/427] modules: Drop the .export_symbol section from the final modules Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 411/427] net: bridge: xmit: make sure we have at least eth header len bytes Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 412/427] selftests: net: bridge: increase IGMP/MLD exclude timeout membership interval Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 413/427] net: bridge: mst: fix vlan use-after-free Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 414/427] libbpf: fix feature detectors when using token_fd Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 415/427] net: qrtr: ns: Fix module refcnt Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 416/427] selftests/net/lib: no need to record ns name if it already exist Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 417/427] idpf: dont skip over ethtool tcp-data-split setting Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 418/427] netrom: fix possible dead-lock in nr_rt_ioctl() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 419/427] af_packet: do not call packet_read_pending() from tpacket_destruct_skb() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 420/427] sched/fair: Allow disabling sched_balance_newidle with sched_relax_domain_level Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 421/427] sched/core: Fix incorrect initialization of the burst parameter in cpu_max_write() Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 422/427] net: wangxun: fix to change Rx features Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 423/427] net: wangxun: match VLAN CTAG and STAG features Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 424/427] net: txgbe: fix to control VLAN strip Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 425/427] l2tp: fix ICMP error handling for UDP-encap sockets Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 426/427] Revert "selftests: Compile kselftest headers with -D_GNU_SOURCE" Greg Kroah-Hartman
2024-05-27 18:57 ` [PATCH 6.9 427/427] Revert "selftests/sgx: Include KHDR_INCLUDES in Makefile" Greg Kroah-Hartman
2024-05-27 21:23 ` [PATCH 6.9 000/427] 6.9.3-rc1 review Pavel Machek
2024-05-28  8:28 ` Bagas Sanjaya
2024-05-28 12:14 ` Jon Hunter
2024-05-28 16:08 ` SeongJae Park
2024-05-28 18:20 ` Mark Brown
2024-05-28 19:33 ` Pascal Ernster
2024-05-28 21:25 ` Florian Fainelli
2024-05-28 21:52 ` Shuah Khan
2024-05-28 22:26 ` Ron Economos
2024-05-29  3:28 ` Naresh Kamboju

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=20240527185634.083917706@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jgg@nvidia.com \
    --cc=patches@lists.linux.dev \
    --cc=rpearsonhpe@gmail.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;
as well as URLs for NNTP newsgroup(s).