Linux kernel -stable discussions
 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, Luca Czesla <luca.czesla@mail.schwarz>,
	Felix Huettner <felix.huettner@mail.schwarz>,
	Eric Dumazet <edumazet@google.com>,
	Simon Horman <simon.horman@corigine.com>,
	Jakub Kicinski <kuba@kernel.org>,
	Carlos Soto <carlos.soto@broadcom.com>,
	Florian Fainelli <florian.fainelli@broadcom.com>
Subject: [PATCH 5.4 120/179] net: openvswitch: fix race on port output
Date: Tue, 29 Apr 2025 18:41:01 +0200	[thread overview]
Message-ID: <20250429161054.257424512@linuxfoundation.org> (raw)
In-Reply-To: <20250429161049.383278312@linuxfoundation.org>

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

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

From: Felix Huettner <felix.huettner@mail.schwarz>

commit 066b86787fa3d97b7aefb5ac0a99a22dad2d15f8 upstream.

assume the following setup on a single machine:
1. An openvswitch instance with one bridge and default flows
2. two network namespaces "server" and "client"
3. two ovs interfaces "server" and "client" on the bridge
4. for each ovs interface a veth pair with a matching name and 32 rx and
   tx queues
5. move the ends of the veth pairs to the respective network namespaces
6. assign ip addresses to each of the veth ends in the namespaces (needs
   to be the same subnet)
7. start some http server on the server network namespace
8. test if a client in the client namespace can reach the http server

when following the actions below the host has a chance of getting a cpu
stuck in a infinite loop:
1. send a large amount of parallel requests to the http server (around
   3000 curls should work)
2. in parallel delete the network namespace (do not delete interfaces or
   stop the server, just kill the namespace)

there is a low chance that this will cause the below kernel cpu stuck
message. If this does not happen just retry.
Below there is also the output of bpftrace for the functions mentioned
in the output.

The series of events happening here is:
1. the network namespace is deleted calling
   `unregister_netdevice_many_notify` somewhere in the process
2. this sets first `NETREG_UNREGISTERING` on both ends of the veth and
   then runs `synchronize_net`
3. it then calls `call_netdevice_notifiers` with `NETDEV_UNREGISTER`
4. this is then handled by `dp_device_event` which calls
   `ovs_netdev_detach_dev` (if a vport is found, which is the case for
   the veth interface attached to ovs)
5. this removes the rx_handlers of the device but does not prevent
   packages to be sent to the device
6. `dp_device_event` then queues the vport deletion to work in
   background as a ovs_lock is needed that we do not hold in the
   unregistration path
7. `unregister_netdevice_many_notify` continues to call
   `netdev_unregister_kobject` which sets `real_num_tx_queues` to 0
8. port deletion continues (but details are not relevant for this issue)
9. at some future point the background task deletes the vport

If after 7. but before 9. a packet is send to the ovs vport (which is
not deleted at this point in time) which forwards it to the
`dev_queue_xmit` flow even though the device is unregistering.
In `skb_tx_hash` (which is called in the `dev_queue_xmit`) path there is
a while loop (if the packet has a rx_queue recorded) that is infinite if
`dev->real_num_tx_queues` is zero.

To prevent this from happening we update `do_output` to handle devices
without carrier the same as if the device is not found (which would
be the code path after 9. is done).

Additionally we now produce a warning in `skb_tx_hash` if we will hit
the infinite loop.

bpftrace (first word is function name):

