stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, syzbot <syzkaller@googlegroups.com>,
	Eric Dumazet <edumazet@google.com>,
	Willem de Bruijn <willemb@google.com>,
	Jason Wang <jasowang@redhat.com>,
	Jakub Kicinski <kuba@kernel.org>
Subject: [PATCH 5.10 112/202] tun: prevent negative ifindex
Date: Mon, 23 Oct 2023 12:56:59 +0200	[thread overview]
Message-ID: <20231023104829.808688358@linuxfoundation.org> (raw)
In-Reply-To: <20231023104826.569169691@linuxfoundation.org>

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

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

From: Eric Dumazet <edumazet@google.com>

commit cbfbfe3aee718dc4c3c837f5d2463170ee59d78c upstream.

After commit 956db0a13b47 ("net: warn about attempts to register
negative ifindex") syzbot is able to trigger the following splat.

Negative ifindex are not supported.

WARNING: CPU: 1 PID: 6003 at net/core/dev.c:9596 dev_index_reserve+0x104/0x210
Modules linked in:
CPU: 1 PID: 6003 Comm: syz-executor926 Not tainted 6.6.0-rc4-syzkaller-g19af4a4ed414 #0
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 09/06/2023
pstate: 80400005 (Nzcv daif +PAN -UAO -TCO -DIT -SSBS BTYPE=--)
pc : dev_index_reserve+0x104/0x210
lr : dev_index_reserve+0x100/0x210
sp : ffff800096a878e0
x29: ffff800096a87930 x28: ffff0000d04380d0 x27: ffff0000d04380f8
x26: ffff0000d04380f0 x25: 1ffff00012d50f20 x24: 1ffff00012d50f1c
x23: dfff800000000000 x22: ffff8000929c21c0 x21: 00000000ffffffea
x20: ffff0000d04380e0 x19: ffff800096a87900 x18: ffff800096a874c0
x17: ffff800084df5008 x16: ffff80008051f9c4 x15: 0000000000000001
x14: 1fffe0001a087198 x13: 0000000000000000 x12: 0000000000000000
x11: 0000000000000000 x10: 0000000000000000 x9 : 0000000000000000
x8 : ffff0000d41c9bc0 x7 : 0000000000000000 x6 : 0000000000000000
x5 : ffff800091763d88 x4 : 0000000000000000 x3 : ffff800084e04748
x2 : 0000000000000001 x1 : 00000000fead71c7 x0 : 0000000000000000
Call trace:
dev_index_reserve+0x104/0x210
register_netdevice+0x598/0x1074 net/core/dev.c:10084
tun_set_iff+0x630/0xb0c drivers/net/tun.c:2850
__tun_chr_ioctl+0x788/0x2af8 drivers/net/tun.c:3118
tun_chr_ioctl+0x38/0x4c drivers/net/tun.c:3403
vfs_ioctl fs/ioctl.c:51 [inline]
__do_sys_ioctl fs/ioctl.c:871 [inline]
__se_sys_ioctl fs/ioctl.c:857 [inline]
__arm64_sys_ioctl+0x14c/0x1c8 fs/ioctl.c:857
__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+0x58/0x16c 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
irq event stamp: 11348
hardirqs last enabled at (11347): [<ffff80008a716574>] __raw_spin_unlock_irqrestore include/linux/spinlock_api_smp.h:151 [inline]
hardirqs last enabled at (11347): [<ffff80008a716574>] _raw_spin_unlock_irqrestore+0x38/0x98 kernel/locking/spinlock.c:194
hardirqs last disabled at (11348): [<ffff80008a627820>] el1_dbg+0x24/0x80 arch/arm64/kernel/entry-common.c:436
softirqs last enabled at (11138): [<ffff8000887ca53c>] spin_unlock_bh include/linux/spinlock.h:396 [inline]
softirqs last enabled at (11138): [<ffff8000887ca53c>] release_sock+0x15c/0x1b0 net/core/sock.c:3531
softirqs last disabled at (11136): [<ffff8000887ca41c>] spin_lock_bh include/linux/spinlock.h:356 [inline]
softirqs last disabled at (11136): [<ffff8000887ca41c>] release_sock+0x3c/0x1b0 net/core/sock.c:3518

Fixes: fb7589a16216 ("tun: Add ability to create tun device with given index")
Reported-by: syzbot <syzkaller@googlegroups.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Link: https://lore.kernel.org/r/20231016180851.3560092-1-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/net/tun.c |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -3064,10 +3064,11 @@ static long __tun_chr_ioctl(struct file
 	struct net *net = sock_net(&tfile->sk);
 	struct tun_struct *tun;
 	void __user* argp = (void __user*)arg;
-	unsigned int ifindex, carrier;
+	unsigned int carrier;
 	struct ifreq ifr;
 	kuid_t owner;
 	kgid_t group;
+	int ifindex;
 	int sndbuf;
 	int vnet_hdr_sz;
 	int le;
@@ -3124,7 +3125,9 @@ static long __tun_chr_ioctl(struct file
 		ret = -EFAULT;
 		if (copy_from_user(&ifindex, argp, sizeof(ifindex)))
 			goto unlock;
-
+		ret = -EINVAL;
+		if (ifindex < 0)
+			goto unlock;
 		ret = 0;
 		tfile->ifindex = ifindex;
 		goto unlock;



  parent reply	other threads:[~2023-10-23 11:47 UTC|newest]

Thread overview: 210+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-23 10:55 [PATCH 5.10 000/202] 5.10.199-rc1 review Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 001/202] RDMA/srp: Make struct scsi_cmnd and struct srp_request adjacent Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 002/202] RDMA/srp: Do not call scsi_done() from srp_abort() Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 003/202] RDMA/cxgb4: Check skb value for failure to allocate Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 004/202] perf/arm-cmn: Fix the unhandled overflow status of counter 4 to 7 Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 005/202] platform/x86: hp-wmi:: Mark driver struct with __refdata to prevent section mismatch warning Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 006/202] lib/test_meminit: fix off-by-one error in test_pages() Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 007/202] HID: logitech-hidpp: Fix kernel crash on receiver USB disconnect Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 008/202] quota: Fix slow quotaoff Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 009/202] net: prevent address rewrite in kernel_bind() Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 010/202] drm/msm/dp: do not reinitialize phy unless retry during link training Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 011/202] drm/msm/dsi: skip the wait for video mode done if not applicable Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 012/202] drm/msm/dpu: change _dpu_plane_calc_bw() to use u64 to avoid overflow Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 013/202] ravb: Fix up dma_free_coherent() call in ravb_remove() Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 014/202] ieee802154: ca8210: Fix a potential UAF in ca8210_probe Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 015/202] mlxsw: fix mlxsw_sp2_nve_vxlan_learning_set() return type Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 016/202] xen-netback: use default TX queue size for vifs Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 017/202] riscv, bpf: Factor out emit_call for kernel and bpf context Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 018/202] riscv, bpf: Sign-extend return values Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 019/202] drm/vmwgfx: fix typo of sizeof argument Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 020/202] net: macsec: indicate next pn update when offloading Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 021/202] net: phy: mscc: macsec: reject PN update requests Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 022/202] ixgbe: fix crash with empty VF macvlan list Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 023/202] net: nfc: fix races in nfc_llcp_sock_get() and nfc_llcp_sock_get_sn() Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 024/202] pinctrl: renesas: rzn1: Enable missing PINMUX Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 025/202] nfc: nci: assert requested protocol is valid Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 026/202] workqueue: Override implicit ordered attribute in workqueue_apply_unbound_cpumask() Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 027/202] Revert "spi: zynqmp-gqspi: fix clock imbalance on probe failure" Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 028/202] Revert "spi: spi-zynqmp-gqspi: Fix runtime PM imbalance in zynqmp_qspi_probe" Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 029/202] net: add sysctl accept_ra_min_rtr_lft Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 030/202] net: change accept_ra_min_rtr_lft to affect all RA lifetimes Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 031/202] net: release reference to inet6_dev pointer Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 032/202] media: mtk-jpeg: Fix use after free bug due to uncanceled work Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 033/202] dmaengine: stm32-mdma: abort resume if no ongoing transfer Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 034/202] usb: xhci: xhci-ring: Use sysdev for mapping bounce buffer Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 035/202] net: usb: dm9601: fix uninitialized variable use in dm9601_mdio_read Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 036/202] usb: dwc3: Soft reset phy on probe for host Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 037/202] usb: musb: Get the musb_qh poniter after musb_giveback Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 038/202] usb: musb: Modify the "HWVers" register address Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 039/202] iio: pressure: bmp280: Fix NULL pointer exception Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 040/202] iio: pressure: dps310: Adjust Timeout Settings Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 041/202] iio: pressure: ms5611: ms5611_prom_is_valid false negative bug Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 042/202] x86/cpu: Fix AMD erratum #1485 on Zen4-based CPUs Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 043/202] mcb: remove is_added flag from mcb_device struct Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 044/202] thunderbolt: Check that lane 1 is in CL0 before enabling lane bonding Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 045/202] libceph: use kernel_connect() Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 046/202] ceph: fix incorrect revoked caps assert in ceph_fill_file_size() Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 047/202] ceph: fix type promotion bug on 32bit systems Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 048/202] Input: powermate - fix use-after-free in powermate_config_complete Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 049/202] Input: psmouse - fix fast_reconnect function for PS/2 mode Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 050/202] Input: xpad - add PXN V900 support Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 051/202] Input: i8042 - add Fujitsu Lifebook E5411 to i8042 quirk table Greg Kroah-Hartman
2023-10-23 10:55 ` [PATCH 5.10 052/202] Input: goodix - ensure int GPIO is in input for gpio_count == 1 && gpio_int_idx == 0 case Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 053/202] tee: amdtee: fix use-after-free vulnerability in amdtee_close_session Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 054/202] cgroup: Remove duplicates in cgroup v1 tasks file Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 055/202] pinctrl: avoid unsafe code pattern in find_pinctrl() Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 056/202] counter: microchip-tcb-capture: Fix the use of internal GCLK logic Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 057/202] usb: gadget: udc-xilinx: replace memcpy with memcpy_toio Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 058/202] usb: gadget: ncm: Handle decoding of multiple NTBs in unwrap call Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 059/202] dmaengine: mediatek: Fix deadlock caused by synchronize_irq() Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 060/202] powerpc/8xx: Fix pte_access_permitted() for PAGE_NONE Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 061/202] powerpc/64e: Fix wrong test in __ptep_test_and_clear_young() Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 062/202] x86/alternatives: Disable KASAN in apply_alternatives() Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 063/202] arm64: report EL1 UNDEFs better Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 064/202] arm64: die(): pass err as long Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 065/202] arm64: consistently pass ESR_ELx to die() Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 066/202] arm64: rework FPAC exception handling Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 067/202] arm64: rework BTI " Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 068/202] arm64: allow kprobes on EL0 handlers Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 069/202] arm64: split EL0/EL1 UNDEF handlers Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 070/202] arm64: factor out EL1 SSBS emulation hook Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 071/202] arm64: factor insn read out of call_undef_hook() Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 072/202] arm64: rework EL0 MRS emulation Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 073/202] arm64: armv8_deprecated: fold ops into insn_emulation Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 074/202] arm64: armv8_deprecated move emulation functions Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 075/202] arm64: armv8_deprecated: move aarch32 helper earlier Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 076/202] arm64: armv8_deprecated: rework deprected instruction handling Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 077/202] arm64: armv8_deprecated: fix unused-function error Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 078/202] RDMA/srp: Set scmnd->result only when scmnd is not NULL Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 079/202] RDMA/srp: Fix srp_abort() Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 080/202] ravb: Fix use-after-free issue in ravb_tx_timeout_work() Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 081/202] dev_forward_skb: do not scrub skb mark within the same name space Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 082/202] lib/Kconfig.debug: do not enable DEBUG_PREEMPT by default Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 083/202] mm/memory_hotplug: rate limit page migration warnings Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 084/202] Documentation: sysctl: align cells in second content column Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 085/202] usb: hub: Guard against accesses to uninitialized BOS descriptors Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 086/202] Bluetooth: hci_event: Ignore NULL link key Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 087/202] Bluetooth: Reject connection with the device which has same BD_ADDR Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 088/202] Bluetooth: Fix a refcnt underflow problem for hci_conn Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 089/202] Bluetooth: vhci: Fix race when opening vhci device Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 090/202] Bluetooth: hci_event: Fix coding style Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 091/202] Bluetooth: avoid memcmp() out of bounds warning Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 092/202] ice: fix over-shifted variable Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 093/202] ice: reset first in crash dump kernels Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 094/202] nfc: nci: fix possible NULL pointer dereference in send_acknowledge() Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 095/202] regmap: fix NULL deref on lookup Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 096/202] KVM: x86: Mask LVTPC when handling a PMI Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 097/202] x86/sev: Disable MMIO emulation from user mode Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 098/202] x86/sev: Check IOBM for IOIO exceptions from user-space Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 099/202] x86/sev: Check for user-space IOIO pointing to kernel space Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 100/202] tcp: check mptcp-level constraints for backlog coalescing Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 101/202] netfilter: nft_payload: fix wrong mac header matching Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 102/202] nvmet-tcp: Fix a possible UAF in queue intialization setup Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 103/202] drm/i915: Retry gtt fault when out of fence registers Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 104/202] qed: fix LL2 RX buffer allocation Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 105/202] xfrm: fix a data-race in xfrm_gen_index() Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 106/202] xfrm: interface: use DEV_STATS_INC() Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 107/202] net: ipv4: fix return value check in esp_remove_trailer Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 108/202] net: ipv6: " Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 109/202] net: rfkill: gpio: prevent value glitch during probe Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 110/202] tcp: fix excessive TLP and RACK timeouts from HZ rounding Greg Kroah-Hartman
2023-10-23 10:56 ` [PATCH 5.10 111/202] tcp: tsq: relax tcp_small_queue_check() when rtx queue contains a single skb Greg Kroah-Hartman
2023-10-23 10:56 ` Greg Kroah-Hartman [this message]
2023-10-23 10:57 ` [PATCH 5.10 113/202] ipv4: fib: annotate races around nh->nh_saddr_genid and nh->nh_saddr Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 114/202] net: usb: smsc95xx: Fix an error code in smsc95xx_reset() Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 115/202] i40e: prevent crash on probe if hw registers have invalid values Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 116/202] net: dsa: bcm_sf2: Fix possible memory leak in bcm_sf2_mdio_register() Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 117/202] net/sched: sch_hfsc: upgrade rt to sc when it becomes a inner curve Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 118/202] neighbor: tracing: Move pin6 inside CONFIG_IPV6=y section Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 119/202] netfilter: nft_set_rbtree: .deactivate fails if element has expired Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 120/202] net: pktgen: Fix interface flags printing Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 121/202] thunderbolt: Workaround an IOMMU fault on certain systems with Intel Maple Ridge Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 122/202] resource: Add irqresource_disabled() Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 123/202] ACPI: Drop acpi_dev_irqresource_disabled() Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 124/202] ACPI: resources: Add DMI-based legacy IRQ override quirk Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 125/202] ACPI: resource: Skip IRQ override on Asus Vivobook K3402ZA/K3502ZA Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 126/202] ACPI: resource: Add ASUS model S5402ZA to quirks Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 127/202] ACPI: resource: Skip IRQ override on Asus Vivobook S5602ZA Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 128/202] ACPI: resource: Add Asus ExpertBook B2502 to Asus quirks Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 129/202] ACPI: resource: Skip IRQ override on Asus Expertbook B2402CBA Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 130/202] ACPI: resource: Skip IRQ override on ASUS ExpertBook B1502CBA Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 131/202] ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CBA Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 132/202] selftests/vm: make charge_reserved_hugetlb.sh work with existing cgroup setting Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 133/202] selftests/mm: fix awk usage in charge_reserved_hugetlb.sh and hugetlb_reparenting_test.sh that may cause error Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 134/202] usb: core: Track SuperSpeed Plus GenXxY Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 135/202] xhci: cleanup xhci_hub_control port references Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 136/202] xhci: move port specific items such as state completions to port structure Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 137/202] xhci: rename resume_done to resume_timestamp Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 138/202] xhci: clear usb2 resume related variables in one place Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 139/202] xhci: decouple usb2 port resume and get_port_status request handling Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 140/202] xhci: track port suspend state correctly in unsuccessful resume cases Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 141/202] serial: 8250: omap: Fix imprecise external abort for omap_8250_pm() Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 142/202] serial: 8250_omap: Fix errors with no_console_suspend Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 143/202] drm/amd/display: only check available pipe to disable vbios mode Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 144/202] drm/amd/display: Dont set dpms_off for seamless boot Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 145/202] drm/connector: Give connector sysfs devices there own device_type Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 146/202] drm/connector: Add a fwnode pointer to drm_connector and register with ACPI (v2) Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 147/202] drm/connector: Add drm_connector_find_by_fwnode() function (v3) Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 148/202] drm/connector: Add support for out-of-band hotplug notification (v3) Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 149/202] usb: typec: altmodes/displayport: Notify drm subsys of hotplug events Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 150/202] usb: typec: altmodes/displayport: Signal hpd low when exiting mode Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 151/202] ARM: dts: ti: omap: Fix noisy serial with overrun-throttle-ms for mapphone Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 152/202] btrfs: return -EUCLEAN for delayed tree ref with a ref count not equals to 1 Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 153/202] btrfs: initialize start_slot in btrfs_log_prealloc_extents Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 154/202] i2c: mux: Avoid potential false error message in i2c_mux_add_adapter Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 155/202] overlayfs: set ctime when setting mtime and atime Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 156/202] gpio: timberdale: Fix potential deadlock on &tgpio->lock Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 157/202] ata: libata-eh: Fix compilation warning in ata_eh_link_report() Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 158/202] tracing: relax trace_event_eval_update() execution with cond_resched() Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 159/202] HID: holtek: fix slab-out-of-bounds Write in holtek_kbd_input_event Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 160/202] Bluetooth: Avoid redundant authentication Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 161/202] Bluetooth: hci_core: Fix build warnings Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 162/202] wifi: cfg80211: Fix 6GHz scan configuration Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 163/202] wifi: mac80211: allow transmitting EAPOL frames with tainted key Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 164/202] wifi: cfg80211: avoid leaking stack data into trace Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 165/202] regulator/core: Revert "fix kobject release warning and memory leak in regulator_register()" Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 166/202] sky2: Make sure there is at least one frag_addr available Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 167/202] ipv4/fib: send notify when delete source address routes Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 168/202] drm: panel-orientation-quirks: Add quirk for One Mix 2S Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 169/202] btrfs: fix some -Wmaybe-uninitialized warnings in ioctl.c Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 170/202] HID: multitouch: Add required quirk for Synaptics 0xcd7e device Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 171/202] platform/x86: touchscreen_dmi: Add info for the Positivo C4128B Greg Kroah-Hartman
2023-10-23 10:57 ` [PATCH 5.10 172/202] net/mlx5: Handle fw tracer change ownership event based on MTRC Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 173/202] Bluetooth: hci_event: Fix using memcmp when comparing keys Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 174/202] mtd: rawnand: qcom: Unmap the right resource upon probe failure Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 175/202] mtd: rawnand: marvell: Ensure program page operations are successful Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 176/202] mtd: rawnand: arasan: " Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 177/202] mtd: spinand: micron: correct bitmask for ecc status Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 178/202] mtd: physmap-core: Restore map_rom fallback Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 179/202] mmc: core: sdio: hold retuning if sdio in 1-bit mode Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 180/202] mmc: core: Capture correct oemid-bits for eMMC cards Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 181/202] Revert "pinctrl: avoid unsafe code pattern in find_pinctrl()" Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 182/202] pNFS: Fix a hang in nfs4_evict_inode() Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 183/202] ACPI: irq: Fix incorrect return value in acpi_register_gsi() Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 184/202] nvme-pci: add BOGUS_NID for Intel 0a54 device Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 185/202] nvme-rdma: do not try to stop unallocated queues Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 186/202] USB: serial: option: add Telit LE910C4-WWX 0x1035 composition Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 187/202] USB: serial: option: add entry for Sierra EM9191 with new firmware Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 188/202] USB: serial: option: add Fibocom to DELL custom modem FM101R-GL Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 189/202] perf: Disallow mis-matched inherited group reads Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 190/202] s390/pci: fix iommu bitmap allocation Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 191/202] platform/x86: asus-wmi: Change ASUS_WMI_BRN_DOWN code from 0x20 to 0x2e Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 192/202] platform/x86: asus-wmi: Map 0x2a code, Ignore 0x2b and 0x2c events Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 193/202] gpio: vf610: set value before the direction to avoid a glitch Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 194/202] ASoC: pxa: fix a memory leak in probe() Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 195/202] gpio: vf610: make irq_chip immutable Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 196/202] gpio: vf610: mask the gpio irq in system suspend and support wakeup Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 197/202] phy: mapphone-mdm6600: Fix runtime disable on probe Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 198/202] phy: mapphone-mdm6600: Fix runtime PM for remove Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 199/202] phy: mapphone-mdm6600: Fix pinctrl_pm handling for sleep pins Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 200/202] Bluetooth: hci_sock: fix slab oob read in create_monitor_event Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 201/202] Bluetooth: hci_sock: Correctly bounds check and pad HCI_MON_NEW_INDEX name Greg Kroah-Hartman
2023-10-23 10:58 ` [PATCH 5.10 202/202] xfrm6: fix inet6_dev refcount underflow problem Greg Kroah-Hartman
2023-10-23 15:29 ` [PATCH 5.10 000/202] 5.10.199-rc1 review Daniel Díaz
2023-10-23 18:01 ` Pavel Machek
2023-10-23 18:56 ` Florian Fainelli
2023-10-24  7:50 ` Dominique Martinet
2023-10-24  8:31   ` Greg Kroah-Hartman
2023-10-24 12:36 ` luomeng
2023-10-25 19:01 ` Jon Hunter

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=20231023104829.808688358@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=edumazet@google.com \
    --cc=jasowang@redhat.com \
    --cc=kuba@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    --cc=syzkaller@googlegroups.com \
    --cc=willemb@google.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).