From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Eric Dumazet <edumazet@google.com>,
Kuniyuki Iwashima <kuniyu@amazon.com>,
Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>,
syzbot+2a7024e9502df538e8ef@syzkaller.appspotmail.com
Subject: [PATCH 4.19 026/202] llc: make llc_ui_sendmsg() more robust against bonding changes
Date: Wed, 21 Feb 2024 14:05:27 +0100 [thread overview]
Message-ID: <20240221125932.623182235@linuxfoundation.org> (raw)
In-Reply-To: <20240221125931.742034354@linuxfoundation.org>
4.19-stable review patch. If anyone has any objections, please let me know.
------------------
From: Eric Dumazet <edumazet@google.com>
[ Upstream commit dad555c816a50c6a6a8a86be1f9177673918c647 ]
syzbot was able to trick llc_ui_sendmsg(), allocating an skb with no
headroom, but subsequently trying to push 14 bytes of Ethernet header [1]
Like some others, llc_ui_sendmsg() releases the socket lock before
calling sock_alloc_send_skb().
Then it acquires it again, but does not redo all the sanity checks
that were performed.
This fix:
- Uses LL_RESERVED_SPACE() to reserve space.
- Check all conditions again after socket lock is held again.
- Do not account Ethernet header for mtu limitation.
[1]
skbuff: skb_under_panic: text:ffff800088baa334 len:1514 put:14 head:ffff0000c9c37000 data:ffff0000c9c36ff2 tail:0x5dc end:0x6c0 dev:bond0
kernel BUG at net/core/skbuff.c:193 !
Internal error: Oops - BUG: 00000000f2000800 [#1] PREEMPT SMP
Modules linked in:
CPU: 0 PID: 6875 Comm: syz-executor.0 Not tainted 6.7.0-rc8-syzkaller-00101-g0802e17d9aca-dirty #0
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 11/17/2023
pstate: 60400005 (nZCv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
pc : skb_panic net/core/skbuff.c:189 [inline]
pc : skb_under_panic+0x13c/0x140 net/core/skbuff.c:203
lr : skb_panic net/core/skbuff.c:189 [inline]
lr : skb_under_panic+0x13c/0x140 net/core/skbuff.c:203
sp : ffff800096f97000
x29: ffff800096f97010 x28: ffff80008cc8d668 x27: dfff800000000000
x26: ffff0000cb970c90 x25: 00000000000005dc x24: ffff0000c9c36ff2
x23: ffff0000c9c37000 x22: 00000000000005ea x21: 00000000000006c0
x20: 000000000000000e x19: ffff800088baa334 x18: 1fffe000368261ce
x17: ffff80008e4ed000 x16: ffff80008a8310f8 x15: 0000000000000001
x14: 1ffff00012df2d58 x13: 0000000000000000 x12: 0000000000000000
x11: 0000000000000001 x10: 0000000000ff0100 x9 : e28a51f1087e8400
x8 : e28a51f1087e8400 x7 : ffff80008028f8d0 x6 : 0000000000000000
x5 : 0000000000000001 x4 : 0000000000000001 x3 : ffff800082b78714
x2 : 0000000000000001 x1 : 0000000100000000 x0 : 0000000000000089
Call trace:
skb_panic net/core/skbuff.c:189 [inline]
skb_under_panic+0x13c/0x140 net/core/skbuff.c:203
skb_push+0xf0/0x108 net/core/skbuff.c:2451
eth_header+0x44/0x1f8 net/ethernet/eth.c:83
dev_hard_header include/linux/netdevice.h:3188 [inline]
llc_mac_hdr_init+0x110/0x17c net/llc/llc_output.c:33
llc_sap_action_send_xid_c+0x170/0x344 net/llc/llc_s_ac.c:85
llc_exec_sap_trans_actions net/llc/llc_sap.c:153 [inline]
llc_sap_next_state net/llc/llc_sap.c:182 [inline]
llc_sap_state_process+0x1ec/0x774 net/llc/llc_sap.c:209
llc_build_and_send_xid_pkt+0x12c/0x1c0 net/llc/llc_sap.c:270
llc_ui_sendmsg+0x7bc/0xb1c net/llc/af_llc.c:997
sock_sendmsg_nosec net/socket.c:730 [inline]
__sock_sendmsg net/socket.c:745 [inline]
sock_sendmsg+0x194/0x274 net/socket.c:767
splice_to_socket+0x7cc/0xd58 fs/splice.c:881
do_splice_from fs/splice.c:933 [inline]
direct_splice_actor+0xe4/0x1c0 fs/splice.c:1142
splice_direct_to_actor+0x2a0/0x7e4 fs/splice.c:1088
do_splice_direct+0x20c/0x348 fs/splice.c:1194
do_sendfile+0x4bc/0xc70 fs/read_write.c:1254
__do_sys_sendfile64 fs/read_write.c:1322 [inline]
__se_sys_sendfile64 fs/read_write.c:1308 [inline]
__arm64_sys_sendfile64+0x160/0x3b4 fs/read_write.c:1308
__invoke_syscall arch/arm64/kernel/syscall.c:37 [inline]
invoke_syscall+0x98/0x2b8 arch/arm64/kernel/syscall.c:51
el0_svc_common+0x130/0x23c arch/arm64/kernel/syscall.c:136
do_el0_svc+0x48/0x58 arch/arm64/kernel/syscall.c:155
el0_svc+0x54/0x158 arch/arm64/kernel/entry-common.c:678
el0t_64_sync_handler+0x84/0xfc arch/arm64/kernel/entry-common.c:696
el0t_64_sync+0x190/0x194 arch/arm64/kernel/entry.S:595
Code: aa1803e6 aa1903e7 a90023f5 94792f6a (d4210000)
Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Reported-and-tested-by: syzbot+2a7024e9502df538e8ef@syzkaller.appspotmail.com
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Link: https://lore.kernel.org/r/20240118183625.4007013-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
net/llc/af_llc.c | 24 ++++++++++++++++--------
1 file changed, 16 insertions(+), 8 deletions(-)
diff --git a/net/llc/af_llc.c b/net/llc/af_llc.c
index 5cba9199c3c9..a5c104ea477c 100644
--- a/net/llc/af_llc.c
+++ b/net/llc/af_llc.c
@@ -926,14 +926,15 @@ static int llc_ui_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
*/
static int llc_ui_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
{
+ DECLARE_SOCKADDR(struct sockaddr_llc *, addr, msg->msg_name);
struct sock *sk = sock->sk;
struct llc_sock *llc = llc_sk(sk);
- DECLARE_SOCKADDR(struct sockaddr_llc *, addr, msg->msg_name);
int flags = msg->msg_flags;
int noblock = flags & MSG_DONTWAIT;
+ int rc = -EINVAL, copied = 0, hdrlen, hh_len;
struct sk_buff *skb = NULL;
+ struct net_device *dev;
size_t size = 0;
- int rc = -EINVAL, copied = 0, hdrlen;
dprintk("%s: sending from %02X to %02X\n", __func__,
llc->laddr.lsap, llc->daddr.lsap);
@@ -953,22 +954,29 @@ static int llc_ui_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
if (rc)
goto out;
}
- hdrlen = llc->dev->hard_header_len + llc_ui_header_len(sk, addr);
+ dev = llc->dev;
+ hh_len = LL_RESERVED_SPACE(dev);
+ hdrlen = llc_ui_header_len(sk, addr);
size = hdrlen + len;
- if (size > llc->dev->mtu)
- size = llc->dev->mtu;
+ size = min_t(size_t, size, READ_ONCE(dev->mtu));
copied = size - hdrlen;
rc = -EINVAL;
if (copied < 0)
goto out;
release_sock(sk);
- skb = sock_alloc_send_skb(sk, size, noblock, &rc);
+ skb = sock_alloc_send_skb(sk, hh_len + size, noblock, &rc);
lock_sock(sk);
if (!skb)
goto out;
- skb->dev = llc->dev;
+ if (sock_flag(sk, SOCK_ZAPPED) ||
+ llc->dev != dev ||
+ hdrlen != llc_ui_header_len(sk, addr) ||
+ hh_len != LL_RESERVED_SPACE(dev) ||
+ size > READ_ONCE(dev->mtu))
+ goto out;
+ skb->dev = dev;
skb->protocol = llc_proto_type(addr->sllc_arphrd);
- skb_reserve(skb, hdrlen);
+ skb_reserve(skb, hh_len + hdrlen);
rc = memcpy_from_msg(skb_put(skb, copied), msg, copied);
if (rc)
goto out;
--
2.43.0
next prev parent reply other threads:[~2024-02-21 13:11 UTC|newest]
Thread overview: 209+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-21 13:05 [PATCH 4.19 000/202] 4.19.307-rc1 review Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 001/202] PCI: mediatek: Clear interrupt status before dispatching handler Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 002/202] include/linux/units.h: add helpers for kelvin to/from Celsius conversion Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 003/202] units: Add Watt units Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 004/202] units: change from L to UL Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 005/202] units: add the HZ macros Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 006/202] serial: sc16is7xx: set safe default SPI clock frequency Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 007/202] driver core: add device probe log helper Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 008/202] spi: introduce SPI_MODE_X_MASK macro Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 009/202] serial: sc16is7xx: add check for unsupported SPI modes during probe Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 010/202] ext4: allow for the last group to be marked as trimmed Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 011/202] crypto: api - Disallow identical driver names Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 012/202] PM: hibernate: Enforce ordering during image compression/decompression Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 013/202] hwrng: core - Fix page fault dead lock on mmap-ed hwrng Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 014/202] rpmsg: virtio: Free driver_override when rpmsg_remove() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 015/202] parisc/firmware: Fix F-extend for PDC addresses Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 016/202] nouveau/vmm: dont set addr on the fail path to avoid warning Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 017/202] block: Remove special-casing of compound pages Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 018/202] powerpc: Use always instead of always-y in for crtsavres.o Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 019/202] x86/CPU/AMD: Fix disabling XSAVES on AMD family 0x17 due to erratum Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 020/202] driver core: Annotate dev_err_probe() with __must_check Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 021/202] Revert "driver core: Annotate dev_err_probe() with __must_check" Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 022/202] driver code: print symbolic error code Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 023/202] drivers: core: fix kernel-doc markup for dev_err_probe() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 024/202] net/smc: fix illegal rmb_desc access in SMC-D connection dump Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 025/202] vlan: skip nested type that is not IFLA_VLAN_QOS_MAPPING Greg Kroah-Hartman
2024-02-21 13:05 ` Greg Kroah-Hartman [this message]
2024-02-21 13:05 ` [PATCH 4.19 027/202] llc: Drop support for ETH_P_TR_802_2 Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 028/202] net/rds: Fix UBSAN: array-index-out-of-bounds in rds_cmsg_recv Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 029/202] tracing: Ensure visibility when inserting an element into tracing_map Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 030/202] tcp: Add memory barrier to tcp_push() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 031/202] netlink: fix potential sleeping issue in mqueue_flush_file Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 032/202] net/mlx5: Use kfree(ft->g) in arfs_create_groups() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 033/202] net/mlx5e: fix a double-free in arfs_create_groups Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 034/202] netfilter: nf_tables: restrict anonymous set and map names to 16 bytes Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 035/202] fjes: fix memleaks in fjes_hw_setup Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 036/202] net: fec: fix the unhandled context fault from smmu Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 037/202] btrfs: dont warn if discard range is not aligned to sector Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 038/202] btrfs: defrag: reject unknown flags of btrfs_ioctl_defrag_range_args Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 039/202] netfilter: nf_tables: reject QUEUE/DROP verdict parameters Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 040/202] gpiolib: acpi: Ignore touchpad wakeup on GPD G1619-04 Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 041/202] drm: Dont unref the same fb many times by mistake due to deadlock handling Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 042/202] drm/bridge: nxp-ptn3460: fix i2c_master_send() error checking Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 043/202] drm/bridge: nxp-ptn3460: simplify some " Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 044/202] drm/exynos: gsc: minor fix for loop iteration in gsc_runtime_resume Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 045/202] gpio: eic-sprd: Clear interrupt after set the interrupt type Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 046/202] mips: Call lose_fpu(0) before initializing fcr31 in mips_set_personality_nan Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 047/202] tick/sched: Preserve number of idle sleeps across CPU hotplug events Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 048/202] x86/entry/ia32: Ensure s32 is sign extended to s64 Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 049/202] net/sched: cbs: Fix not adding cbs instance to list Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 050/202] powerpc/mm: Fix null-pointer dereference in pgtable_cache_add Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 051/202] powerpc: Fix build error due to is_valid_bugaddr() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 052/202] powerpc/mm: Fix build failures due to arch_reserved_kernel_pages() Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 053/202] powerpc/lib: Validate size for vector operations Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 054/202] audit: Send netlink ACK before setting connection in auditd_set Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 055/202] ACPI: video: Add quirk for the Colorful X15 AT 23 Laptop Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 056/202] PNP: ACPI: fix fortify warning Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 057/202] ACPI: extlog: fix NULL pointer dereference check Greg Kroah-Hartman
2024-02-21 13:05 ` [PATCH 4.19 058/202] FS:JFS:UBSAN:array-index-out-of-bounds in dbAdjTree Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 059/202] UBSAN: array-index-out-of-bounds in dtSplitRoot Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 060/202] jfs: fix slab-out-of-bounds Read in dtSearch Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 061/202] jfs: fix array-index-out-of-bounds in dbAdjTree Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 062/202] jfs: fix uaf in jfs_evict_inode Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 063/202] pstore/ram: Fix crash when setting number of cpus to an odd number Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 064/202] crypto: stm32/crc32 - fix parsing list of devices Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 065/202] afs: fix the usage of read_seqbegin_or_lock() in afs_find_server*() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 066/202] rxrpc_find_service_conn_rcu: fix the usage of read_seqbegin_or_lock() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 067/202] jfs: fix array-index-out-of-bounds in diNewExt Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 068/202] s390/ptrace: handle setting of fpc register correctly Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 069/202] KVM: s390: fix setting of fpc register Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 070/202] SUNRPC: Fix a suspicious RCU usage warning Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 071/202] ext4: fix inconsistent between segment fstrim and full fstrim Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 072/202] ext4: unify the type of flexbg_size to unsigned int Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 073/202] ext4: remove unnecessary check from alloc_flex_gd() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 074/202] ext4: avoid online resizing failures due to oversized flex bg Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 075/202] scsi: lpfc: Fix possible file string name overflow when updating firmware Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 076/202] PCI: Add no PM reset quirk for NVIDIA Spectrum devices Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 077/202] bonding: return -ENOMEM instead of BUG in alb_upper_dev_walk Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 078/202] ARM: dts: imx7s: Fix lcdif compatible Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 079/202] ARM: dts: imx7s: Fix nand-controller #size-cells Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 080/202] wifi: ath9k: Fix potential array-index-out-of-bounds read in ath9k_htc_txstatus() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 081/202] bpf: Add map and need_defer parameters to .map_fd_put_ptr() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 082/202] scsi: libfc: Dont schedule abort twice Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 083/202] scsi: libfc: Fix up timeout error in fc_fcp_rec_error() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 084/202] ARM: dts: rockchip: fix rk3036 hdmi ports node Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 085/202] ARM: dts: imx25/27-eukrea: Fix RTC node name Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 086/202] ARM: dts: imx: Use flash@0,0 pattern Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 087/202] ARM: dts: imx27: Fix sram node Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 088/202] ARM: dts: imx1: " Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 089/202] ARM: dts: imx27-apf27dev: Fix LED name Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 090/202] ARM: dts: imx23-sansa: Use preferred i2c-gpios properties Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 091/202] ARM: dts: imx23/28: Fix the DMA controller node name Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 092/202] md: Whenassemble the array, consult the superblock of the freshest device Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 093/202] wifi: rtl8xxxu: Add additional USB IDs for RTL8192EU devices Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 094/202] wifi: rtlwifi: rtl8723{be,ae}: using calculate_bit_shift() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 095/202] wifi: cfg80211: free beacon_ies when overridden from hidden BSS Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 096/202] f2fs: fix to check return value of f2fs_reserve_new_block() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 097/202] ASoC: doc: Fix undefined SND_SOC_DAPM_NOPM argument Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 098/202] fast_dput(): handle underflows gracefully Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 099/202] RDMA/IPoIB: Fix error code return in ipoib_mcast_join Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 100/202] drm/drm_file: fix use of uninitialized variable Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 101/202] drm/framebuffer: Fix " Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 102/202] drm/mipi-dsi: Fix detach call without attach Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 103/202] media: stk1160: Fixed high volume of stk1160_dbg messages Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 104/202] media: rockchip: rga: fix swizzling for RGB formats Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 105/202] PCI: add INTEL_HDA_ARL to pci_ids.h Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 106/202] ALSA: hda: Intel: add HDA_ARL PCI ID support Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 107/202] drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 108/202] IB/ipoib: Fix mcast list locking Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 109/202] media: ddbridge: fix an error code problem in ddb_probe Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 110/202] drm/msm/dpu: Ratelimit framedone timeout msgs Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 111/202] clk: hi3620: Fix memory leak in hi3620_mmc_clk_init() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 112/202] clk: mmp: pxa168: Fix memory leak in pxa168_clk_init() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 113/202] drm/amd/display: make flip_timestamp_in_us a 64-bit variable Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 114/202] drm/amdgpu: Let KFD sync with VM fences Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 115/202] drm/amdgpu: Drop fence check in to_amdgpu_amdkfd_fence() Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 116/202] leds: trigger: panic: Dont register panic notifier if creating the trigger failed Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 117/202] um: Fix naming clash between UML and scheduler Greg Kroah-Hartman
2024-02-21 13:06 ` [PATCH 4.19 118/202] um: Dont use vfprintf() for os_info() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 119/202] um: net: Fix return type of uml_net_start_xmit() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 120/202] mfd: ti_am335x_tscadc: Fix TI SoC dependencies Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 121/202] PCI: Only override AMD USB controller if required Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 122/202] usb: hub: Replace hardcoded quirk value with BIT() macro Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 123/202] misc: lis3lv02d_i2c: Add missing setting of the reg_ctrl callback Greg Kroah-Hartman
2024-02-21 18:16 ` Hans de Goede
2024-02-21 13:07 ` [PATCH 4.19 124/202] libsubcmd: Fix memory leak in uniq() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 125/202] =?UTF-8?q?virtio=5Fnet:=20Fix=20"=E2=80=98%d=E2=80=99=20directive?= =?UTF-8?q?=20writing=20between=201=20and=2011=20bytes=20into=20a=20region?= =?UTF-8?q?=20of=20size=2010"=20warnings?= Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 126/202] blk-mq: fix IO hang from sbitmap wakeup race Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 127/202] ceph: fix deadlock or deadcode of misusing dget() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 128/202] drm/amdgpu: Release adev->pm.fw before return in amdgpu_device_need_post() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 129/202] wifi: cfg80211: fix RCU dereference in __cfg80211_bss_update Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 130/202] scsi: isci: Fix an error code problem in isci_io_request_build() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 131/202] net: remove unneeded break Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 132/202] ixgbe: Remove non-inclusive language Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 133/202] ixgbe: Refactor returning internal error codes Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 134/202] ixgbe: Refactor overtemp event handling Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 135/202] ixgbe: Fix an error handling path in ixgbe_read_iosf_sb_reg_x550() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 136/202] ipv6: Ensure natural alignment of const ipv6 loopback and router addresses Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 137/202] llc: call sock_orphan() at release time Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 138/202] netfilter: nf_log: replace BUG_ON by WARN_ON_ONCE when putting logger Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 139/202] net: ipv4: fix a memleak in ip_setup_cork Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 140/202] af_unix: fix lockdep positive in sk_diag_dump_icons() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 141/202] net: sysfs: Fix /sys/class/net/<iface> path Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 142/202] HID: apple: Add support for the 2021 Magic Keyboard Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 143/202] HID: apple: Swap the Fn and Left Control keys on Apple keyboards Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 144/202] HID: apple: Add 2021 magic keyboard FN key mapping Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 145/202] bonding: remove print in bond_verify_device_path Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 146/202] dmaengine: fix is_slave_direction() return false when DMA_DEV_TO_DEV Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 147/202] phy: ti: phy-omap-usb2: Fix NULL pointer dereference for SRP Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 148/202] atm: idt77252: fix a memleak in open_card_ubr0 Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 149/202] hwmon: (aspeed-pwm-tacho) mutex for tach reading Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 150/202] hwmon: (coretemp) Fix out-of-bounds memory access Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 151/202] hwmon: (coretemp) Fix bogus core_id to attr name mapping Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 152/202] inet: read sk->sk_family once in inet_recv_error() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 153/202] rxrpc: Fix response to PING RESPONSE ACKs to a dead call Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 154/202] tipc: Check the bearer type before calling tipc_udp_nl_bearer_add() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 155/202] ppp_async: limit MRU to 64K Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 156/202] netfilter: nft_compat: reject unused compat flag Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 157/202] netfilter: nft_compat: restrict match/target protocol to u16 Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 158/202] net/af_iucv: clean up a try_then_request_module() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 159/202] USB: serial: qcserial: add new usb-id for Dell Wireless DW5826e Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 160/202] USB: serial: option: add Fibocom FM101-GL variant Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 161/202] USB: serial: cp210x: add ID for IMST iM871A-USB Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 162/202] Input: atkbd - skip ATKBD_CMD_SETLEDS when skipping ATKBD_CMD_GETID Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 163/202] vhost: use kzalloc() instead of kmalloc() followed by memset() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 164/202] hrtimer: Report offline hrtimer enqueue Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 165/202] btrfs: forbid creating subvol qgroups Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 166/202] btrfs: send: return EOPNOTSUPP on unknown flags Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 167/202] spi: ppc4xx: Drop write-only variable Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 168/202] ASoC: rt5645: Fix deadlock in rt5645_jack_detect_work() Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 169/202] Documentation: net-sysfs: describe missing statistics Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 170/202] net: sysfs: Fix /sys/class/net/<iface> path for statistics Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 171/202] MIPS: Add memory clobber to csum_ipv6_magic() inline assembler Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 172/202] i40e: Fix waiting for queues of all VSIs to be disabled Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 173/202] tracing/trigger: Fix to return error if failed to alloc snapshot Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 174/202] mm/writeback: fix possible divide-by-zero in wb_dirty_limits(), again Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 175/202] HID: wacom: generic: Avoid reporting a serial of 0 to userspace Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 176/202] HID: wacom: Do not register input devices until after hid_hw_start Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 177/202] USB: hub: check for alternate port before enabling A_ALT_HNP_SUPPORT Greg Kroah-Hartman
2024-02-21 13:07 ` [PATCH 4.19 178/202] usb: f_mass_storage: forbid async queue when shutdown happen Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 179/202] scsi: Revert "scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock" Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 180/202] firewire: core: correct documentation of fw_csr_string() kernel API Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 181/202] nfc: nci: free rx_data_reassembly skb on NCI device cleanup Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 182/202] xen-netback: properly sync TX responses Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 183/202] binder: signal epoll threads of self-work Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 184/202] ext4: fix double-free of blocks due to wrong extents moved_len Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 185/202] staging: iio: ad5933: fix type mismatch regression Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 186/202] ring-buffer: Clean ring_buffer_poll_wait() error return Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 187/202] serial: max310x: set default value when reading clock ready bit Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 188/202] serial: max310x: improve crystal stable clock detection Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 189/202] x86/Kconfig: Transmeta Crusoe is CPU family 5, not 6 Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 190/202] x86/mm/ident_map: Use gbpages only where full GB page should be mapped Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 191/202] ALSA: hda/conexant: Add quirk for SWS JS201D Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 192/202] nilfs2: fix data corruption in dsync block recovery for small block sizes Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 193/202] nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 194/202] nfp: use correct macro for LengthSelect in BAR config Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 195/202] irqchip/irq-brcmstb-l2: Add write memory barrier before exit Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 196/202] pmdomain: core: Move the unused cleanup to a _sync initcall Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 197/202] Revert "md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d" Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 198/202] sched/membarrier: reduce the ability to hammer on sys_membarrier Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 199/202] nilfs2: fix potential bug in end_buffer_async_write Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 200/202] nilfs2: replace WARN_ONs for invalid DAT metadata block requests Greg Kroah-Hartman
2024-02-21 15:16 ` Ryusuke Konishi
2024-02-21 13:08 ` [PATCH 4.19 201/202] lsm: new security_file_ioctl_compat() hook Greg Kroah-Hartman
2024-02-21 13:08 ` [PATCH 4.19 202/202] netfilter: nf_tables: fix pointer math issue in nft_byteorder_eval() Greg Kroah-Hartman
2024-02-21 19:48 ` [PATCH 4.19 000/202] 4.19.307-rc1 review Jon Hunter
2024-02-21 23:42 ` Shuah Khan
2024-02-22 15:16 ` Naresh Kamboju
2024-02-22 19:20 ` 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=20240221125932.623182235@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=kuniyu@amazon.com \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=syzbot+2a7024e9502df538e8ef@syzkaller.appspotmail.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;
as well as URLs for NNTP newsgroup(s).