__dev_queue_xmit server: real_num_tx_queues: 1, cpu: 2, pid: 28024, tid: 28024, skb_addr: 0xffff9edb6f207000, reg_state: 1
netdev_core_pick_tx server: addr: 0xffff9f0a46d4a000 real_num_tx_queues: 1, cpu: 2, pid: 28024, tid: 28024, skb_addr: 0xffff9edb6f207000, reg_state: 1
dp_device_event server: real_num_tx_queues: 1 cpu 9, pid: 21024, tid: 21024, event 2, reg_state: 1
synchronize_rcu_expedited: cpu 9, pid: 21024, tid: 21024
synchronize_rcu_expedited: cpu 9, pid: 21024, tid: 21024
synchronize_rcu_expedited: cpu 9, pid: 21024, tid: 21024
synchronize_rcu_expedited: cpu 9, pid: 21024, tid: 21024
dp_device_event server: real_num_tx_queues: 1 cpu 9, pid: 21024, tid: 21024, event 6, reg_state: 2
ovs_netdev_detach_dev server: real_num_tx_queues: 1 cpu 9, pid: 21024, tid: 21024, reg_state: 2
netdev_rx_handler_unregister server: real_num_tx_queues: 1, cpu: 9, pid: 21024, tid: 21024, reg_state: 2
synchronize_rcu_expedited: cpu 9, pid: 21024, tid: 21024
netdev_rx_handler_unregister ret server: real_num_tx_queues: 1, cpu: 9, pid: 21024, tid: 21024, reg_state: 2
dp_device_event server: real_num_tx_queues: 1 cpu 9, pid: 21024, tid: 21024, event 27, reg_state: 2
dp_device_event server: real_num_tx_queues: 1 cpu 9, pid: 21024, tid: 21024, event 22, reg_state: 2
dp_device_event server: real_num_tx_queues: 1 cpu 9, pid: 21024, tid: 21024, event 18, reg_state: 2
netdev_unregister_kobject: real_num_tx_queues: 1, cpu: 9, pid: 21024, tid: 21024
synchronize_rcu_expedited: cpu 9, pid: 21024, tid: 21024
ovs_vport_send server: real_num_tx_queues: 0, cpu: 2, pid: 28024, tid: 28024, skb_addr: 0xffff9edb6f207000, reg_state: 2
__dev_queue_xmit server: real_num_tx_queues: 0, cpu: 2, pid: 28024, tid: 28024, skb_addr: 0xffff9edb6f207000, reg_state: 2
netdev_core_pick_tx server: addr: 0xffff9f0a46d4a000 real_num_tx_queues: 0, cpu: 2, pid: 28024, tid: 28024, skb_addr: 0xffff9edb6f207000, reg_state: 2
broken device server: real_num_tx_queues: 0, cpu: 2, pid: 28024, tid: 28024
ovs_dp_detach_port server: real_num_tx_queues: 0 cpu 9, pid: 9124, tid: 9124, reg_state: 2
synchronize_rcu_expedited: cpu 9, pid: 33604, tid: 33604

stuck message:

watchdog: BUG: soft lockup - CPU#5 stuck for 26s! [curl:1929279]
Modules linked in: veth pktgen bridge stp llc ip_set_hash_net nft_counter xt_set nft_compat nf_tables ip_set_hash_ip ip_set nfnetlink_cttimeout nfnetlink openvswitch nsh nf_conncount nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 tls binfmt_misc nls_iso8859_1 input_leds joydev serio_raw dm_multipath scsi_dh_rdac scsi_dh_emc scsi_dh_alua sch_fq_codel drm efi_pstore virtio_rng ip_tables x_tables autofs4 btrfs blake2b_generic zstd_compress raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor raid6_pq libcrc32c raid1 raid0 multipath linear hid_generic usbhid hid crct10dif_pclmul crc32_pclmul ghash_clmulni_intel aesni_intel virtio_net ahci net_failover crypto_simd cryptd psmouse libahci virtio_blk failover
CPU: 5 PID: 1929279 Comm: curl Not tainted 5.15.0-67-generic #74-Ubuntu
Hardware name: OpenStack Foundation OpenStack Nova, BIOS rel-1.16.0-0-gd239552ce722-prebuilt.qemu.org 04/01/2014
RIP: 0010:netdev_pick_tx+0xf1/0x320
Code: 00 00 8d 48 ff 0f b7 c1 66 39 ca 0f 86 e9 01 00 00 45 0f b7 ff 41 39 c7 0f 87 5b 01 00 00 44 29 f8 41 39 c7 0f 87 4f 01 00 00 <eb> f2 0f 1f 44 00 00 49 8b 94 24 28 04 00 00 48 85 d2 0f 84 53 01
RSP: 0018:ffffb78b40298820 EFLAGS: 00000246
RAX: 0000000000000000 RBX: ffff9c8773adc2e0 RCX: 000000000000083f
RDX: 0000000000000000 RSI: ffff9c8773adc2e0 RDI: ffff9c870a25e000
RBP: ffffb78b40298858 R08: 0000000000000001 R09: 0000000000000000
R10: 0000000000000000 R11: 0000000000000000 R12: ffff9c870a25e000
R13: ffff9c870a25e000 R14: ffff9c87fe043480 R15: 0000000000000000
FS:  00007f7b80008f00(0000) GS:ffff9c8e5f740000(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00007f7b80f6a0b0 CR3: 0000000329d66000 CR4: 0000000000350ee0
Call Trace:
 <IRQ>
 netdev_core_pick_tx+0xa4/0xb0
 __dev_queue_xmit+0xf8/0x510
 ? __bpf_prog_exit+0x1e/0x30
 dev_queue_xmit+0x10/0x20
 ovs_vport_send+0xad/0x170 [openvswitch]
 do_output+0x59/0x180 [openvswitch]
 do_execute_actions+0xa80/0xaa0 [openvswitch]
 ? kfree+0x1/0x250
 ? kfree+0x1/0x250
 ? kprobe_perf_func+0x4f/0x2b0
 ? flow_lookup.constprop.0+0x5c/0x110 [openvswitch]
 ovs_execute_actions+0x4c/0x120 [openvswitch]
 ovs_dp_process_packet+0xa1/0x200 [openvswitch]
 ? ovs_ct_update_key.isra.0+0xa8/0x120 [openvswitch]
 ? ovs_ct_fill_key+0x1d/0x30 [openvswitch]
 ? ovs_flow_key_extract+0x2db/0x350 [openvswitch]
 ovs_vport_receive+0x77/0xd0 [openvswitch]
 ? __htab_map_lookup_elem+0x4e/0x60
 ? bpf_prog_680e8aff8547aec1_kfree+0x3b/0x714
 ? trace_call_bpf+0xc8/0x150
 ? kfree+0x1/0x250
 ? kfree+0x1/0x250
 ? kprobe_perf_func+0x4f/0x2b0
 ? kprobe_perf_func+0x4f/0x2b0
 ? __mod_memcg_lruvec_state+0x63/0xe0
 netdev_port_receive+0xc4/0x180 [openvswitch]
 ? netdev_port_receive+0x180/0x180 [openvswitch]
 netdev_frame_hook+0x1f/0x40 [openvswitch]
 __netif_receive_skb_core.constprop.0+0x23d/0xf00
 __netif_receive_skb_one_core+0x3f/0xa0
 __netif_receive_skb+0x15/0x60
 process_backlog+0x9e/0x170
 __napi_poll+0x33/0x180
 net_rx_action+0x126/0x280
 ? ttwu_do_activate+0x72/0xf0
 __do_softirq+0xd9/0x2e7
 ? rcu_report_exp_cpu_mult+0x1b0/0x1b0
 do_softirq+0x7d/0xb0
 </IRQ>
 <TASK>
 __local_bh_enable_ip+0x54/0x60
 ip_finish_output2+0x191/0x460
 __ip_finish_output+0xb7/0x180
 ip_finish_output+0x2e/0xc0
 ip_output+0x78/0x100
 ? __ip_finish_output+0x180/0x180
 ip_local_out+0x5e/0x70
 __ip_queue_xmit+0x184/0x440
 ? tcp_syn_options+0x1f9/0x300
 ip_queue_xmit+0x15/0x20
 __tcp_transmit_skb+0x910/0x9c0
 ? __mod_memcg_state+0x44/0xa0
 tcp_connect+0x437/0x4e0
 ? ktime_get_with_offset+0x60/0xf0
 tcp_v4_connect+0x436/0x530
 __inet_stream_connect+0xd4/0x3a0
 ? kprobe_perf_func+0x4f/0x2b0
 ? aa_sk_perm+0x43/0x1c0
 inet_stream_connect+0x3b/0x60
 __sys_connect_file+0x63/0x70
 __sys_connect+0xa6/0xd0
 ? setfl+0x108/0x170
 ? do_fcntl+0xe8/0x5a0
 __x64_sys_connect+0x18/0x20
 do_syscall_64+0x5c/0xc0
 ? __x64_sys_fcntl+0xa9/0xd0
 ? exit_to_user_mode_prepare+0x37/0xb0
 ? syscall_exit_to_user_mode+0x27/0x50
 ? do_syscall_64+0x69/0xc0
 ? __sys_setsockopt+0xea/0x1e0
 ? exit_to_user_mode_prepare+0x37/0xb0
 ? syscall_exit_to_user_mode+0x27/0x50
 ? __x64_sys_setsockopt+0x1f/0x30
 ? do_syscall_64+0x69/0xc0
 ? irqentry_exit+0x1d/0x30
 ? exc_page_fault+0x89/0x170
 entry_SYSCALL_64_after_hwframe+0x61/0xcb
RIP: 0033:0x7f7b8101c6a7
Code: 64 89 01 48 83 c8 ff c3 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 64 8b 04 25 18 00 00 00 85 c0 75 10 b8 2a 00 00 00 0f 05 <48> 3d 00 f0 ff ff 77 51 c3 48 83 ec 18 89 54 24 0c 48 89 34 24 89
RSP: 002b:00007ffffd6b2198 EFLAGS: 00000246 ORIG_RAX: 000000000000002a
RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f7b8101c6a7
RDX: 0000000000000010 RSI: 00007ffffd6b2360 RDI: 0000000000000005
RBP: 0000561f1370d560 R08: 00002795ad21d1ac R09: 0030312e302e302e
R10: 00007ffffd73f080 R11: 0000000000000246 R12: 0000561f1370c410
R13: 0000000000000000 R14: 0000000000000005 R15: 0000000000000000
 </TASK>

Fixes: 7f8a436eaa2c ("openvswitch: Add conntrack action")
Co-developed-by: Luca Czesla <luca.czesla@mail.schwarz>
Signed-off-by: Luca Czesla <luca.czesla@mail.schwarz>
Signed-off-by: Felix Huettner <felix.huettner@mail.schwarz>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Link: https://lore.kernel.org/r/ZC0pBXBAgh7c76CA@kernel-bug-kernel-bug
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Carlos Soto <carlos.soto@broadcom.com>
Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 net/core/dev.c            |    1 +
 net/openvswitch/actions.c |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2802,6 +2802,7 @@ static u16 skb_tx_hash(const struct net_
 	}
 
 	if (skb_rx_queue_recorded(skb)) {
+		BUILD_BUG_ON_INVALID(qcount == 0);
 		hash = skb_get_rx_queue(skb);
 		if (hash >= qoffset)
 			hash -= qoffset;
--- a/net/openvswitch/actions.c
+++ b/net/openvswitch/actions.c
@@ -920,7 +920,7 @@ static void do_output(struct datapath *d
 {
 	struct vport *vport = ovs_vport_rcu(dp, out_port);
 
-	if (likely(vport)) {
+	if (likely(vport && netif_carrier_ok(vport->dev))) {
 		u16 mru = OVS_CB(skb)->mru;
 		u32 cutlen = OVS_CB(skb)->cutlen;
 



  parent reply	other threads:[~2025-04-29 16:52 UTC|newest]

Thread overview: 185+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-29 16:39 [PATCH 5.4 000/179] 5.4.293-rc1 review Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 001/179] ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 002/179] tipc: fix memory leak in tipc_link_xmit Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 003/179] codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 004/179] ata: sata_sx4: Drop pointless VPRINTK() calls and convert the remaining ones Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 005/179] ata: sata_sx4: Add error handling in pdc20621_i2c_read() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 006/179] net: ppp: Add bound checking for skb data on ppp_sync_txmung Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 007/179] pm: cpupower: bench: Prevent NULL dereference on malloc failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 008/179] x86/cpu: Dont clear X86_FEATURE_LAHF_LM flag in init_amd_k8() on AMD when running in a virtual machine Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 009/179] perf: arm_pmu: Dont disable counter in armpmu_add() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 010/179] xen/mcelog: Add __nonstring annotations for unterminated strings Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 011/179] HID: pidff: Convert infinite length from Linux API to PID standard Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 012/179] HID: pidff: Do not send effect envelope if its empty Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 013/179] HID: pidff: Fix null pointer dereference in pidff_find_fields Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 014/179] ALSA: hda: intel: Fix Optimus when GPU has no sound Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 015/179] ALSA: usb-audio: Fix CME quirk for UF series keyboards Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 016/179] page_pool: avoid infinite loop to schedule delayed worker Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 017/179] fs/jfs: cast inactags to s64 to prevent potential overflow Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 018/179] fs/jfs: Prevent integer overflow in AG size calculation Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 019/179] jfs: Prevent copying of nlink with value 0 from disk inode Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 020/179] jfs: add sanity check for agwidth in dbMount Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 021/179] ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 022/179] ahci: add PCI ID for Marvell 88SE9215 SATA Controller Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 023/179] ext4: protect ext4_release_dquot against freezing Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 024/179] ext4: ignore xattrs past end Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 025/179] scsi: st: Fix array overflow in st_setup() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 026/179] wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 027/179] net: vlan: dont propagate flags on open Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 028/179] tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 029/179] Bluetooth: hci_uart: fix race during initialization Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 030/179] drm: allow encoder mode_set even when connectors change for crtc Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 031/179] drm: panel-orientation-quirks: Add support for AYANEO 2S Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 032/179] drm: panel-orientation-quirks: Add new quirk for GPD Win 2 Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 033/179] drm/amdkfd: clamp queue size to minimum Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 034/179] drm/amdkfd: Fix pqm_destroy_queue race with GPU reset Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 035/179] drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 036/179] fbdev: omapfb: Add plane value check Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 037/179] pwm: mediatek: Always use bus clock Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 038/179] pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 039/179] pwm: fsl-ftm: Handle clk_get_rate() returning 0 Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 040/179] bpf: Add endian modifiers to fix endian warnings Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 041/179] bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 042/179] ext4: reject casefold inode flag without casefold feature Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 043/179] ext4: dont treat fhandle lookup of ea_inode as FS corruption Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 044/179] media: i2c: adv748x: Fix test pattern selection mask Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 045/179] media: venus: hfi: add a check to handle OOB in sfr region Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 046/179] media: venus: hfi: add check to handle incorrect queue size Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 047/179] media: siano: Fix error handling in smsdvb_module_init() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 048/179] xenfs/xensyms: respect hypervisors "next" indication Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 049/179] arm64: cputype: Add MIDR_CORTEX_A76AE Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 050/179] mtd: rawnand: brcmnand: fix PM resume warning Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 051/179] media: streamzap: prevent processing IR data on URB failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 052/179] media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 053/179] media: i2c: ov7251: Set enable GPIO low in probe Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 054/179] media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 055/179] media: venus: hfi_parser: add check to avoid out of bound access Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 056/179] net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 057/179] wifi: mac80211: fix integer overflow in hwmp_route_info_get() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 058/179] ext4: fix off-by-one error in do_split Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 059/179] i3c: Add NULL pointer check in i3c_master_queue_ibi() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 060/179] jbd2: remove wrong sb->s_sequence check Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 061/179] locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 062/179] lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 063/179] mtd: inftlcore: Add error check for inftl_read_oob() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 064/179] mtd: rawnand: Add status chack in r852_ready() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 065/179] arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 066/179] sparc/mm: disable preemption in lazy mmu mode Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 067/179] mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 068/179] sctp: detect and prevent references to a freed transport in sendmsg Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 069/179] thermal/drivers/rockchip: Add missing rk3328 mapping entry Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 070/179] crypto: ccp - Fix check for the primary ASP device Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 071/179] dm-integrity: set ti->error on memory allocation failure Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 072/179] ftrace: Add cond_resched() to ftrace_graph_set_hash() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 073/179] gpio: zynq: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 074/179] ntb: use 64-bit arithmetic for the MSI doorbell mask Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 075/179] of/irq: Fix device node refcount leakages in of_irq_count() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 076/179] of/irq: Fix device node refcount leakage in API irq_of_parse_and_map() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 077/179] of/irq: Fix device node refcount leakages in of_irq_init() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 078/179] PCI: Fix reference leak in pci_alloc_child_bus() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 079/179] x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 080/179] Bluetooth: hci_uart: Fix another race during initialization Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 081/179] pwm: mediatek: always use bus clock for PWM on MT7622 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 082/179] HSI: ssi_protocol: Fix use after free vulnerability in ssi_protocol Driver Due to Race Condition Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 083/179] wifi: at76c50x: fix use after free access in at76_disconnect Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 084/179] wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 085/179] wifi: mac80211: Purge vif txq in ieee80211_do_stop() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 086/179] wifi: wl1251: fix memory leak in wl1251_tx_work Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 087/179] scsi: iscsi: Fix missing scsi_host_put() in error path Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 088/179] RDMA/usnic: Fix passing zero to PTR_ERR in usnic_ib_pci_probe() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 089/179] Bluetooth: hci_event: Fix sending MGMT_EV_DEVICE_FOUND for invalid address Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 090/179] Bluetooth: btrtl: Prevent potential NULL dereference Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 091/179] Revert "wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue()" Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 092/179] net: openvswitch: fix nested key length validation in the set() action Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 093/179] net: b53: enable BPDU reception for management port Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 094/179] writeback: fix false warning in inode_to_wb() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 095/179] asus-laptop: Fix an uninitialized variable Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 096/179] NFSD: Constify @fh argument of knfsd_fh_hash() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 097/179] nfs: move nfs_fhandle_hash to common include file Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 098/179] nfs: add missing selections of CONFIG_CRC32 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 099/179] btrfs: correctly escape subvol in btrfs_show_options() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 100/179] hfs/hfsplus: fix slab-out-of-bounds in hfs_bnode_read_key Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 101/179] i2c: cros-ec-tunnel: defer probe if parent EC is not present Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 102/179] isofs: Prevent the use of too small fid Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 103/179] riscv: Avoid fortify warning in syscall_get_arguments() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 104/179] virtiofs: add filesystem context source name check Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 105/179] perf/x86/intel: Allow to update user space GPRs from PEBS records Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 106/179] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SNR Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 107/179] module: sign with sha512 instead of sha1 by default Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 108/179] drm/repaper: fix integer overflows in repeat functions Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 109/179] drm/nouveau: prime: fix ttm_bo_delayed_delete oops Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 110/179] drm/sti: remove duplicate object names Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 111/179] cpufreq: Reference count policy in cpufreq_update_limits() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 112/179] kbuild: Add -fno-builtin-wcslen Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 113/179] powerpc/prom_init: Use -ffreestanding to avoid a reference to bcmp Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 114/179] tcp/dccp: Dont use timer_pending() in reqsk_queue_unlink() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 115/179] misc: pci_endpoint_test: Avoid issue of interrupts remaining after request_irq error Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 116/179] misc: pci_endpoint_test: Fix irq_type to convey the correct type Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 117/179] usb: dwc3: support continuous runtime PM with dual role Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 118/179] nvmet-fc: Remove unused functions Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 119/179] mmc: cqhci: Fix checking of CQHCI_HALT state Greg Kroah-Hartman
2025-04-29 16:41 ` Greg Kroah-Hartman [this message]
2025-04-29 16:41 ` [PATCH 5.4 121/179] openvswitch: fix lockup on tx to unregistering netdev with carrier Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 122/179] RDMA/srpt: Support specifying the srpt_service_guid parameter Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 123/179] virtio-net: Add validation for used length Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 124/179] MIPS: dec: Declare which_prom() as static Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 125/179] MIPS: cevt-ds1287: Add missing ds1287.h include Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 126/179] MIPS: ds1287: Match ds1287_set_base_clock() function types Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 127/179] platform/x86: ISST: Correct command storage data length Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 128/179] ext4: simplify checking quota limits in ext4_statfs() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 129/179] ext4: code cleanup for ext4_statfs_project() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 130/179] ext4: dont over-report free space or inodes in statvfs Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 131/179] ext4: optimize __ext4_check_dir_entry() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 132/179] ext4: fix OOB read when checking dotdot dir Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 133/179] media: vim2m: print device name after registering device Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 134/179] net: dsa: mv88e6xxx: fix VTU methods for 6320 family Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 135/179] iio: adc: ad7768-1: Move setting of val a bit later to avoid unnecessary return value check Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 136/179] iio: adc: ad7768-1: Fix conversion result sign Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 137/179] PCI: Rename PCI_IRQ_LEGACY to PCI_IRQ_INTX Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 138/179] misc: pci_endpoint_test: Use INTX instead of LEGACY Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 139/179] misc: pci_endpoint_test: Fix displaying irq_type after request_irq error Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 140/179] drm/amd/pm: Prevent division by zero Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 141/179] cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 142/179] net: phy: leds: fix memory leak Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 143/179] tipc: fix NULL pointer dereference in tipc_mon_reinit_self() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 144/179] net_sched: hfsc: Fix a UAF vulnerability in class handling Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 145/179] net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 146/179] virtio_console: fix missing byte order handling for cols and rows Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 147/179] mcb: fix a double free bug in chameleon_parse_gdd() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 148/179] USB: storage: quirk for ADATA Portable HDD CH94 Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 149/179] serial: sifive: lock port in startup()/shutdown() callbacks Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 150/179] USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 151/179] USB: serial: option: add Sierra Wireless EM9291 Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 152/179] USB: serial: simple: add OWON HDS200 series oscilloscope support Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 153/179] usb: cdns3: Fix deadlock when using NCM gadget Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 154/179] USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02) Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 155/179] usb: dwc3: gadget: check that event count does not exceed event buffer length Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 156/179] usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 157/179] usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 " Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 158/179] USB: VLI disk crashes if LPM is used Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 159/179] MIPS: cm: Detect CM quirks from device tree Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 160/179] crypto: null - Use spin lock instead of mutex Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 161/179] clk: check for disabled clock-provider in of_clk_get_hw_from_clkspec() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 162/179] parisc: PDT: Fix missing prototype warning Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 163/179] usb: host: max3421-hcd: Add missing spi_device_id table Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 164/179] dmaengine: dmatest: Fix dmatest waiting less when interrupted Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 165/179] usb: gadget: aspeed: Add NULL pointer check in ast_vhub_init_dev() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 166/179] qibfs: fix _another_ leak Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 167/179] ntb: reduce stack usage in idt_scan_mws Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 168/179] sched/isolation: Make CONFIG_CPU_ISOLATION depend on CONFIG_SMP Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 169/179] KVM: s390: Dont use %pK through tracepoints Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 170/179] udmabuf: fix a buf size overflow issue during udmabuf creation Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 171/179] selftests: ublk: fix test_stripe_04 Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 172/179] ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 173/179] x86/bugs: Dont fill RSB on VMEXIT with eIBRS+retpoline Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 174/179] scsi: pm80xx: Set phy_attached to zero when device is gone Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 175/179] md/raid1: Add check for missing source disk in process_checks() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 176/179] s390/virtio_ccw: Dont allocate/assign airqs for non-existing queues Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 177/179] comedi: jr3_pci: Fix synchronous deletion of timer Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 178/179] crypto: atmel-sha204a - Set hwrng quality to lowest possible Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.4 179/179] MIPS: cm: Fix warning if MIPS_CM is disabled Greg Kroah-Hartman
2025-04-30 15:02 ` [PATCH 5.4 000/179] 5.4.293-rc1 review Jon Hunter
2025-04-30 15:55 ` Shuah Khan
2025-04-30 16:46 ` Naresh Kamboju
2025-04-30 18:08 ` ALOK TIWARI
2025-05-02 12:04 ` Florian Fainelli

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20250429161054.257424512@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=carlos.soto@broadcom.com \
    --cc=edumazet@google.com \
    --cc=felix.huettner@mail.schwarz \
    --cc=florian.fainelli@broadcom.com \
    --cc=kuba@kernel.org \
    --cc=luca.czesla@mail.schwarz \
    --cc=patches@lists.linux.dev \
    --cc=simon.horman@corigine.com \
    --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