linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Eric Dumazet <edumazet@google.com>,
	syzbot <syzkaller@googlegroups.com>,
	Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 107/177] sit: do not call ipip6_dev_free() from sit_init_net()
Date: Mon, 20 Dec 2021 15:34:17 +0100	[thread overview]
Message-ID: <20211220143043.683432394@linuxfoundation.org> (raw)
In-Reply-To: <20211220143040.058287525@linuxfoundation.org>

From: Eric Dumazet <edumazet@google.com>

[ Upstream commit e28587cc491ef0f3c51258fdc87fbc386b1d4c59 ]

ipip6_dev_free is sit dev->priv_destructor, already called
by register_netdevice() if something goes wrong.

Alternative would be to make ipip6_dev_free() robust against
multiple invocations, but other drivers do not implement this
strategy.

syzbot reported:

dst_release underflow
WARNING: CPU: 0 PID: 5059 at net/core/dst.c:173 dst_release+0xd8/0xe0 net/core/dst.c:173
Modules linked in:
CPU: 1 PID: 5059 Comm: syz-executor.4 Not tainted 5.16.0-rc5-syzkaller #0
Hardware name: Google Google Compute Engine/Google Compute Engine, BIOS Google 01/01/2011
RIP: 0010:dst_release+0xd8/0xe0 net/core/dst.c:173
Code: 4c 89 f2 89 d9 31 c0 5b 41 5e 5d e9 da d5 44 f9 e8 1d 90 5f f9 c6 05 87 48 c6 05 01 48 c7 c7 80 44 99 8b 31 c0 e8 e8 67 29 f9 <0f> 0b eb 85 0f 1f 40 00 53 48 89 fb e8 f7 8f 5f f9 48 83 c3 a8 48
RSP: 0018:ffffc9000aa5faa0 EFLAGS: 00010246
RAX: d6894a925dd15a00 RBX: 00000000ffffffff RCX: 0000000000040000
RDX: ffffc90005e19000 RSI: 000000000003ffff RDI: 0000000000040000
RBP: 0000000000000000 R08: ffffffff816a1f42 R09: ffffed1017344f2c
R10: ffffed1017344f2c R11: 0000000000000000 R12: 0000607f462b1358
R13: 1ffffffff1bfd305 R14: ffffe8ffffcb1358 R15: dffffc0000000000
FS:  00007f66c71a2700(0000) GS:ffff8880b9a00000(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
CR2: 00007f88aaed5058 CR3: 0000000023e0f000 CR4: 00000000003506f0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
Call Trace:
 <TASK>
 dst_cache_destroy+0x107/0x1e0 net/core/dst_cache.c:160
 ipip6_dev_free net/ipv6/sit.c:1414 [inline]
 sit_init_net+0x229/0x550 net/ipv6/sit.c:1936
 ops_init+0x313/0x430 net/core/net_namespace.c:140
 setup_net+0x35b/0x9d0 net/core/net_namespace.c:326
 copy_net_ns+0x359/0x5c0 net/core/net_namespace.c:470
 create_new_namespaces+0x4ce/0xa00 kernel/nsproxy.c:110
 unshare_nsproxy_namespaces+0x11e/0x180 kernel/nsproxy.c:226
 ksys_unshare+0x57d/0xb50 kernel/fork.c:3075
 __do_sys_unshare kernel/fork.c:3146 [inline]
 __se_sys_unshare kernel/fork.c:3144 [inline]
 __x64_sys_unshare+0x34/0x40 kernel/fork.c:3144
 do_syscall_x64 arch/x86/entry/common.c:50 [inline]
 do_syscall_64+0x44/0xd0 arch/x86/entry/common.c:80
 entry_SYSCALL_64_after_hwframe+0x44/0xae
RIP: 0033:0x7f66c882ce99
Code: ff ff c3 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 c7 c1 bc ff ff ff f7 d8 64 89 01 48
RSP: 002b:00007f66c71a2168 EFLAGS: 00000246 ORIG_RAX: 0000000000000110
RAX: ffffffffffffffda RBX: 00007f66c893ff60 RCX: 00007f66c882ce99
RDX: 0000000000000000 RSI: 0000000000000000 RDI: 0000000048040200
RBP: 00007f66c8886ff1 R08: 0000000000000000 R09: 0000000000000000
R10: 0000000000000000 R11: 0000000000000246 R12: 0000000000000000
R13: 00007fff6634832f R14: 00007f66c71a2300 R15: 0000000000022000
 </TASK>

Fixes: cf124db566e6 ("net: Fix inconsistent teardown and release of private netdev state.")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: syzbot <syzkaller@googlegroups.com>
Link: https://lore.kernel.org/r/20211216111741.1387540-1-eric.dumazet@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/ipv6/sit.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c
index ef0c7a7c18e23..626cb53aa57ab 100644
--- a/net/ipv6/sit.c
+++ b/net/ipv6/sit.c
@@ -1933,7 +1933,6 @@ static int __net_init sit_init_net(struct net *net)
 	return 0;
 
 err_reg_dev:
-	ipip6_dev_free(sitn->fb_tunnel_dev);
 	free_netdev(sitn->fb_tunnel_dev);
 err_alloc_dev:
 	return err;
-- 
2.33.0




  parent reply	other threads:[~2021-12-20 15:17 UTC|newest]

Thread overview: 183+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-20 14:32 [PATCH 5.15 000/177] 5.15.11-rc1 review Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 001/177] reset: tegra-bpmp: Revert Handle errors in BPMP response Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 002/177] KVM: VMX: clear vmx_x86_ops.sync_pir_to_irr if APICv is disabled Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 003/177] KVM: selftests: Make sure kvm_create_max_vcpus test wont hit RLIMIT_NOFILE Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 004/177] KVM: downgrade two BUG_ONs to WARN_ON_ONCE Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 005/177] x86/kvm: remove unused ack_notifier callbacks Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 006/177] KVM: X86: Fix tlb flush for tdp in kvm_invalidate_pcid() Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 007/177] mac80211: fix rate control for retransmitted frames Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 008/177] mac80211: fix regression in SSN handling of addba tx Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 009/177] mac80211: mark TX-during-stop for TX in in_reconfig Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 010/177] mac80211: send ADDBA requests using the tid/queue of the aggregation session Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 011/177] mac80211: validate extended element ID is present Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 012/177] firmware: arm_scpi: Fix string overflow in SCPI genpd driver Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 013/177] bpf: Fix kernel address leakage in atomic fetch Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 014/177] bpf, selftests: Add test case for atomic fetch on spilled pointer Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 015/177] bpf: Fix signed bounds propagation after mov32 Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 016/177] bpf: Make 32->64 bounds propagation slightly more robust Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 017/177] bpf, selftests: Add test case trying to taint map value pointer Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 018/177] bpf: Fix kernel address leakage in atomic cmpxchgs r0 aux reg Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 019/177] bpf, selftests: Update test case for atomic cmpxchg on r0 with pointer Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 020/177] vduse: fix memory corruption in vduse_dev_ioctl() Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 021/177] vduse: check that offset is within bounds in get_config() Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 022/177] virtio_ring: Fix querying of maximum DMA mapping size for virtio device Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 023/177] vdpa: check that offsets are within bounds Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 024/177] s390/entry: fix duplicate tracking of irq nesting level Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 025/177] recordmcount.pl: look for jgnop instruction as well as bcrl on s390 Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 026/177] arm64: dts: ten64: remove redundant interrupt declaration for gpio-keys Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 027/177] ceph: fix up non-directory creation in SGID directories Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 028/177] dm btree remove: fix use after free in rebalance_children() Greg Kroah-Hartman
2021-12-20 14:32 ` [PATCH 5.15 029/177] audit: improve robustness of the audit queue handling Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 030/177] btrfs: convert latest_bdev type to btrfs_device and rename Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 031/177] btrfs: use latest_dev in btrfs_show_devname Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 032/177] btrfs: update latest_dev when we create a sprout device Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 033/177] btrfs: remove stale comment about the btrfs_show_devname Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 034/177] scsi: ufs: core: Retry START_STOP on UNIT_ATTENTION Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 035/177] drm/i915/hdmi: convert intel_hdmi_to_dev to intel_hdmi_to_i915 Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 036/177] drm/i915/hdmi: Turn DP++ TMDS output buffers back on in encoder->shutdown() Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 037/177] pinctrl: amd: Fix wakeups when IRQ is shared with SCI Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 038/177] arm64: dts: rockchip: remove mmc-hs400-enhanced-strobe from rk3399-khadas-edge Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 039/177] arm64: dts: rockchip: fix rk3308-roc-cc vcc-sd supply Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 040/177] arm64: dts: rockchip: fix rk3399-leez-p710 vcc3v3-lan supply Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 041/177] arm64: dts: rockchip: fix audio-supply for Rock Pi 4 Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 042/177] arm64: dts: rockchip: fix poweroff on helios64 Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 043/177] dmaengine: idxd: add halt interrupt support Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 044/177] dmaengine: idxd: fix calling wq quiesce inside spinlock Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 045/177] mac80211: track only QoS data frames for admission control Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 046/177] hv: utils: add PTP_1588_CLOCK to Kconfig to fix build Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 047/177] tee: amdtee: fix an IS_ERR() vs NULL bug Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 048/177] ceph: fix duplicate increment of opened_inodes metric Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 049/177] ceph: initialize pathlen variable in reconnect_caps_cb Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 050/177] ARM: socfpga: dts: fix qspi node compatible Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 051/177] arm64: dts: imx8mq: remove interconnect property from lcdif Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 052/177] clk: Dont parent clks until the parent is fully registered Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 053/177] soc: imx: Register SoC device only on i.MX boards Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 054/177] iwlwifi: mvm: dont crash on invalid rate w/o STA Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 055/177] virtio: always enter drivers/virtio/ Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 056/177] virtio/vsock: fix the transport to work with VMADDR_CID_ANY Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 057/177] vdpa: Consider device id larger than 31 Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 058/177] Revert "drm/fb-helper: improve DRM fbdev emulation device names" Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 059/177] selftests: net: Correct ping6 expected rc from 2 to 1 Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 060/177] s390/kexec_file: fix error handling when applying relocations Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 061/177] sch_cake: do not call cake_destroy() from cake_init() Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 062/177] inet_diag: fix kernel-infoleak for UDP sockets Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 063/177] netdevsim: dont overwrite read only ethtool parms Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 064/177] selftests: icmp_redirect: pass xfail=0 to log_test() Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 065/177] net: hns3: fix use-after-free bug in hclgevf_send_mbx_msg Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 066/177] net: hns3: fix race condition in debugfs Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 067/177] selftests: Add duplicate config only for MD5 VRF tests Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 068/177] selftests: Fix raw socket bind tests with VRF Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 069/177] selftests: Fix IPv6 address bind tests Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 070/177] dmaengine: idxd: fix missed completion on abort path Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 071/177] dmaengine: st_fdma: fix MODULE_ALIAS Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 072/177] drm: simpledrm: fix wrong unit with pixel clock Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 073/177] net/sched: sch_ets: dont remove idle classes from the round-robin list Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 074/177] selftests/net: toeplitz: fix udp option Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 075/177] net: dsa: mv88e6xxx: Unforce speed & duplex in mac_link_down() Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 076/177] selftest/net/forwarding: declare NETIFS p9 p10 Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 077/177] mptcp: never allow the PM to close a listener subflow Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 078/177] drm/ast: potential dereference of null pointer Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 079/177] drm/i915/display: Fix an unsigned subtraction which can never be negative Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 080/177] mac80211: agg-tx: dont schedule_and_wake_txq() under sta->lock Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 081/177] cfg80211: Acquire wiphy mutex on regulatory work Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 082/177] mac80211: fix lookup when adding AddBA extension element Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 083/177] net: stmmac: fix tc flower deletion for VLAN priority Rx steering Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 084/177] flow_offload: return EOPNOTSUPP for the unsupported mpls action type Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 085/177] rds: memory leak in __rds_conn_create() Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 086/177] ice: Use div64_u64 instead of div_u64 in adjfine Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 087/177] ice: Dont put stale timestamps in the skb Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 088/177] drm/amd/display: Set exit_optimized_pwr_state for DCN31 Greg Kroah-Hartman
2021-12-20 14:33 ` [PATCH 5.15 089/177] drm/amd/pm: fix a potential gpu_metrics_table memory leak Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 090/177] mptcp: remove tcp ulp setsockopt support Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 091/177] mptcp: clear kern flag from fallback sockets Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 092/177] mptcp: fix deadlock in __mptcp_push_pending() Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 093/177] soc/tegra: fuse: Fix bitwise vs. logical OR warning Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 094/177] igb: Fix removal of unicast MAC filters of VFs Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 095/177] igbvf: fix double free in `igbvf_probe` Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 096/177] igc: Fix typo in i225 LTR functions Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 097/177] ixgbe: Document how to enable NBASE-T support Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 098/177] ixgbe: set X550 MDIO speed before talking to PHY Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 099/177] netdevsim: Zero-initialize memory for new maps value in function nsim_bpf_map_alloc Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 100/177] net/packet: rx_owner_map depends on pg_vec Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 101/177] net: stmmac: dwmac-rk: fix oob read in rk_gmac_setup Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 102/177] sfc_ef100: potential dereference of null pointer Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 103/177] dsa: mv88e6xxx: fix debug print for SPEED_UNFORCED Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 104/177] net: Fix double 0x prefix print in SKB dump Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 105/177] net/smc: Prevent smc_release() from long blocking Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 106/177] net: systemport: Add global locking for descriptor lifecycle Greg Kroah-Hartman
2021-12-20 14:34 ` Greg Kroah-Hartman [this message]
2021-12-20 14:34 ` [PATCH 5.15 108/177] afs: Fix mmap Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 109/177] arm64: kexec: Fix missing error code ret warning in load_other_segments() Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 110/177] bpf: Fix extable fixup offset Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 111/177] bpf, selftests: Fix racing issue in btf_skc_cls_ingress test Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 112/177] powerpc/85xx: Fix oops when CONFIG_FSL_PMC=n Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 113/177] USB: gadget: bRequestType is a bitfield, not a enum Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 114/177] Revert "usb: early: convert to readl_poll_timeout_atomic()" Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 115/177] KVM: x86: Drop guest CPUID check for host initiated writes to MSR_IA32_PERF_CAPABILITIES Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 116/177] tty: n_hdlc: make n_hdlc_tty_wakeup() asynchronous Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 117/177] USB: NO_LPM quirk Lenovo USB-C to Ethernet Adapher(RTL8153-04) Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 118/177] usb: dwc2: fix STM ID/VBUS detection startup delay in dwc2_driver_probe Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 119/177] PCI/MSI: Clear PCI_MSIX_FLAGS_MASKALL on error Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 120/177] PCI/MSI: Mask MSI-X vectors only on success Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 121/177] usb: xhci-mtk: fix list_del warning when enable list debug Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 122/177] usb: xhci: Extend support for runtime power management for AMDs Yellow carp Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 123/177] usb: cdnsp: Fix incorrect status for control request Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 124/177] usb: cdnsp: Fix incorrect calling of cdnsp_died function Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 125/177] usb: cdnsp: Fix issue in cdnsp_log_ep trace event Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 126/177] usb: cdnsp: Fix lack of spin_lock_irqsave/spin_lock_restore Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 127/177] usb: typec: tcpm: fix tcpm unregister port but leave a pending timer Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 128/177] usb: gadget: u_ether: fix race in setting MAC address in setup phase Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 129/177] USB: serial: cp210x: fix CP2105 GPIO registration Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 130/177] USB: serial: option: add Telit FN990 compositions Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 131/177] selinux: fix sleeping function called from invalid context Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 132/177] btrfs: fix memory leak in __add_inode_ref() Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 133/177] btrfs: fix double free of anon_dev after failure to create subvolume Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 134/177] btrfs: check WRITE_ERR when trying to read an extent buffer Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 135/177] btrfs: fix missing blkdev_put() call in btrfs_scan_one_device() Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 136/177] zonefs: add MODULE_ALIAS_FS Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 137/177] iocost: Fix divide-by-zero on donation from low hweight cgroup Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 138/177] serial: 8250_fintek: Fix garbled text for console Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 139/177] timekeeping: Really make sure wall_to_monotonic isnt positive Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 140/177] cifs: sanitize multiple delimiters in prepath Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 141/177] locking/rtmutex: Fix incorrect condition in rtmutex_spin_on_owner() Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 142/177] riscv: dts: unleashed: Add gpio card detect to mmc-spi-slot Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 143/177] riscv: dts: unmatched: " Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 144/177] perf inject: Fix segfault due to close without open Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 145/177] perf inject: Fix segfault due to perf_data__fd() " Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 146/177] libata: if T_LENGTH is zero, dma direction should be DMA_NONE Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 147/177] powerpc/module_64: Fix livepatching for RO modules Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 148/177] drm/amdgpu: correct register access for RLC_JUMP_TABLE_RESTORE Greg Kroah-Hartman
2021-12-20 14:34 ` [PATCH 5.15 149/177] drm/amdgpu: dont override default ECO_BITs setting Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 150/177] drm/amd/pm: fix reading SMU FW version from amdgpu_firmware_info on YC Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 151/177] Revert "can: m_can: remove support for custom bit timing" Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 152/177] can: m_can: make custom bittiming fields const Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 153/177] can: m_can: pci: use custom bit timings for Elkhart Lake Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 154/177] ARM: dts: imx6ull-pinfunc: Fix CSI_DATA07__ESAI_TX0 pad name Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 155/177] xsk: Do not sleep in poll() when need_wakeup set Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 156/177] mptcp: add missing documented NL params Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 157/177] bpf, x64: Factor out emission of REX byte in more cases Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 158/177] bpf: Fix extable address check Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 159/177] USB: core: Make do_proc_control() and do_proc_bulk() killable Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 160/177] media: mxl111sf: change mutex_init() location Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 161/177] fuse: annotate lock in fuse_reverse_inval_entry() Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 162/177] ovl: fix warning in ovl_create_real() Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 163/177] scsi: scsi_debug: Dont call kcalloc() if size arg is zero Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 164/177] scsi: scsi_debug: Fix type in min_t to avoid stack OOB Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 165/177] scsi: scsi_debug: Sanity check block descriptor length in resp_mode_select() Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 166/177] io-wq: remove spurious bit clear on task_work addition Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 167/177] io-wq: check for wq exit after adding new worker task_work Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 168/177] rcu: Mark accesses to rcu_state.n_force_qs Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 169/177] io-wq: drop wqe lock before creating new worker Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 170/177] bus: ti-sysc: Fix variable set but not used warning for reinit_modules Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 171/177] selftests/damon: test debugfs file reads/writes with huge count Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 172/177] Revert "xsk: Do not sleep in poll() when need_wakeup set" Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 173/177] xen/blkfront: harden blkfront against event channel storms Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 174/177] xen/netfront: harden netfront " Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 175/177] xen/console: harden hvc_xen " Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 176/177] xen/netback: fix rx queue stall detection Greg Kroah-Hartman
2021-12-20 14:35 ` [PATCH 5.15 177/177] xen/netback: dont queue unlimited number of packages Greg Kroah-Hartman
2021-12-20 23:17 ` [PATCH 5.15 000/177] 5.15.11-rc1 review Shuah Khan
2021-12-21 10:05 ` Naresh Kamboju
2021-12-21 10:56 ` Rudi Heitbaum
2021-12-21 18:10 ` Florian Fainelli
2021-12-21 23:14 ` Guenter Roeck

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=20211220143043.683432394@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=edumazet@google.com \
    --cc=kuba@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=syzkaller@googlegroups.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).