From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Yu Kuai <yukuai3@huawei.com>,
Song Liu <song@kernel.org>, Dan Moulding <dan@danm.net>,
Junxiao Bi <junxiao.bi@oracle.com>
Subject: [PATCH 5.15 362/402] md/raid5: fix deadlock that raid5d() wait for itself to clear MD_SB_CHANGE_PENDING
Date: Thu, 13 Jun 2024 13:35:19 +0200 [thread overview]
Message-ID: <20240613113316.259339950@linuxfoundation.org> (raw)
In-Reply-To: <20240613113302.116811394@linuxfoundation.org>
5.15-stable review patch. If anyone has any objections, please let me know.
------------------
From: Yu Kuai <yukuai3@huawei.com>
commit 151f66bb618d1fd0eeb84acb61b4a9fa5d8bb0fa upstream.
Xiao reported that lvm2 test lvconvert-raid-takeover.sh can hang with
small possibility, the root cause is exactly the same as commit
bed9e27baf52 ("Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d"")
However, Dan reported another hang after that, and junxiao investigated
the problem and found out that this is caused by plugged bio can't issue
from raid5d().
Current implementation in raid5d() has a weird dependence:
1) md_check_recovery() from raid5d() must hold 'reconfig_mutex' to clear
MD_SB_CHANGE_PENDING;
2) raid5d() handles IO in a deadloop, until all IO are issued;
3) IO from raid5d() must wait for MD_SB_CHANGE_PENDING to be cleared;
This behaviour is introduce before v2.6, and for consequence, if other
context hold 'reconfig_mutex', and md_check_recovery() can't update
super_block, then raid5d() will waste one cpu 100% by the deadloop, until
'reconfig_mutex' is released.
Refer to the implementation from raid1 and raid10, fix this problem by
skipping issue IO if MD_SB_CHANGE_PENDING is still set after
md_check_recovery(), daemon thread will be woken up when 'reconfig_mutex'
is released. Meanwhile, the hang problem will be fixed as well.
Fixes: 5e2cf333b7bd ("md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d")
Cc: stable@vger.kernel.org # v5.19+
Reported-and-tested-by: Dan Moulding <dan@danm.net>
Closes: https://lore.kernel.org/all/20240123005700.9302-1-dan@danm.net/
Investigated-by: Junxiao Bi <junxiao.bi@oracle.com>
Signed-off-by: Yu Kuai <yukuai3@huawei.com>
Link: https://lore.kernel.org/r/20240322081005.1112401-1-yukuai1@huaweicloud.com
Signed-off-by: Song Liu <song@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/md/raid5.c | 15 +++------------
1 file changed, 3 insertions(+), 12 deletions(-)
--- a/drivers/md/raid5.c
+++ b/drivers/md/raid5.c
@@ -36,7 +36,6 @@
*/
#include <linux/blkdev.h>
-#include <linux/delay.h>
#include <linux/kthread.h>
#include <linux/raid/pq.h>
#include <linux/async_tx.h>
@@ -6486,6 +6485,9 @@ static void raid5d(struct md_thread *thr
int batch_size, released;
unsigned int offset;
+ if (test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags))
+ break;
+
released = release_stripe_list(conf, conf->temp_inactive_list);
if (released)
clear_bit(R5_DID_ALLOC, &conf->cache_state);
@@ -6522,18 +6524,7 @@ static void raid5d(struct md_thread *thr
spin_unlock_irq(&conf->device_lock);
md_check_recovery(mddev);
spin_lock_irq(&conf->device_lock);
-
- /*
- * Waiting on MD_SB_CHANGE_PENDING below may deadlock
- * seeing md_check_recovery() is needed to clear
- * the flag when using mdmon.
- */
- continue;
}
-
- wait_event_lock_irq(mddev->sb_wait,
- !test_bit(MD_SB_CHANGE_PENDING, &mddev->sb_flags),
- conf->device_lock);
}
pr_debug("%d stripes handled\n", handled);
next prev parent reply other threads:[~2024-06-13 12:44 UTC|newest]
Thread overview: 416+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-13 11:29 [PATCH 5.15 000/402] 5.15.161-rc1 review Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 001/402] x86/tsc: Trust initial offset in architectural TSC-adjust MSRs Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 002/402] tty: n_gsm: fix possible out-of-bounds in gsm0_receive() Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 003/402] tty: n_gsm: fix missing receive state reset after mode switch Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 004/402] speakup: Fix sizeof() vs ARRAY_SIZE() bug Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 005/402] serial: 8250_bcm7271: use default_mux_rate if possible Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 006/402] Revert "r8169: dont try to disable interrupts if NAPI is, scheduled already" Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 007/402] r8169: Fix possible ring buffer corruption on fragmented Tx packets Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 008/402] ring-buffer: Fix a race between readers and resize checks Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 009/402] tools/latency-collector: Fix -Wformat-security compile warns Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 010/402] net: smc91x: Fix m68k kernel compilation for ColdFire CPU Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 011/402] nilfs2: fix unexpected freezing of nilfs_segctor_sync() Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 012/402] nilfs2: fix potential hang in nilfs_detach_log_writer() Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 013/402] fs/ntfs3: Remove max link count info display during driver init Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 014/402] fs/ntfs3: Taking DOS names into account during link counting Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 015/402] fs/ntfs3: Fix case when index is reused during tree transformation Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 016/402] fs/ntfs3: Break dir enumeration if directory contents error Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 017/402] ALSA: core: Fix NULL module pointer assignment at card init Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 018/402] ALSA: Fix deadlocks with kctl removals at disconnection Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 019/402] wifi: cfg80211: fix the order of arguments for trace events of the tx_rx_evt class Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 020/402] dt-bindings: rockchip: grf: Add missing type to pcie-phy node Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 021/402] net: usb: qmi_wwan: add Telit FN920C04 compositions Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 022/402] drm/amd/display: Set color_mgmt_changed to true on unsuspend Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 023/402] selftests: sud_test: return correct emulated syscall value on RISC-V Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 024/402] regulator: irq_helpers: duplicate IRQ name Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 025/402] ASoC: rt5645: Fix the electric noise due to the CBJ contacts floating Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 026/402] ASoC: dt-bindings: rt5645: add cbj sleeve gpio property Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 027/402] regulator: vqmmc-ipq4019: fix module autoloading Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 028/402] ASoC: rt715: add vendor clear control register Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 029/402] ASoC: rt715-sdca: volume step modification Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 030/402] softirq: Fix suspicious RCU usage in __do_softirq() Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 031/402] ASoC: da7219-aad: fix usage of device_get_named_child_node() Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 032/402] drm/amdkfd: Flush the process wq before creating a kfd_process Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 033/402] x86/mm: Remove broken vsyscall emulation code from the page fault code Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 034/402] nvme: find numa distance only if controller has valid numa id Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 035/402] epoll: be better about file lifetimes Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 036/402] openpromfs: finish conversion to the new mount API Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 037/402] crypto: bcm - Fix pointer arithmetic Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 038/402] mm/slub, kunit: Use inverted data to corrupt kmem cache Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 039/402] firmware: raspberrypi: Use correct device for DMA mappings Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 040/402] ecryptfs: Fix buffer size for tag 66 packet Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 041/402] nilfs2: fix out-of-range warning Greg Kroah-Hartman
2024-06-13 11:29 ` [PATCH 5.15 042/402] parisc: add missing export of __cmpxchg_u8() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 043/402] crypto: ccp - drop platform ifdef checks Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 044/402] crypto: x86/nh-avx2 - add missing vzeroupper Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 045/402] crypto: x86/sha256-avx2 " Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 046/402] crypto: x86/sha512-avx2 " Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 047/402] s390/cio: fix tracepoint subchannel type field Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 048/402] jffs2: prevent xattr node from overflowing the eraseblock Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 049/402] soc: mediatek: cmdq: Fix typo of CMDQ_JUMP_RELATIVE Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 050/402] null_blk: Fix missing mutex_destroy() at module removal Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 051/402] md: fix resync softlockup when bitmap size is less than array size Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 052/402] wifi: ath10k: poll service ready message before failing Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 053/402] x86/boot: Ignore relocations in .notes sections in walk_relocs() too Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 054/402] sched/fair: Add EAS checks before updating root_domain::overutilized Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 055/402] qed: avoid truncating work queue length Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 056/402] bpf: Pack struct bpf_fib_lookup Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 057/402] scsi: ufs: qcom: Perform read back after writing reset bit Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 058/402] scsi: ufs: qcom: Perform read back after writing REG_UFS_SYS1CLK_1US Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 059/402] scsi: ufs: ufs-qcom: Fix the Qcom register name for offset 0xD0 Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 060/402] scsi: ufs: ufs-qcom: Clear qunipro_g4_sel for HW version major 5 Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 061/402] scsi: ufs: qcom: Perform read back after writing unipro mode Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 062/402] scsi: ufs: qcom: Perform read back after writing CGC enable Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 063/402] scsi: ufs: cdns-pltfrm: Perform read back after writing HCLKDIV Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 064/402] scsi: ufs: core: Perform read back after disabling interrupts Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 065/402] scsi: ufs: core: Perform read back after disabling UIC_COMMAND_COMPL Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 066/402] irqchip/alpine-msi: Fix off-by-one in allocation error path Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 067/402] irqchip/loongson-pch-msi: Fix off-by-one on " Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 068/402] ACPI: disable -Wstringop-truncation Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 069/402] gfs2: Dont forget to complete delayed withdraw Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 070/402] gfs2: Fix "ignore unlock failures after withdraw" Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 071/402] selftests/bpf: Fix umount cgroup2 error in test_sockmap Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 072/402] cpufreq: Reorganize checks in cpufreq_offline() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 073/402] cpufreq: Split cpufreq_offline() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 074/402] cpufreq: Rearrange locking in cpufreq_remove_dev() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 075/402] cpufreq: exit() callback is optional Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 076/402] net: export inet_lookup_reuseport and inet6_lookup_reuseport Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 077/402] net: remove duplicate reuseport_lookup functions Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 078/402] udp: Avoid call to compute_score on multiple sites Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 079/402] cppc_cpufreq: Fix possible null pointer dereference Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 080/402] scsi: libsas: Fix the failure of adding phy with zero-address to port Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 081/402] scsi: hpsa: Fix allocation size for Scsi_Host private data Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 082/402] x86/purgatory: Switch to the position-independent small code model Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 083/402] thermal/drivers/tsens: Fix null pointer dereference Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 084/402] wifi: ath10k: Fix an error code problem in ath10k_dbg_sta_write_peer_debug_trigger() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 085/402] wifi: ath10k: populate board data for WCN3990 Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 086/402] net: dsa: mv88e6xxx: Add support for model-specific pre- and post-reset handlers Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 087/402] net: dsa: mv88e6xxx: Avoid EEPROM timeout without EEPROM on 88E6250-family switches Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 088/402] tcp: avoid premature drops in tcp_add_backlog() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 089/402] pwm: sti: Convert to platform remove callback returning void Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 090/402] pwm: sti: Prepare removing pwm_chip from driver data Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 091/402] pwm: sti: Simplify probe function using devm functions Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 092/402] net: give more chances to rcu in netdev_wait_allrefs_any() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 093/402] macintosh/via-macii: Fix "BUG: sleeping function called from invalid context" Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 094/402] wifi: carl9170: add a proper sanity check for endpoints Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 095/402] wifi: ar5523: enable proper endpoint verification Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 096/402] sh: kprobes: Merge arch_copy_kprobe() into arch_prepare_kprobe() Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 097/402] Revert "sh: Handle calling csum_partial with misaligned data" Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 098/402] selftests/binderfs: use the Makefiles rules, not Makes implicit rules Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 099/402] selftests/resctrl: fix clang build failure: use LOCAL_HDRS Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 100/402] HID: intel-ish-hid: ipc: Add check for pci_alloc_irq_vectors Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 101/402] scsi: bfa: Ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-06-13 11:30 ` [PATCH 5.15 102/402] scsi: qedf: " Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 103/402] scsi: qla2xxx: Fix debugfs output for fw_resource_count Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 104/402] wifi: mwl8k: initialize cmd->addr[] properly Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 105/402] usb: aqc111: stop lying about skb->truesize Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 106/402] net: usb: sr9700: " Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 107/402] m68k: Fix spinlock race in kernel thread creation Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 108/402] m68k: mac: Fix reboot hang on Mac IIci Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 109/402] net: ipv6: fix wrong start position when receive hop-by-hop fragment Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 110/402] eth: sungem: remove .ndo_poll_controller to avoid deadlocks Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 111/402] net: ethernet: cortina: Locking fixes Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 112/402] af_unix: Fix data races in unix_release_sock/unix_stream_sendmsg Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 113/402] net: usb: smsc95xx: stop lying about skb->truesize Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 114/402] net: openvswitch: fix overwriting ct original tuple for ICMPv6 Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 115/402] ipv6: sr: add missing seg6_local_exit Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 116/402] ipv6: sr: fix incorrect unregister order Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 117/402] ipv6: sr: fix invalid unregister error path Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 118/402] net/mlx5: Discard command completions in internal error Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 119/402] s390/bpf: Emit a barrier for BPF_FETCH instructions Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 120/402] mptcp: SO_KEEPALIVE: fix getsockopt support Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 121/402] printk: Let no_printk() use _printk() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 122/402] dev_printk: Add and use dev_no_printk() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 123/402] drm/amd/display: Fix potential index out of bounds in color transformation function Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 124/402] ASoC: Intel: Disable route checks for Skylake boards Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 125/402] mtd: core: Report error if first mtd_otp_size() call fails in mtd_otp_nvmem_add() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 126/402] mtd: rawnand: hynix: fixed typo Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 127/402] fbdev: shmobile: fix snprintf truncation Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 128/402] ASoC: kirkwood: Fix potential NULL dereference Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 129/402] drm/meson: vclk: fix calculation of 59.94 fractional rates Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 130/402] drm/mediatek: Add 0 size check to mtk_drm_gem_obj Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 131/402] powerpc/fsl-soc: hide unused const variable Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 132/402] fbdev: sisfb: hide unused variables Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 133/402] media: ngene: Add dvb_ca_en50221_init return value check Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 134/402] media: radio-shark2: Avoid led_names truncations Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 135/402] drm: bridge: cdns-mhdp8546: Fix possible null pointer dereference Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 136/402] media: ipu3-cio2: Use temporary storage for struct device pointer Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 137/402] media: ipu3-cio2: Request IRQ earlier Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 138/402] media: dt-bindings: ovti,ov2680: Fix the power supply names Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 139/402] fbdev: sh7760fb: allow modular build Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 140/402] media: atomisp: ssh_css: Fix a null-pointer dereference in load_video_binaries Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 141/402] drm/arm/malidp: fix a possible null pointer dereference Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 142/402] drm: vc4: Fix " Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 143/402] ASoC: tracing: Export SND_SOC_DAPM_DIR_OUT to its value Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 144/402] drm/bridge: lt8912b: Dont log an error when DSI host cant be found Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 145/402] drm/bridge: lt9611: " Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 146/402] drm/bridge: tc358775: " Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 147/402] drm/panel: simple: Add missing Innolux G121X1-L03 format, flags, connector Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 148/402] drm/mipi-dsi: use correct return type for the DSC functions Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 149/402] RDMA/mlx5: Adding remote atomic access flag to updatable flags Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 150/402] RDMA/hns: Fix return value in hns_roce_map_mr_sg Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 151/402] RDMA/hns: Fix deadlock on SRQ async events Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 152/402] RDMA/hns: Fix GMV table pagesize Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 153/402] RDMA/hns: Use complete parentheses in macros Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 154/402] RDMA/hns: Modify the print level of CQE error Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 155/402] clk: qcom: mmcc-msm8998: fix venus clock issue Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 156/402] x86/insn: Fix PUSH instruction in x86 instruction decoder opcode map Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 157/402] ext4: avoid excessive credit estimate in ext4_tmpfile() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 158/402] virt: acrn: Prefer array_size and struct_size over open coded arithmetic Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 159/402] virt: acrn: stop using follow_pfn Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 160/402] drivers/virt/acrn: fix PFNMAP PTE checks in acrn_vm_ram_map() Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 161/402] sunrpc: removed redundant procp check Greg Kroah-Hartman
2024-06-13 11:31 ` [PATCH 5.15 162/402] ext4: simplify calculation of blkoff in ext4_mb_new_blocks_simple Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 163/402] ext4: fix unit mismatch " Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 164/402] ext4: try all groups " Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 165/402] ext4: remove unused parameter from ext4_mb_new_blocks_simple() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 166/402] ext4: fix potential unnitialized variable Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 167/402] SUNRPC: Fix gss_free_in_token_pages() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 168/402] selftests/kcmp: Make the test output consistent and clear Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 169/402] selftests/kcmp: remove unused open mode Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 170/402] RDMA/IPoIB: Fix format truncation compilation errors Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 171/402] selftests: net: bridge: increase IGMP/MLD exclude timeout membership interval Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 172/402] net: qrtr: ns: Fix module refcnt Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 173/402] netrom: fix possible dead-lock in nr_rt_ioctl() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 174/402] af_packet: do not call packet_read_pending() from tpacket_destruct_skb() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 175/402] sched/fair: Allow disabling sched_balance_newidle with sched_relax_domain_level Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 176/402] sched/core: Fix incorrect initialization of the burst parameter in cpu_max_write() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 177/402] perf record: Delete session after stopping sideband thread Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 178/402] perf probe: Add missing libgen.h header needed for using basename() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 179/402] greybus: lights: check return of get_channel_from_mode Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 180/402] f2fs: Delete f2fs_copy_page() and replace with memcpy_page() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 181/402] f2fs: fix to wait on page writeback in __clone_blkaddrs() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 182/402] perf annotate: Get rid of duplicate --group option item Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 183/402] soundwire: cadence: fix invalid PDI offset Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 184/402] dmaengine: idma64: Add check for dma_set_max_seg_size Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 185/402] firmware: dmi-id: add a release callback function Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 186/402] serial: max3100: Lock port->lock when calling uart_handle_cts_change() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 187/402] serial: max3100: Update uart_driver_registered on driver removal Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 188/402] serial: max3100: Fix bitwise types Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 189/402] greybus: arche-ctrl: move device table to its right location Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 190/402] PCI: tegra194: Fix probe path for Endpoint mode Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 191/402] serial: sc16is7xx: add proper sched.h include for sched_set_fifo() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 192/402] dt-bindings: PCI: rcar-pci-host: Add optional regulators Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 193/402] dt-bindings: PCI: rcar-pci-host: Add missing IOMMU properties Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 194/402] f2fs: compress: fix to relocate check condition in f2fs_{release,reserve}_compress_blocks() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 195/402] f2fs: convert to use sbi directly Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 196/402] f2fs: compress: fix to relocate check condition in f2fs_ioc_{,de}compress_file() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 197/402] f2fs: do not allow partial truncation on pinned file Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 198/402] f2fs: fix typos in comments Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 199/402] f2fs: fix to relocate check condition in f2fs_fallocate() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 200/402] f2fs: fix to check pinfile flag in f2fs_move_file_range() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 201/402] coresight: etm4x: Fix unbalanced pm_runtime_enable() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 202/402] perf docs: Document bpf event modifier Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 203/402] iio: pressure: dps310: support negative temperature values Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 204/402] coresight: etm4x: Do not hardcode IOMEM access for register restore Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 205/402] coresight: etm4x: Do not save/restore Data trace control registers Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 206/402] coresight: no-op refactor to make INSTP0 check more idiomatic Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 207/402] coresight: etm4x: Cleanup TRCIDR0 register accesses Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 208/402] coresight: etm4x: Safe access for TRCQCLTR Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 209/402] coresight: etm4x: Fix access to resource selector registers Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 210/402] fpga: region: Use standard dev_release for class driver Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 211/402] fpga: region: add owner module and take its refcount Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 212/402] microblaze: Remove gcc flag for non existing early_printk.c file Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 213/402] microblaze: Remove early printk call from cpuinfo-static.c Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 214/402] perf intel-pt: Fix unassigned instruction op (discovered by MemorySanitizer) Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 215/402] ovl: remove upper umask handling from ovl_create_upper() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 216/402] dt-bindings: pinctrl: mediatek: mt7622: fix array properties Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 217/402] watchdog: bd9576_wdt: switch to using devm_fwnode_gpiod_get() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 218/402] watchdog: bd9576: Drop "always-running" property Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 219/402] usb: gadget: u_audio: Clear uac pointer when freed Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 220/402] stm class: Fix a double free in stm_register_device() Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 221/402] ppdev: Remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-06-13 11:32 ` [PATCH 5.15 222/402] ppdev: Add an error check in register_device Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 223/402] perf bench internals inject-build-id: Fix trap divide when collecting just one DSO Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 224/402] perf top: Fix TUI exit screen refresh race condition Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 225/402] perf ui: Update use of pthread mutex Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 226/402] perf ui browser: Dont save pointer to stack memory Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 227/402] extcon: max8997: select IRQ_DOMAIN instead of depending on it Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 228/402] PCI/EDR: Align EDR_PORT_DPC_ENABLE_DSM with PCI Firmware r3.3 Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 229/402] PCI/EDR: Align EDR_PORT_LOCATE_DSM " Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 230/402] perf ui browser: Avoid SEGV on title Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 231/402] perf report: Avoid SEGV in report__setup_sample_type() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 232/402] f2fs: compress: fix to cover {reserve,release}_compress_blocks() w/ cp_rwsem lock Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 233/402] 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.15 234/402] f2fs: compress: dont allow unaligned truncation on released compress inode Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 235/402] serial: sh-sci: protect invalidating RXDMA on shutdown Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 236/402] libsubcmd: Fix parse-options memory leak Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 237/402] perf daemon: Fix file leak in daemon_session__control Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 238/402] perf stat: Dont display metric header for non-leader uncore events Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 239/402] s390/vdso: filter out mno-pic-data-is-text-relative cflag Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 240/402] s390/vdso64: filter out munaligned-symbols flag for vdso Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 241/402] s390/vdso: Generate unwind information for C modules Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 242/402] s390/vdso: Use standard stack frame layout Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 243/402] s390/ipl: Fix incorrect initialization of len fields in nvme reipl block Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 244/402] s390/ipl: Fix incorrect initialization of nvme dump block Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 245/402] s390/boot: Remove alt_stfle_fac_list from decompressor Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 246/402] Input: ims-pcu - fix printf string overflow Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 247/402] Input: ioc3kbd - convert to platform remove callback returning void Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 248/402] Input: ioc3kbd - add device table Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 249/402] mmc: sdhci_am654: Add tuning algorithm for delay chain Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 250/402] mmc: sdhci_am654: Write ITAPDLY for DDR52 timing Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 251/402] mmc: sdhci_am654: Drop lookup for deprecated ti,otap-del-sel Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 252/402] mmc: sdhci_am654: Add OTAP/ITAP delay enable Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 253/402] mmc: sdhci_am654: Add ITAPDLYSEL in sdhci_j721e_4bit_set_clock Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 254/402] mmc: sdhci_am654: Fix ITAPDLY for HS400 timing Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 255/402] Input: pm8xxx-vibrator - correct VIB_MAX_LEVELS calculation Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 256/402] drm/msm/dsi: Print dual-DSI-adjusted pclk instead of original mode pclk Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 257/402] drm/msm/dpu: Always flush the slave INTF on the CTL Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 258/402] um: Fix return value in ubd_init() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 259/402] um: Add winch to winch_handlers before registering winch IRQ Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 260/402] um: vector: fix bpfflash parameter evaluation Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 261/402] fs/ntfs3: Use 64 bit variable to avoid 32 bit overflow Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 262/402] fs/ntfs3: Use variable length array instead of fixed size Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 263/402] drm/bridge: tc358775: fix support for jeida-18 and jeida-24 Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 264/402] media: stk1160: fix bounds checking in stk1160_copy_video() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 265/402] scsi: qla2xxx: Replace all non-returning strlcpy() with strscpy() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 266/402] Input: cyapa - add missing input core locking to suspend/resume functions Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 267/402] media: flexcop-usb: clean up endpoint sanity checks Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 268/402] media: flexcop-usb: fix sanity check of bNumEndpoints Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 269/402] powerpc/pseries: Add failure related checks for h_get_mpp and h_get_ppp Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 270/402] um: Fix the -Wmissing-prototypes warning for __switch_mm Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 271/402] media: cec: cec-adap: always cancel work in cec_transmit_msg_fh Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 272/402] media: cec: cec-api: add locking in cec_release() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 273/402] media: cec: call enable_adap on s_log_addrs Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 274/402] media: cec: abort if the current transmit was canceled Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 275/402] media: cec: correctly pass on reply results Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 276/402] media: cec: use call_op and check for !unregistered Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 277/402] media: cec-adap.c: drop activate_cnt, use state info instead Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 278/402] media: cec: core: avoid recursive cec_claim_log_addrs Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 279/402] media: cec: core: avoid confusing "transmit timed out" message Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 280/402] null_blk: Fix the WARNING: modpost: missing MODULE_DESCRIPTION() Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 281/402] ASoC: mediatek: mt8192: fix register configuration for tdm Greg Kroah-Hartman
2024-06-13 11:33 ` [PATCH 5.15 282/402] regulator: bd71828: Dont overwrite runtime voltages Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 283/402] x86/kconfig: Select ARCH_WANT_FRAME_POINTERS again when UNWINDER_FRAME_POINTER=y Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 284/402] net: Always descend into dsa/ folder with CONFIG_NET_DSA enabled Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 285/402] ipv6: sr: fix missing sk_buff release in seg6_input_core Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 286/402] nfc: nci: Fix uninit-value in nci_rx_work Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 287/402] ASoC: tas2552: Add TX path for capturing AUDIO-OUT data Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 288/402] NFSv4: Fixup smatch warning for ambiguous return Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 289/402] sunrpc: fix NFSACL RPC retry on soft mount Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 290/402] rpcrdma: fix handling for RDMA_CM_EVENT_DEVICE_REMOVAL Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 291/402] af_unix: Update unix_sk(sk)->oob_skb under sk_receive_queue lock Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 292/402] ipv6: sr: fix memleak in seg6_hmac_init_algo Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 293/402] tcp: Fix shift-out-of-bounds in dctcp_update_alpha() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 294/402] openvswitch: Set the skbuff pkt_type for proper pmtud support Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 295/402] arm64: asm-bug: Add .align 2 to the end of __BUG_ENTRY Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 296/402] virtio: delete vq in vp_find_vqs_msix() when request_irq() fails Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 297/402] riscv: stacktrace: Make walk_stackframe cross pt_regs frame Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 298/402] riscv: stacktrace: fixed walk_stackframe() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 299/402] net: fec: avoid lock evasion when reading pps_enable Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 300/402] tls: fix missing memory barrier in tls_init Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 301/402] nfc: nci: Fix kcov check in nci_rx_work() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 302/402] nfc: nci: Fix handling of zero-length payload packets " Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 303/402] ice: Interpret .set_channels() input differently Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 304/402] netfilter: nfnetlink_queue: acquire rcu_read_lock() in instance_destroy_rcu() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 305/402] netfilter: nft_payload: restore vlan q-in-q match support Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 306/402] spi: Dont mark message DMA mapped when no transfer in it is Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 307/402] dma-mapping: benchmark: fix node id validation Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 308/402] dma-mapping: benchmark: handle NUMA_NO_NODE correctly Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 309/402] nvmet: fix ns enable/disable possible hang Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 310/402] net: phy: micrel: set soft_reset callback to genphy_soft_reset for KSZ8061 Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 311/402] net/mlx5e: Fix IPsec tunnel mode offload feature check Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 312/402] net/mlx5e: Use rx_missed_errors instead of rx_dropped for reporting buffer exhaustion Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 313/402] dma-buf/sw-sync: dont enable IRQ from sync_print_obj() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 314/402] bpf: Fix potential integer overflow in resolve_btfids Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 315/402] enic: Validate length of nl attributes in enic_set_vf_port Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 316/402] net: usb: smsc95xx: fix changing LED_SEL bit value updated from EEPROM Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 317/402] bpf: Allow delete from sockmap/sockhash only if update is allowed Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 318/402] net:fec: Add fec_enet_deinit() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 319/402] netfilter: nft_payload: move struct nft_payload_set definition where it belongs Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 320/402] netfilter: nft_payload: rebuild vlan header when needed Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 321/402] netfilter: nft_payload: rebuild vlan header on h_proto access Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 322/402] netfilter: nft_payload: skbuff vlan metadata mangle support Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 323/402] netfilter: tproxy: bail out if IP has been disabled on the device Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 324/402] kconfig: fix comparison to constant symbols, m, n Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 325/402] spi: stm32: Dont warn about spurious interrupts Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 326/402] net: ena: Add capabilities field with support for ENI stats capability Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 327/402] net: ena: Extract recurring driver reset code into a function Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 328/402] net: ena: Do not waste napi skb cache Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 329/402] net: ena: Add dynamic recycling mechanism for rx buffers Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 330/402] net: ena: Reduce lines with longer column width boundary Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 331/402] net: ena: Fix redundant device NUMA node override Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 332/402] ipvlan: Dont Use skb->sk in ipvlan_process_v{4,6}_outbound Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 333/402] hwmon: (shtc1) Fix property misspelling Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 334/402] ALSA: timer: Set lower bound of start tick time Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 335/402] KVM: x86: Dont advertise guest.MAXPHYADDR as host.MAXPHYADDR in CPUID Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 336/402] genirq/cpuhotplug, x86/vector: Prevent vector leak during CPU offline Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 337/402] net: ena: Fix DMA syncing in XDP path when SWIOTLB is on Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 338/402] media: cec: core: add adap_nb_transmit_canceled() callback Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 339/402] SUNRPC: Fix loop termination condition in gss_free_in_token_pages() Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 340/402] drm: Check output polling initialized before disabling Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 341/402] drm: Check polling initialized before enabling in drm_helper_probe_single_connector_modes Greg Kroah-Hartman
2024-06-13 11:34 ` [PATCH 5.15 342/402] mmc: core: Do not force a retune before RPMB switch Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 343/402] io_uring: fail NOP if non-zero op flags is passed in Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 344/402] afs: Dont cross .backup mountpoint from backup volume Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 345/402] nilfs2: fix use-after-free of timer for log writer thread Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 346/402] Revert "drm/amdgpu: init iommu after amdkfd device init" Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 347/402] mptcp: fix full TCP keep-alive support Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 348/402] vxlan: Fix regression when dropping packets due to invalid src addresses Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 349/402] net: dsa: sja1105: always enable the INCL_SRCPT option Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 350/402] net: dsa: tag_sja1105: always prefer source port information from INCL_SRCPT Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 351/402] scripts/gdb: fix SB_* constants parsing Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 352/402] sunrpc: exclude from freezer when waiting for requests: Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 353/402] f2fs: fix to do sanity check on i_xattr_nid in sanity_check_inode() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 354/402] media: lgdt3306a: Add a check against null-pointer-def Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 355/402] drm/amdgpu: add error handle to avoid out-of-bounds Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 356/402] ata: pata_legacy: make legacy_exit() work again Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 357/402] thermal/drivers/qcom/lmh: Check for SCM availability at probe Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 358/402] soc: qcom: rpmh-rsc: Enhance check for VRM in-flight request Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 359/402] ACPI: resource: Do IRQ override on TongFang GXxHRXx and GMxHGxx Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 360/402] arm64: tegra: Correct Tegra132 I2C alias Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 361/402] arm64: dts: qcom: qcs404: fix bluetooth device address Greg Kroah-Hartman
2024-06-13 11:35 ` Greg Kroah-Hartman [this message]
2024-06-13 11:35 ` [PATCH 5.15 363/402] wifi: rtl8xxxu: Fix the TX power of RTL8192CU, RTL8723AU Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 364/402] wifi: rtlwifi: rtl8192de: Fix low speed with WPA3-SAE Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 365/402] wifi: rtlwifi: rtl8192de: Fix endianness issue in RX path Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 366/402] arm64: dts: hi3798cv200: fix the size of GICR Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 367/402] media: mc: mark the media devnode as registered from the, start Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 368/402] media: mxl5xx: Move xpt structures off stack Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 369/402] media: v4l2-core: hold videodev_lock until dev reg, finishes Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 370/402] mmc: core: Add mmc_gpiod_set_cd_config() function Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 371/402] mmc: sdhci-acpi: Sort DMI quirks alphabetically Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 372/402] mmc: sdhci-acpi: Fix Lenovo Yoga Tablet 2 Pro 1380 sdcard slot not working Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 373/402] mmc: sdhci-acpi: Disable write protect detection on Toshiba WT10-A Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 374/402] fbdev: savage: Handle err return when savagefb_check_var failed Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 375/402] drm/amdgpu/atomfirmware: add intergrated info v2.3 table Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 376/402] KVM: arm64: Fix AArch32 register narrowing on userspace write Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 377/402] KVM: arm64: Allow AArch32 PSTATE.M to be restored as System mode Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 378/402] crypto: ecdsa - Fix module auto-load on add-key Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 379/402] crypto: ecrdsa - Fix module auto-load on add_key Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 380/402] crypto: qat - Fix ADF_DEV_RESET_SYNC memory leak Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 381/402] net/ipv6: Fix route deleting failure when metric equals 0 Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 382/402] net/9p: fix uninit-value in p9_client_rpc() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 383/402] intel_th: pci: Add Meteor Lake-S CPU support Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 384/402] sparc64: Fix number of online CPUs Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 385/402] watchdog: rti_wdt: Set min_hw_heartbeat_ms to accommodate a safety margin Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 386/402] kdb: Fix buffer overflow during tab-complete Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 387/402] kdb: Use format-strings rather than \0 injection in kdb_read() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 388/402] kdb: Fix console handling when editing and tab-completing commands Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 389/402] kdb: Merge identical case statements in kdb_read() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 390/402] kdb: Use format-specifiers rather than memset() for padding " Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 391/402] net: fix __dst_negative_advice() race Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 392/402] sparc: move struct termio to asm/termios.h Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 393/402] ext4: set type of ac_groups_linear_remaining to __u32 to avoid overflow Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 394/402] ext4: fix mb_cache_entrys e_refcnt leak in ext4_xattr_block_cache_find() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 395/402] s390/ap: Fix crash in AP internal function modify_bitmap() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 396/402] s390/cpacf: Split and rework cpacf query functions Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 397/402] s390/cpacf: Make use of invalid opcode produce a link error Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 398/402] i3c: master: svc: fix invalidate IBI type and miss call client IBI handler Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 399/402] EDAC/igen6: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 400/402] nfs: fix undefined behavior in nfs_block_bits() Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 401/402] NFS: Fix READ_PLUS when server doesnt support OP_READ_PLUS Greg Kroah-Hartman
2024-06-13 11:35 ` [PATCH 5.15 402/402] scsi: ufs: ufs-qcom: Clear qunipro_g4_sel for HW major version > 5 Greg Kroah-Hartman
2024-06-13 16:48 ` [PATCH 5.15 000/402] 5.15.161-rc1 review SeongJae Park
2024-06-14 8:40 ` Harshit Mogalapalli
2024-06-15 11:05 ` Greg Kroah-Hartman
2024-06-15 18:09 ` Vegard Nossum
2024-06-16 12:55 ` Florian Fainelli
2024-06-14 12:19 ` Ron Economos
2024-06-14 14:15 ` Mark Brown
2024-06-14 17:03 ` Jon Hunter
2024-06-15 2:10 ` Shuah Khan
2024-06-15 6:46 ` Naresh Kamboju
2024-06-16 12:56 ` Florian Fainelli
2024-06-16 14:28 ` Greg Kroah-Hartman
2024-06-17 6:12 ` Harshit Mogalapalli
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=20240613113316.259339950@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=dan@danm.net \
--cc=junxiao.bi@oracle.com \
--cc=patches@lists.linux.dev \
--cc=song@kernel.org \
--cc=stable@vger.kernel.org \
--cc=yukuai3@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox