All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Liu Jian <liujian56@huawei.com>,
	Daniel Borkmann <daniel@iogearbox.net>,
	John Fastabend <john.fastabend@gmail.com>,
	Jakub Sitnicki <jakub@cloudflare.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 080/143] bpf, sockmap: Fix an infinite loop error when len is 0 in tcp_bpf_recvmsg_parser()
Date: Wed, 15 Mar 2023 13:12:46 +0100	[thread overview]
Message-ID: <20230315115742.969027140@linuxfoundation.org> (raw)
In-Reply-To: <20230315115740.429574234@linuxfoundation.org>

From: Liu Jian <liujian56@huawei.com>

[ Upstream commit d900f3d20cc3169ce42ec72acc850e662a4d4db2 ]

When the buffer length of the recvmsg system call is 0, we got the
flollowing soft lockup problem:

watchdog: BUG: soft lockup - CPU#3 stuck for 27s! [a.out:6149]
CPU: 3 PID: 6149 Comm: a.out Kdump: loaded Not tainted 6.2.0+ #30
Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.15.0-1 04/01/2014
RIP: 0010:remove_wait_queue+0xb/0xc0
Code: 5e 41 5f c3 cc cc cc cc 0f 1f 80 00 00 00 00 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 90 f3 0f 1e fa 0f 1f 44 00 00 41 57 <41> 56 41 55 41 54 55 48 89 fd 53 48 89 f3 4c 8d 6b 18 4c 8d 73 20
RSP: 0018:ffff88811b5978b8 EFLAGS: 00000246
RAX: 0000000000000000 RBX: ffff88811a7d3780 RCX: ffffffffb7a4d768
RDX: dffffc0000000000 RSI: ffff88811b597908 RDI: ffff888115408040
RBP: 1ffff110236b2f1b R08: 0000000000000000 R09: ffff88811a7d37e7
R10: ffffed10234fa6fc R11: 0000000000000001 R12: ffff88811179b800
R13: 0000000000000001 R14: ffff88811a7d38a8 R15: ffff88811a7d37e0
FS:  00007f6fb5398740(0000) GS:ffff888237180000(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 0000000020000000 CR3: 000000010b6ba002 CR4: 0000000000370ee0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
Call Trace:
 <TASK>
 tcp_msg_wait_data+0x279/0x2f0
 tcp_bpf_recvmsg_parser+0x3c6/0x490
 inet_recvmsg+0x280/0x290
 sock_recvmsg+0xfc/0x120
 ____sys_recvmsg+0x160/0x3d0
 ___sys_recvmsg+0xf0/0x180
 __sys_recvmsg+0xea/0x1a0
 do_syscall_64+0x3f/0x90
 entry_SYSCALL_64_after_hwframe+0x72/0xdc

The logic in tcp_bpf_recvmsg_parser is as follows:

msg_bytes_ready:
	copied = sk_msg_recvmsg(sk, psock, msg, len, flags);
	if (!copied) {
		wait data;
		goto msg_bytes_ready;
	}

In this case, "copied" always is 0, the infinite loop occurs.

According to the Linux system call man page, 0 should be returned in this
case. Therefore, in tcp_bpf_recvmsg_parser(), if the length is 0, directly
return. Also modify several other functions with the same problem.

Fixes: 1f5be6b3b063 ("udp: Implement udp_bpf_recvmsg() for sockmap")
Fixes: 9825d866ce0d ("af_unix: Implement unix_dgram_bpf_recvmsg()")
Fixes: c5d2177a72a1 ("bpf, sockmap: Fix race in ingress receive verdict with redirect to self")
Fixes: 604326b41a6f ("bpf, sockmap: convert to generic sk_msg interface")
Signed-off-by: Liu Jian <liujian56@huawei.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: John Fastabend <john.fastabend@gmail.com>
Cc: Jakub Sitnicki <jakub@cloudflare.com>
Link: https://lore.kernel.org/bpf/20230303080946.1146638-1-liujian56@huawei.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/ipv4/tcp_bpf.c  | 6 ++++++
 net/ipv4/udp_bpf.c  | 3 +++
 net/unix/unix_bpf.c | 3 +++
 3 files changed, 12 insertions(+)

diff --git a/net/ipv4/tcp_bpf.c b/net/ipv4/tcp_bpf.c
index cf26d65ca3893..ebf9175119370 100644
--- a/net/ipv4/tcp_bpf.c
+++ b/net/ipv4/tcp_bpf.c
@@ -186,6 +186,9 @@ static int tcp_bpf_recvmsg_parser(struct sock *sk,
 	if (unlikely(flags & MSG_ERRQUEUE))
 		return inet_recv_error(sk, msg, len, addr_len);
 
+	if (!len)
+		return 0;
+
 	psock = sk_psock_get(sk);
 	if (unlikely(!psock))
 		return tcp_recvmsg(sk, msg, len, flags, addr_len);
@@ -244,6 +247,9 @@ static int tcp_bpf_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
 	if (unlikely(flags & MSG_ERRQUEUE))
 		return inet_recv_error(sk, msg, len, addr_len);
 
+	if (!len)
+		return 0;
+
 	psock = sk_psock_get(sk);
 	if (unlikely(!psock))
 		return tcp_recvmsg(sk, msg, len, flags, addr_len);
diff --git a/net/ipv4/udp_bpf.c b/net/ipv4/udp_bpf.c
index e5dc91d0e0793..0735d820e413f 100644
--- a/net/ipv4/udp_bpf.c
+++ b/net/ipv4/udp_bpf.c
@@ -68,6 +68,9 @@ static int udp_bpf_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
 	if (unlikely(flags & MSG_ERRQUEUE))
 		return inet_recv_error(sk, msg, len, addr_len);
 
+	if (!len)
+		return 0;
+
 	psock = sk_psock_get(sk);
 	if (unlikely(!psock))
 		return sk_udp_recvmsg(sk, msg, len, flags, addr_len);
diff --git a/net/unix/unix_bpf.c b/net/unix/unix_bpf.c
index e9bf155139612..2f9d8271c6ec7 100644
--- a/net/unix/unix_bpf.c
+++ b/net/unix/unix_bpf.c
@@ -54,6 +54,9 @@ static int unix_bpf_recvmsg(struct sock *sk, struct msghdr *msg,
 	struct sk_psock *psock;
 	int copied;
 
+	if (!len)
+		return 0;
+
 	psock = sk_psock_get(sk);
 	if (unlikely(!psock))
 		return __unix_recvmsg(sk, msg, len, flags);
-- 
2.39.2




  parent reply	other threads:[~2023-03-15 12:34 UTC|newest]

Thread overview: 158+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-15 12:11 [PATCH 6.1 000/143] 6.1.20-rc1 review Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 001/143] fs: prevent out-of-bounds array speculation when closing a file descriptor Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 002/143] btrfs: fix unnecessary increment of read error stat on write error Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 003/143] btrfs: fix percent calculation for bg reclaim message Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 004/143] io_uring/uring_cmd: ensure that device supports IOPOLL Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 005/143] erofs: fix wrong kunmap when using LZMA on HIGHMEM platforms Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 006/143] perf inject: Fix --buildid-all not to eat up MMAP2 Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 007/143] fork: allow CLONE_NEWTIME in clone3 flags Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 008/143] RISC-V: Stop emitting attributes Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 009/143] x86/CPU/AMD: Disable XSAVES on AMD family 0x17 Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 010/143] drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc15 Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 011/143] drm/amdgpu: fix error checking in amdgpu_read_mm_registers for soc21 Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 012/143] drm/amdgpu: fix error checking in amdgpu_read_mm_registers for nv Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 013/143] drm/display: Dont block HDR_OUTPUT_METADATA on unknown EOTF Greg Kroah-Hartman
2023-03-15 12:11   ` Greg Kroah-Hartman
2023-03-15 12:11   ` Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 014/143] drm/connector: print max_requested_bpc in state debugfs Greg Kroah-Hartman
2023-03-15 12:11   ` Greg Kroah-Hartman
2023-03-15 12:11   ` Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 015/143] staging: rtl8723bs: Fix key-store index handling Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 016/143] staging: rtl8723bs: Pass correct parameters to cfg80211_get_bss() Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 017/143] ext4: fix cgroup writeback accounting with fs-layer encryption Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 018/143] ext4: fix RENAME_WHITEOUT handling for inline directories Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 019/143] ext4: fix another off-by-one fsmap error on 1k block filesystems Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 020/143] ext4: move where set the MAY_INLINE_DATA flag is set Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 021/143] ext4: fix WARNING in ext4_update_inline_data Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 022/143] ext4: zero i_disksize when initializing the bootloader inode Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 023/143] HID: core: Provide new max_buffer_size attribute to over-ride the default Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 024/143] HID: uhid: Over-ride the default maximum data buffer value with our own Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 025/143] nfc: change order inside nfc_se_io error path Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 026/143] KVM: VMX: Reset eVMCS controls in VP assist page during hardware disabling Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 027/143] KVM: VMX: Dont bother disabling eVMCS static key on module exit Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 028/143] KVM: x86: Move guts of kvm_arch_init() to standalone helper Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 029/143] KVM: VMX: Do _all_ initialization before exposing /dev/kvm to userspace Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 030/143] fs: dlm: fix log of lowcomms vs midcomms Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 031/143] fs: dlm: add midcomms init/start functions Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 032/143] fs: dlm: start midcomms before scand Greg Kroah-Hartman
2023-03-15 12:11 ` [PATCH 6.1 033/143] fs: dlm: remove send repeat remove handling Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 034/143] fs: dlm: use packet in dlm_mhandle Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 035/143] fd: dlm: trace send/recv of dlm message and rcom Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 036/143] fs: dlm: fix use after free in midcomms commit Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 037/143] fs: dlm: use WARN_ON_ONCE() instead of WARN_ON() Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 038/143] fs: dlm: be sure to call dlm_send_queue_flush() Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 039/143] fs: dlm: fix race setting stop tx flag Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 040/143] udf: Fix off-by-one error when discarding preallocation Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 041/143] bus: mhi: ep: Power up/down MHI stack during MHI RESET Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 042/143] bus: mhi: ep: Change state_lock to mutex Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 043/143] powerpc/boot: Dont always pass -mcpu=powerpc when building 32-bit uImage Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 044/143] Input: exc3000 - properly stop timer on shutdown Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 045/143] ipmi:ssif: Remove rtc_us_timer Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 046/143] ipmi:ssif: Increase the message retry time Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 047/143] ipmi:ssif: Add a timer between request retries Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 048/143] spi: intel: Check number of chip selects after reading the descriptor Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 049/143] drm/i915: Introduce intel_panel_init_alloc() Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 050/143] drm/i915: Do panel VBT init early if the VBT declares an explicit panel type Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 051/143] drm/i915: Populate encoder->devdata for DSI on icl+ Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 052/143] block: Revert "block: Do not reread partition table on exclusively open device" Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 053/143] block: fix scan partition for exclusively open device again Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 054/143] riscv: Add header include guards to insn.h Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 055/143] scsi: core: Remove the /proc/scsi/${proc_name} directory earlier Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 056/143] ext4: Fix possible corruption when moving a directory Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 057/143] cifs: improve checking of DFS links over STATUS_OBJECT_NAME_INVALID Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 058/143] drm/nouveau/kms/nv50: fix nv50_wndw_new_ prototype Greg Kroah-Hartman
2023-03-15 12:12   ` Greg Kroah-Hartman
2023-03-15 12:12   ` [Nouveau] " Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 059/143] drm/msm: Fix potential invalid ptr free Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 060/143] drm/msm/a5xx: fix setting of the CP_PREEMPT_ENABLE_LOCAL register Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 061/143] drm/msm/a5xx: fix highest bank bit for a530 Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 062/143] drm/msm/a5xx: fix the emptyness check in the preempt code Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 063/143] drm/msm/a5xx: fix context faults during ring switch Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 064/143] bgmac: fix *initial* chip reset to support BCM5358 Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 065/143] nfc: fdp: add null check of devm_kmalloc_array in fdp_nci_i2c_read_device_properties Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 066/143] powerpc: dts: t1040rdb: fix compatible string for Rev A boards Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 067/143] tls: rx: fix return value for async crypto Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 068/143] drm/msm/dpu: disable features unsupported by QCM2290 Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 069/143] ila: do not generate empty messages in ila_xlat_nl_cmd_get_mapping() Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 070/143] net: lan966x: Fix port police support using tc-matchall Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 071/143] selftests: nft_nat: ensuring the listening side is up before starting the client Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 072/143] netfilter: nft_last: copy content when cloning expression Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 073/143] netfilter: nft_quota: " Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 074/143] net: tls: fix possible race condition between do_tls_getsockopt_conf() and do_tls_setsockopt_conf() Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 075/143] net: use indirect calls helpers for sk_exit_memory_pressure() Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 076/143] perf stat: Fix counting when initial delay configured Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 077/143] net: lan78xx: fix accessing the LAN7800s internal phy specific registers from the MAC driver Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 078/143] net: caif: Fix use-after-free in cfusbl_device_notify() Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 079/143] ice: copy last block omitted in ice_get_module_eeprom() Greg Kroah-Hartman
2023-03-15 12:12 ` Greg Kroah-Hartman [this message]
2023-03-15 12:12 ` [PATCH 6.1 081/143] drm/msm/dpu: fix len of sc7180 ctl blocks Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 082/143] drm/msm/dpu: drop DPU_DIM_LAYER from MIXER_MSM8998_MASK Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 083/143] drm/msm/dpu: fix clocks settings for msm8998 SSPP blocks Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 084/143] drm/msm/dpu: clear DSPP reservations in rm release Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 085/143] net: stmmac: add to set device wake up flag when stmmac init phy Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 086/143] net: phylib: get rid of unnecessary locking Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 087/143] bnxt_en: Avoid order-5 memory allocation for TPA data Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 088/143] netfilter: ctnetlink: revert to dumping mark regardless of event type Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 089/143] netfilter: tproxy: fix deadlock due to missing BH disable Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 090/143] m68k: mm: Move initrd phys_to_virt handling after paging_init() Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 091/143] btrfs: fix extent map logging bit not cleared for split maps after dropping range Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 092/143] bpf, test_run: fix &xdp_frame misplacement for LIVE_FRAMES Greg Kroah-Hartman
2023-03-15 12:12 ` [PATCH 6.1 093/143] btf: fix resolving BTF_KIND_VAR after ARRAY, STRUCT, UNION, PTR Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 094/143] net: phy: smsc: fix link up detection in forced irq mode Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 095/143] net: ethernet: mtk_eth_soc: fix RX data corruption issue Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 096/143] net: tls: fix device-offloaded sendpage straddling records Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 097/143] scsi: megaraid_sas: Update max supported LD IDs to 240 Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 098/143] scsi: sd: Fix wrong zone_write_granularity value during revalidate Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 099/143] netfilter: conntrack: adopt safer max chain length Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 100/143] platform: mellanox: select REGMAP instead of depending on it Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 101/143] platform: x86: MLX_PLATFORM: " Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 102/143] block: fix wrong mode for blkdev_put() from disk_scan_partitions() Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 103/143] NFSD: Protect against filesystem freezing Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 104/143] ice: Fix DSCP PFC TLV creation Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 105/143] ethernet: ice: avoid gcc-9 integer overflow warning Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 106/143] net/smc: fix fallback failed while sendmsg with fastopen Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 107/143] octeontx2-af: Unlock contexts in the queue context cache in case of fault detection Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 108/143] SUNRPC: Fix a server shutdown leak Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 109/143] net: dsa: mt7530: permit port 5 to work without port 6 on MT7621 SoC Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 110/143] af_unix: fix struct pid leaks in OOB support Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 111/143] erofs: Revert "erofs: fix kvcalloc() misuse with __GFP_NOFAIL" Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 112/143] riscv: Use READ_ONCE_NOCHECK in imprecise unwinding stack mode Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 113/143] RISC-V: Dont check text_mutex during stop_machine Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 114/143] drm/amdgpu: fix return value check in kfd Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 115/143] ext4: Fix deadlock during directory rename Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 116/143] drm/amdgpu/soc21: dont expose AV1 if VCN0 is harvested Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 117/143] drm/amdgpu/soc21: Add video cap query support for VCN_4_0_4 Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 118/143] adreno: Shutdown the GPU properly Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 119/143] drm/msm/adreno: fix runtime PM imbalance at unbind Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 120/143] watch_queue: fix IOC_WATCH_QUEUE_SET_SIZE alloc error paths Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 121/143] tpm/eventlog: Dont abort tpm_read_log on faulty ACPI address Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 122/143] clk: qcom: mmcc-apq8084: remove spdm clocks Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 123/143] MIPS: Fix a compilation issue Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 124/143] powerpc: Check !irq instead of irq == NO_IRQ and remove NO_IRQ Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 125/143] powerpc/64: Dont recurse irq replay Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 126/143] powerpc/iommu: fix memory leak with using debugfs_lookup() Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 127/143] clk: renesas: rcar-gen3: Disable R-Car H3 ES1.* Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 128/143] powerpc/bpf/32: Only set a stack frame when necessary Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 129/143] powerpc/64: Fix task_cpu in early boot when booting non-zero cpuid Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 130/143] powerpc/64: Move paca allocation to early_setup() Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 131/143] powerpc/kcsan: Exclude udelay to prevent recursive instrumentation Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 132/143] alpha: fix R_ALPHA_LITERAL reloc for large modules Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 133/143] macintosh: windfarm: Use unsigned type for 1-bit bitfields Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 134/143] PCI: Add SolidRun vendor ID Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 135/143] PCI: Avoid FLR for SolidRun SNET DPU rev 1 Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 136/143] scripts: handle BrokenPipeError for python scripts Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 137/143] media: ov5640: Fix analogue gain control Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 138/143] media: rc: gpio-ir-recv: add remove function Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 139/143] drm/amd/display: Allow subvp on vactive pipes that are 2560x1440@60 Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 140/143] drm/amd/display: adjust MALL size available for DCN32 and DCN321 Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 141/143] filelocks: use mount idmapping for setlease permission check Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 142/143] Revert "bpf, test_run: fix &xdp_frame misplacement for LIVE_FRAMES" Greg Kroah-Hartman
2023-03-15 12:13 ` [PATCH 6.1 143/143] UML: define RUNTIME_DISCARD_EXIT Greg Kroah-Hartman
2023-03-15 13:58 ` [PATCH 6.1 000/143] 6.1.20-rc1 review Chris Paterson
2023-03-15 15:21 ` Daniel Díaz
2023-03-16  8:02   ` Greg Kroah-Hartman
2023-03-15 16:37 ` Markus Reichelt
2023-03-15 17:55 ` Conor Dooley
2023-03-15 21:51 ` Florian Fainelli
2023-03-15 23:55 ` Shuah Khan
2023-03-16  3:30 ` Bagas Sanjaya

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=20230315115742.969027140@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=daniel@iogearbox.net \
    --cc=jakub@cloudflare.com \
    --cc=john.fastabend@gmail.com \
    --cc=liujian56@huawei.com \
    --cc=patches@lists.linux.dev \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.