From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Yeoreum Yun <yeoreum.yun@arm.com>,
"Peter Zijlstra (Intel)" <peterz@infradead.org>,
David Wang <00107082@163.com>, Ian Klatzco <iklatzco@gmail.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 049/452] perf: Fix dangling cgroup pointer in cpuctx
Date: Tue, 16 Jun 2026 20:24:36 +0530 [thread overview]
Message-ID: <20260616145120.525872058@linuxfoundation.org> (raw)
In-Reply-To: <20260616145117.796205997@linuxfoundation.org>
6.6-stable review patch. If anyone has any objections, please let me know.
------------------
From: Yeoreum Yun <yeoreum.yun@arm.com>
[ Upstream commit 3b7a34aebbdf2a4b7295205bf0c654294283ec82 ]
Commit a3c3c6667("perf/core: Fix child_total_time_enabled accounting
bug at task exit") moves the event->state update to before
list_del_event(). This makes the event->state test in list_del_event()
always false; never calling perf_cgroup_event_disable().
As a result, cpuctx->cgrp won't be cleared properly; causing havoc.
Fixes: a3c3c6667("perf/core: Fix child_total_time_enabled accounting bug at task exit")
Signed-off-by: Yeoreum Yun <yeoreum.yun@arm.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Tested-by: David Wang <00107082@163.com>
Link: https://lore.kernel.org/all/aD2TspKH%2F7yvfYoO@e129823.arm.com/
Signed-off-by: Ian Klatzco <iklatzco@gmail.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
kernel/events/core.c | 16 ++++------------
1 file changed, 4 insertions(+), 12 deletions(-)
diff --git a/kernel/events/core.c b/kernel/events/core.c
index eba5eb6fcb8762..a4187dea6402a7 100644
--- a/kernel/events/core.c
+++ b/kernel/events/core.c
@@ -2056,18 +2056,6 @@ list_del_event(struct perf_event *event, struct perf_event_context *ctx)
if (event->group_leader == event)
del_event_from_groups(event, ctx);
- /*
- * If event was in error state, then keep it
- * that way, otherwise bogus counts will be
- * returned on read(). The only way to get out
- * of error state is by explicit re-enabling
- * of the event
- */
- if (event->state > PERF_EVENT_STATE_OFF) {
- perf_cgroup_event_disable(event, ctx);
- perf_event_set_state(event, PERF_EVENT_STATE_OFF);
- }
-
ctx->generation++;
event->pmu_ctx->nr_events--;
}
@@ -2401,6 +2389,10 @@ __perf_remove_from_context(struct perf_event *event,
state = PERF_EVENT_STATE_DEAD;
}
event_sched_out(event, ctx);
+
+ if (event->state > PERF_EVENT_STATE_OFF)
+ perf_cgroup_event_disable(event, ctx);
+
perf_event_set_state(event, min(event->state, state));
if (flags & DETACH_GROUP)
perf_group_detach(event);
--
2.53.0
next prev parent reply other threads:[~2026-06-16 16:43 UTC|newest]
Thread overview: 455+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-16 14:53 [PATCH 6.6 000/452] 6.6.143-rc1 review Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 001/452] Input: usbtouchscreen - clamp NEXIO data_len/x_len to URB buffer size Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 002/452] net/sched: cls_fw: fix NULL dereference of "old" filters before change() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 003/452] net: mctp: ensure our nlmsg responses are initialised Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 004/452] net/sched: sch_sfb: Replace direct dequeue call with peek and qdisc_dequeue_peeked Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 005/452] drm: Remove plane hsub/vsub alignment requirement for core helpers Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 006/452] bcache: fix uninitialized closure object Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 007/452] net: cpsw_new: Fix potential unregister of netdev that has not been registered yet Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 008/452] nfc: llcp: Fix use-after-free in llcp_sock_release() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 009/452] nfc: llcp: Fix use-after-free race in nfc_llcp_recv_cc() Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 010/452] xfrm: Check for underflow in xfrm_state_mtu Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 011/452] nfc: nxp-nci: i2c: use rising-edge IRQ on ACPI systems Greg Kroah-Hartman
2026-06-16 14:53 ` [PATCH 6.6 012/452] netfilter: synproxy: refresh tcphdr after skb_ensure_writable Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 013/452] netfilter: xt_cpu: prefer raw_smp_processor_id Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 014/452] netfilter: ebtables: fix OOB read in compat_mtw_from_user Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 015/452] netfilter: bitwise: rename some boolean operation functions Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 016/452] netfilter: bitwise: add support for doing AND, OR and XOR directly Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 017/452] netfilter: nf_tables: fix dst corruption in same register operation Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 018/452] tun: free page on short-frame rejection in tun_xdp_one() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 019/452] tun: free page on build_skb failure " Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 020/452] vsock: keep poll shutdown state consistent Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 021/452] net: netlink: fix sending unassigned nsid after assigned one Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 022/452] net: netlink: dont set nsid on local notifications Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 023/452] net/smc: Do not re-initialize smc hashtables Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 024/452] net/iucv: fix locking in .getsockopt Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 025/452] scsi: core: Run queues for all non-SDEV_DEL devices from scsi_run_host_queues Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 026/452] ipv4: free net->ipv4.sysctl_local_reserved_ports after unregister_net_sysctl_table() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 027/452] ASoC: Intel: bytcht_es8316: Fix MCLK leak on init errors Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 028/452] net: hsr: fix potential OOB access in supervision frame handling Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 029/452] gpio: mxc: fix irq_high handling Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 030/452] tunnels: load network headers after skb_cow() in iptunnel_pmtud_build_icmp[v6]() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 031/452] vxlan: do not reuse cached ip_hdr() value after skb_tunnel_check_pmtu() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 032/452] tunnels: do not assume transport header in iptunnel_pmtud_check_icmp() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 033/452] ksmbd: fix FSCTL permission bypass by adding a permission check for FSCTL_SET_SPARSE Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 034/452] ASoC: codecs: simple-mux: Fix enum control bounds check Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 035/452] Bluetooth: 6lowpan: check skb_clone() return value in send_mcast_pkt() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 036/452] bonding: refuse to enslave CAN devices Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 037/452] ethtool: eeprom: add missing ethnl_ops_begin() / _complete() during fallback Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 038/452] ethtool: eeprom: add more safeties to EEPROM Netlink fallback Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 039/452] ipv6: rpl: fix hdrlen overflow in ipv6_rpl_srh_decompress() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 040/452] net/sched: Revert "net/sched: Restrict conditions for adding duplicating netems to qdisc tree" Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 041/452] Bluetooth: l2cap: clear chan->ident on ECRED reconfiguration success Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 042/452] Bluetooth: L2CAP: Fix possible crash on l2cap_ecred_conn_rsp Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 043/452] gpio: rockchip: convert bank->clk to devm_clk_get_enabled() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 044/452] net: mana: Add NULL guards in teardown path to prevent panic on attach failure Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 045/452] sctp: fix race between sctp_wait_for_connect and peeloff Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 046/452] ipv6: fix possible infinite loop in rt6_fill_node() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 047/452] ipv6: fix possible infinite loop in fib6_select_path() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 048/452] net: skbuff: fix pskb_carve leaking zcopy pages Greg Kroah-Hartman
2026-06-16 14:54 ` Greg Kroah-Hartman [this message]
2026-06-16 14:54 ` [PATCH 6.6 050/452] batman-adv: v: stop OGMv2 on disabled interface Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 051/452] batman-adv: tvlv: abort OGM send on tvlv append failure Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 052/452] batman-adv: tt: reject oversized local TVLV buffers Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 053/452] batman-adv: bla: avoid NULL-ptr deref for claim via dropped interface Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 054/452] batman-adv: tvlv: reject oversized TVLV packets Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 055/452] batman-adv: iv: recover OGM scheduling after forward packet error Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 056/452] batman-adv: tp_meter: avoid role confusion in tp_list Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 057/452] net: af_key: zero aligned sockaddr tail in PF_KEY exports Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 058/452] batman-adv: tp_meter: directly shut down timer on cleanup Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 059/452] batman-adv: tt: fix TOCTOU race for reported vlans Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 060/452] batman-adv: tt: avoid empty VLAN responses Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 061/452] batman-adv: bla: avoid double decrement of bla.num_requests Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 062/452] mm/page_alloc: clear page->private in free_pages_prepare() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 063/452] media: rc: fix race between unregister and urb/irq callbacks Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 064/452] media: rc: ttusbir: fix inverted error logic Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 065/452] drm/fbdev-helper: Set and clear VGA switcheroo client from fb_info Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 066/452] drm, fbcon, vga_switcheroo: Avoid race condition in fbcon setup Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 067/452] inet: frags: add inet_frag_queue_flush() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 068/452] inet: frags: flush pending skbs in fqdir_pre_exit() Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 069/452] drm/i915/psr: Add defininitions for INTEL_WA_REGISTER_CAPS DPCD register Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 070/452] drm/i915/psr: Read Intel DPCD workaround register Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 071/452] drm/dp: Add eDP 1.5 bit definition Greg Kroah-Hartman
2026-06-16 14:54 ` [PATCH 6.6 072/452] drm/i915/psr: Apply Intel DPCD workaround when SDP on prior line used Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 073/452] arm64: io: Rename ioremap_prot() to __ioremap_prot() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 074/452] arm64: io: Extract user memory type in ioremap_prot() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 075/452] phy: mscc: Use PHY_ID_MATCH_EXACT for VSC8584, VSC8582, VSC8575, VSC856X Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 076/452] ima: verify the previous kernels IMA buffer lies in addressable RAM Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 077/452] of/kexec: refactor ima_get_kexec_buffer() to use ima_validate_range() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 078/452] x86/kexec: add a sanity check on previous kernels ima kexec buffer Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 079/452] hwmon: (pmbus/adm1266) serialize GPIO PMBus accesses with pmbus_lock Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 080/452] hwmon: (pmbus/adm1266) serialize NVMEM blackbox read " Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 081/452] soc/tegra: pmc: Fix unsafe generic_handle_irq() call Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 082/452] iio: imu: st_lsm6dsx: fix stack leak in tagged FIFO buffer Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 083/452] usb: typec: ucsi: ccg: reject firmware images without a : record header Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 084/452] usb: typec: ucsi: displayport: NAK DP_CMD_CONFIGURE without a payload VDO Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 085/452] usb: typec: altmodes/displayport: validate count before reading Status Update VDO Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 086/452] usb: typec: wcove: dont write past struct pd_message in wcove_read_rx_buffer() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 087/452] usb: typec: tcpm/tcpci_maxim: validate header NDO against RX_BYTE_CNT Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 088/452] usb: typec: ucsi: validate connector number in ucsi_connector_change() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 089/452] USB: serial: safe_serial: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 090/452] media: rc: igorplugusb: fix control request setup packet Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 091/452] Input: ims-pcu - fix usb_free_coherent() size in ims_pcu_buffers_free() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 092/452] HID: quirks: Add ALWAYS_POLL quirk for SIGMACHIP USB mouse Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 093/452] Bluetooth: btusb: Allow firmware re-download when version matches Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 094/452] hpfs: fix a crash if hpfs_map_dnode_bitmap fails Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 095/452] ipc: limit next_id allocation to the valid ID range Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 096/452] auxdisplay: line-display: fix OOB read on zero-length message_store() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 097/452] Bluetooth: L2CAP: use chan timer to close channels in cleanup_listen() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 098/452] Bluetooth: L2CAP: fix chan ref leak in l2cap_chan_timeout() on !conn Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 099/452] Bluetooth: HIDP: fix missing length checks in hidp_input_report() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 100/452] Bluetooth: ISO: fix UAF in iso_recv_frame Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 101/452] Bluetooth: ISO: serialize iso_sock_clear_timer with socket lock Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 102/452] Input: xpad - fix out-of-bounds access for Share button Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 103/452] parport: Fix race between port and client registration Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 104/452] USB: cdc-acm: Fix bit overlap and move quirk definitions to header Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 105/452] KVM: arm64: PMU: Preserve AArch32 counter low bits Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 106/452] KVM: SVM: Flush the current TLB when transitioning from xAVIC => x2AVIC Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 107/452] wireguard: send: append trailer after expanding head Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 108/452] iio: adc: xilinx-xadc: Fix sequencer mode in postdisable for dual mux Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 109/452] iio: dac: max5821: fix return value check in powerdown sync Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 110/452] iio: dac: ad5686: fix input raw value check Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 111/452] iio: dac: ad5686: acquire lock when doing powerdown control Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 112/452] iio: adc: viperboard: Fix error handling in vprbrd_iio_read_raw Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 113/452] iio: gyro: itg3200: fix i2c read into the wrong stack location Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 114/452] iio: ssp_sensors: cancel delayed work_refresh on remove Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 115/452] iio: temperature: tsys01: fix broken PROM checksum validation Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 116/452] iio: magnetometer: st_magn: fix default DRDY pin selection for LIS2MDL Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 117/452] iio: light: cm3323: fix reg_conf not being initialized correctly Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 118/452] iio: buffer: hw-consumer: fix use-after-free in error path Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 119/452] USB: serial: omninet: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 120/452] usb: cdns3: gadget: fix request skipping after clearing halt Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 121/452] usb: cdns3: plat: fix unbalanced pm_runtime_forbid() call permanently leaks the runtime PM usage counter across bind/unbind cycles Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 122/452] usb: dwc2: Fix use after free in debug code Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 123/452] Input: elan_i2c - validate firmware size before use Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 124/452] bpf: sockmap: fix tail fragment offset in bpf_msg_push_data Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 125/452] macsec: fix replay protection at XPN lower-PN wrap Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 126/452] ipv6: exthdrs: refresh nh pointer after ipv6_hop_jumbo() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 127/452] ASoC: qcom: q6asm-dai: fix error handling in prepare and set_params Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 128/452] ipv6: exthdrs: refresh nh after handling HAO option Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 129/452] ip6: vti: Use ip6_tnl.net in vti6_siocdevprivate() Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 130/452] ipv6: validate extension header length before copying to cmsg Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 131/452] xfrm: input: hold netns during deferred transport reinjection Greg Kroah-Hartman
2026-06-16 14:55 ` [PATCH 6.6 132/452] ip6: vti: Use ip6_tnl.net in vti6_changelink() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 133/452] HID: wacom: Fix OOB write in wacom_hid_set_device_mode() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 134/452] iommu, debugobjects: avoid gcc-16.1 section mismatch warnings Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 135/452] nfc: hci: fix out-of-bounds read in HCP header parsing Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 136/452] xfrm: route MIGRATE notifications to callers netns Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 137/452] xfrm: ah: use skb_to_full_sk in async output callbacks Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 138/452] netfilter: conntrack: tcp: do not force CLOSE on invalid-seq RST without direction check Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 139/452] ASoC: qcom: q6asm-dai: close stream only when running Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 140/452] ASoC: qcom: q6asm-dai: do not set stream state in event and trigger callbacks Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 141/452] xfrm: esp: restore combined single-frag length gate Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 142/452] Input: xpad - add "Nova 2 Lite" from GameSir Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 143/452] Input: xpad - add support for ASUS ROG RAIKIRI II Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 144/452] ksmbd: OOB read regression in smb_check_perm_dacl() ACE-walk loops Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 145/452] Input: atmel_mxt_ts - fix boundary check in mxt_prepare_cfg_mem Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 146/452] Input: synaptics - add LEN2058 to SMBus passlist for ThinkPad E490 Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 147/452] comedi: comedi_test: fix check for valid scan_begin_src in waveform_ai_cmdtest() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 148/452] comedi: comedi_test: Fix limiting of convert_arg " Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 149/452] counter: Fix refcount leak in counter_alloc() error path Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 150/452] tty: serial: pch_uart: add check for dma_alloc_coherent() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 151/452] usb: chipidea: core: convert ci_role_switch to local variable Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 152/452] usb: core: Fix up Interrupt IN endpoints with bogus wBytesPerInterval Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 153/452] USB: quirks: add NO_LPM for Lenovo ThinkPad USB-C Dock Gen2 hub controllers Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 154/452] usb: storage: Add quirks for PNY Elite Portable SSD Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 155/452] usbip: vudc: Fix use after free bug in vudc_remove due to race condition Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 156/452] usb: usbtmc: check URB actual_length for interrupt-IN notifications Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 157/452] usb: usbtmc: reject interrupt endpoints with small wMaxPacketSize Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 158/452] USB: serial: option: add MeiG SRM813Q Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 159/452] USB: serial: option: add missing RSVD(5) flag for Rolling RW135R-GL Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 160/452] USB: serial: belkin_sa: validate interrupt status length Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 161/452] USB: serial: cypress_m8: validate interrupt packet headers Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 162/452] USB: serial: keyspan: fix missing indat transfer sanity check Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 163/452] USB: serial: mxuport: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 164/452] USB: serial: mct_u232: fix missing interrupt-in transfer sanity check Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 165/452] usb: gadget: net2280: Fix double free in probe error path Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 166/452] usb: gadget: f_hid: fix device reference leak in hidg_alloc() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 167/452] usb: gadget: composite: fix integer underflow in WebUSB GET_URL handling Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 168/452] usb: gadget: dummy_hcd: Reject hub port requests for non-existent ports Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 169/452] usb: gadget: f_fs: copy only received bytes on short ep0 read Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 170/452] thunderbolt: property: Reject u32 wrap in tb_property_entry_valid() Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 171/452] thunderbolt: property: Reject dir_len < 4 to prevent size_t underflow Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 172/452] scsi: fcoe: Reject FIP descriptors with zero fip_dlen in CVL walker Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 173/452] scsi: scsi_transport_fc: Widen FPIN pname walker counter to u32 Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 174/452] scsi: target: iscsi: Bound iscsi_encode_text_output() appends to rsp_buf Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 175/452] scsi: target: iscsi: Validate CHAP_R length before base64 decode Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 176/452] drm/hyperv: validate resolution_count and fix WIN8 fallback Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 177/452] drm/hyperv: validate VMBus packet size in receive callback Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 178/452] drm/i915: Fix potential UAF in TTM object purge Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 179/452] drm/amd/pm/si: Disregard vblank time when no displays are connected Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 180/452] serial: altera_jtaguart: handle uart_add_one_port() failures Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 181/452] serial: qcom-geni: fix UART_RX_PAR_EN bit position Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 182/452] serial: sh-sci: fix memory region release in error path Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 183/452] serial: zs: Fix swapped RI/DSR modem line transition counting Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 184/452] serial: fsl_lpuart: fix rx buffer and DMA map leaks in start_rx_dma Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 185/452] drm/amdkfd: fix NULL pointer bug in svm_range_set_attr Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 186/452] drm/amdkfd: fix a vulnerability of integer overflow in kfd debugger Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 187/452] drm/amdkfd: Check for pdd drm file first in CRIU restore path Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 188/452] serial: dz: Fix bootconsole message clobbering at chip reset Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 189/452] serial: zs: Fix bootconsole handover lockup Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 190/452] serial: zs: Switch to using channel reset Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 191/452] USB: serial: cypress_m8: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-16 14:56 ` [PATCH 6.6 192/452] Bluetooth: hci_sync: fix UAF in hci_le_create_cis_sync Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 193/452] x86/kexec: Disable KCOV instrumentation after load_segments() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 194/452] landlock: Fix handling of disconnected directories Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 195/452] USB: serial: digi_acceleport: fix memory corruption with small endpoints Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 196/452] xhci: tegra: Fix ghost USB device on dual-role port unplug Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 197/452] serial: dz: Fix bootconsole handover lockup Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 198/452] serial: dz: Convert to use a platform device Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 199/452] serial: zs: " Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 200/452] HID: core: Add printk_ratelimited variants to hid_warn() etc Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 201/452] HID: pass the buffer size to hid_report_raw_event Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 202/452] HID: core: Fix size_t specifier in hid_report_raw_event() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 203/452] usb: core: Fix SuperSpeed root hub wMaxPacketSize Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 204/452] bpf: Free reuseport cBPF prog after RCU grace period Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 205/452] USB: serial: mct_u232: fix memory corruption with small endpoint Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 206/452] Bluetooth: hci_conn: fix potential UAF in set_cig_params_sync Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 207/452] RDMA/rxe: Fix "trying to register non-static key in rxe_qp_do_cleanup" bug Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 208/452] hwmon: (pmbus/core) Protect regulator operations with mutex Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 209/452] Disable -Wattribute-alias for clang-23 and newer Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 210/452] i2c: dev: prevent integer overflow in I2C_TIMEOUT ioctl Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 211/452] ipv6: mcast: Fix use-after-free when processing MLD queries Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 212/452] net/smc: fix sleep-inside-lock in __smc_setsockopt() causing local DoS Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 213/452] tee: optee: prevent use-after-free when the client exits before the supplicant Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 214/452] ksmbd: fix NULL-deref of opinfo->conn in oplock/lease break notifiers Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 215/452] netfilter: xt_NFQUEUE: prefer raw_smp_processor_id Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 216/452] ipvs: clear the svc scheduler ptr early on edit Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 217/452] netfilter: synproxy: add mutex to guard hook reference counting Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 218/452] netfilter: conntrack_irc: fix possible out-of-bounds read Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 219/452] netfilter: nft_ct: bail out on template ct in get eval Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 220/452] netfilter: bridge: make ebt_snat ARP rewrite writable Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 221/452] dm cache policy smq: check allocation under invalidate lock Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 222/452] net/sched: act_api: use RCU with deferred freeing for action lifecycle Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 223/452] 6lowpan: fix off-by-one in multicast context address compression Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 224/452] drm/imx: Fix three kernel-doc warnings in dcss-scaler.c Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 225/452] pcnet32: stop holding device spin lock during napi_complete_done Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 226/452] net: Annotate sk->sk_write_space() for UDP SOCKMAP Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 227/452] hsr: Remove WARN_ONCE() in hsr_addr_is_self() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 228/452] net: garp: fix unsigned integer underflow in garp_pdu_parse_attr Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 229/452] net: lan743x: permit VLAN-tagged packets up to configured MTU Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 230/452] net: fec: fix pinctrl default state restore order on resume Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 231/452] Bluetooth: RFCOMM: hold listener socket in rfcomm_connect_ind() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 232/452] Bluetooth: MGMT: validate advertising TLV before type checks Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 233/452] Bluetooth: RFCOMM: validate skb length in MCC handlers Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 234/452] Bluetooth: bnep: fix incorrect length parsing in bnep_rx_frame() extension handling Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 235/452] Bluetooth: bnep: reject short frames before parsing Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 236/452] Bluetooth: fix memory leak in error path of hci_alloc_dev() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 237/452] Bluetooth: MGMT: Fix backward compatibility with userspace Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 238/452] ipv4: restrict IPOPT_SSRR and IPOPT_LSRR options Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 239/452] ptp: vclock: Switch from RCU to SRCU Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 240/452] net: ethernet: mtk_eth_soc: Fix use-after-free in metadata dst teardown Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 241/452] octeontx2-af: npc: Fix CPT channel mask in npc_install_flow Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 242/452] vxlan: vnifilter: send notification on VNI add Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 243/452] vxlan: vnifilter: fix spurious notification on VNI update Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 244/452] ieee802154: 6lowpan: only accept IPv6 packets in lowpan_xmit() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 245/452] net/802/mrp: fix vector attribute parsing in mrp_pdu_parse_vecattr Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 246/452] sctp: purge outqueue on stale COOKIE-ECHO handling Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 247/452] ipmi: Fix rcu_read_unlock to srcu_read_unlock in handle_read_event_rsp Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 248/452] signal: clear JOBCTL_PENDING_MASK for caller in zap_other_threads() Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 249/452] time: Fix off-by-one in settimeofday() usec validation Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 250/452] ALSA: PCM: Fix wait queue list corruption in snd_pcm_drain() on linked streams Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 251/452] usb: gadget: f_ncm: Fix net_device lifecycle with device_move Greg Kroah-Hartman
2026-06-16 14:57 ` [PATCH 6.6 252/452] usb: gadget: u_ether: Fix NULL pointer deref in eth_get_drvinfo Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 253/452] tools/rv: Fix cleanup after failed trace setup Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 254/452] net: skbuff: fix missing zerocopy reference in pskb_carve helpers Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 255/452] tap: free page on error paths in tap_get_user_xdp() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 256/452] KVM: arm64: Remove VPIPT I-cache handling Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 257/452] arm64: tlb: Allow XZR argument to TLBI ops Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 258/452] arm64: tlb: Optimize ARM64_WORKAROUND_REPEAT_TLBI Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 259/452] iomap: dont revert iov_iter on partially completed buffered writes Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 260/452] xfrm: policy: fix use-after-free on inexact bin in xfrm_policy_bysel_ctx() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 261/452] netlabel: validate unlabeled address and mask attribute lengths Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 262/452] gpio: mvebu: fix NULL pointer dereference in suspend/resume Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 263/452] ASoC: wm_adsp: Fix NULL dereference when removing firmware controls Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 264/452] tcp: restrict SO_ATTACH_FILTER to priv users Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 265/452] net/mlx4: avoid GCC 10 __bad_copy_from() false positive Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 266/452] net: phy: clean the sfp upstream if phy probing fails Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 267/452] net: qrtr: fix refcount saturation and potential UAF in qrtr_port_remove Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 268/452] net/mlx5: Fix slab-out-of-bounds in mlx5_query_nic_vport_mac_list Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 269/452] ipv6: sit: reload inner IPv6 header after GSO offloads Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 270/452] net: openvswitch: fix possible kfree_skb of ERR_PTR Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 271/452] r8152: handle the return value of usb_reset_device() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 272/452] sctp: fix uninit-value in __sctp_rcv_asconf_lookup() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 273/452] net: guard timestamp cmsgs to real error queue skbs Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 274/452] net/rds: fix NULL deref in rds_ib_send_cqe_handler() on masked atomic completion Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 275/452] ip6_vti: fix incorrect tunnel matching in vti6_tnl_lookup() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 276/452] rds: mark snapshot pages dirty in rds_info_getsockopt() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 277/452] netfilter: nf_conntrack: destroy stale expectfn expectations on unregister Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 278/452] netfilter: x_tables: avoid leaking percpu counter pointers Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 279/452] netfilter: nf_log: validate MAC header was set before dumping it Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 280/452] netfilter: nft_exthdr: fix register tracking for F_PRESENT flag Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 281/452] net: mvpp2: sync RX data at the hardware packet offset Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 282/452] net: mvpp2: limit XDP frame size to the RX buffer Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 283/452] net: mvpp2: Add metadata support for xdp mode Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 284/452] net: mvpp2: refill RX buffers before XDP or skb use Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 285/452] net: mvpp2: build skb from XDP-adjusted data on XDP_PASS Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 286/452] ipv6: Fix a potential NPD in cleanup_prefix_route() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 287/452] netfilter: ctnetlink: ensure safe access to master conntrack Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 288/452] clk: qcom: dispcc-sc8280xp: Dont park mdp_clk_src at registration time Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 289/452] drm/virtio: Fix driver removal with disabled KMS Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 290/452] drm/vc4: fix krealloc() memory leak Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 291/452] netfilter: nft_tunnel: fix use-after-free on object destroy Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 292/452] Bluetooth: hci_sync: reject oversized Broadcast Announcement prepend Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 293/452] Bluetooth: L2CAP: reject BR/EDR signaling packets over MTUsig Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 294/452] tracing/probes: Point the error offset correctly for eprobe argument error Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 295/452] mmc: litex_mmc: Use DIV_ROUND_UP for more accurate clock calculation Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 296/452] KVM: Dont WARN if memory is dirtied without a vCPU when the VM is dying Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 297/452] drm/i915/gem: Fix phys BO pread/pwrite with offset Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 298/452] ksmbd: fix use-after-free of a deferred file_lock on double SMB2_CANCEL Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 299/452] xfrm: espintcp: do not reuse an in-progress partial send Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 300/452] USB: serial: io_ti: fix heap overflow in get_manuf_info() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 301/452] USB: serial: io_ti: fix heap overflow in build_i2c_fw_hdr() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 302/452] USB: serial: option: add usb-id for Dell Wireless DW5826e-m Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 303/452] USB: serial: kl5kusb105: fix bulk-out buffer overflow Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 304/452] ALSA: timer: Fix UAF at snd_timer_user_params() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 305/452] drm/virtio: fix dma_fence refcount leak on error in virtio_gpu_dma_fence_wait() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 306/452] drm/amd/display: Reject gpio_bitshift >= 32 in bios_parser_get_gpio_pin_info() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 307/452] mm/damon/ops-common: call folio_test_lru() after folio_get() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 308/452] RDMA/srp: bound SRP_RSP sense copy by the received length Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 309/452] zram: fix use-after-free in zram_bvec_write_partial() Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 310/452] udp: clear skb->dev before running a sockmap verdict Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 311/452] ARM: socfpga: Fix OF node refcount leak in SMP setup Greg Kroah-Hartman
2026-06-16 14:58 ` [PATCH 6.6 312/452] ARM: 9474/1: io: avoid KASAN instrumentation of raw halfword I/O Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 313/452] ARM: 9475/1: entry: use byte load for KASAN VMAP stack shadow Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 314/452] mptcp: fix retransmission loop when csum is enabled Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 315/452] mptcp: close TOCTOU race while computing rcv_wnd Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 316/452] mptcp: allow subflow rcv wnd to shrink Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 317/452] mptcp: sockopt: check timestamping ret value Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 318/452] selftests: mptcp: add test for extra_subflows underflow on userspace PM Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 319/452] wifi: nl80211: reject oversized EMA RNR lists Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 320/452] vsock/vmci: fix sk_ack_backlog leak on failed handshake Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 321/452] ASoC: fsl_sai: Fix 32 slots TDM broken by integer shift UB in xMR write Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 322/452] bnxt_en: Fix NULL pointer dereference Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 323/452] IB/isert: Reject login PDUs shorter than ISER_HEADERS_LEN Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 324/452] inet: frags: fix use-after-free caused by the fqdir_pre_exit() flush Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 325/452] pidfd: refuse access to tasks that have started exiting harder Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 326/452] fuse: reject fuse_notify() pagecache ops on directories Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 327/452] i2c: qcom-cci: Fix NULL pointer dereference in cci_remove() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 328/452] i2c: stm32f7: fix timing computation ignoring i2c-analog-filter Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 329/452] i2c: tegra: Fix NOIRQ suspend/resume Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 330/452] Input: atkbd - add DMI quirk for Lenovo Yoga Air 14 (83QK) Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 331/452] Input: atkbd - skip deactivate for HONOR BCC-Ns internal keyboard Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 332/452] ipc/shm: serialize orphan cleanup with shm_nattch updates Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 333/452] misc: fastrpc: fix use-after-free of fastrpc_user in workqueue context Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 334/452] misc: fastrpc: fix use-after-free race in fastrpc_map_create Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 335/452] misc: fastrpc: fix DMA address corruption due to find_vma misuse Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 336/452] misc: fastrpc: Fix NULL pointer dereference in rpmsg callback Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 337/452] net/mlx5: Reorder completion before putting command entry in cmd_work_handler Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 338/452] net: bonding: fix NULL pointer dereference in bond_do_ioctl() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 339/452] net: mv643xx: fix OF node refcount Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 340/452] net: rds: clear i_sends on setup unwind Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 341/452] nvmem: layouts: onie-tlv: fix hang on unknown types Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 342/452] octeontx2-af: fix memory leak in rvu_setup_hw_resources() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 343/452] bpf: Track equal scalars history on per-instruction level Greg Kroah-Hartman
2026-06-16 22:16 ` Paul Chaignon
2026-06-16 14:59 ` [PATCH 6.6 344/452] bpf: Remove mark_precise_scalar_ids() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 345/452] selftests/bpf: Tests for per-insn sync_linked_regs() precision tracking Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 346/452] selftests/bpf: Update comments find_equal_scalars->sync_linked_regs Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 347/452] mm/hugetlb: restore reservation on error in hugetlb folio copy paths Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 348/452] mmc: core: Fix host controller programming for fixed driver type Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 349/452] mmc: litex_mmc: Set mandatory idle clocks before CMD0 Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 350/452] mmc: renesas_sdhi: Add OF entry for RZ/G2H SoC Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 351/452] mmc: sdhci: add signal voltage switch in sdhci_resume_host Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 352/452] sctp: diag: reject stale associations in dump_one path Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 353/452] sctp: stream: fully roll back denied add-stream state Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 354/452] thunderbolt: Reject zero-length property entries in validator Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 355/452] thunderbolt: Bound root directory content to block size Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 356/452] thunderbolt: Clamp XDomain response data copy to allocation size Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 357/452] thunderbolt: Validate XDomain request packet size before type cast Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 358/452] thunderbolt: Limit XDomain response copy to actual frame size Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 359/452] slimbus: qcom-ngd-ctrl: fix OF node refcount Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 360/452] slimbus: qcom-ngd-ctrl: Avoid ABBA on tx_lock/ctrl->lock Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 361/452] drm/amdkfd: fix NULL dereference in get_queue_ids() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 362/452] drm/amdkfd: Fix buffer overflow in SDMA queue checkpoint/restore on GFX11 Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 363/452] drm/amdgpu: restart the CS if some parts of the VM are still invalidated Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 364/452] drm/amd/display: Clamp HDMI HDCP2 rx_id_list read to buffer size Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 365/452] drm/amd/display: Clamp VBIOS HDMI retimer register count to array size Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 366/452] drm/amd/display: Fix NULL deref and buffer over-read in SDP debugfs Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 367/452] drm/amd/display: Use krealloc_array() in dal_vector_reserve() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 368/452] fs/fcntl: fix SOFTIRQ-unsafe lock order in fasync signaling Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 369/452] driver core: reject devices with unregistered buses Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 370/452] mm/hugetlb: avoid false positive lockdep assertion Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 371/452] soc: qcom: ice: Fix race between qcom_ice_probe() and of_qcom_ice_get() Greg Kroah-Hartman
2026-06-16 14:59 ` [PATCH 6.6 372/452] mm/huge_memory: update file PMD counter before folio_put() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 373/452] ipmi:ssif: Remove unnecessary indention Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 374/452] ipmi:ssif: NULL thread on error Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 375/452] fbdev/vt8500lcdfb: Initialize fb_ops with fbdev macros Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 376/452] ksmbd: fix OOB write in QUERY_INFO for compound requests Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 377/452] cgroup/cpuset: Reset DL migration state on can_attach() failure Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 378/452] genetlink: Use internal flags for multicast groups Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 379/452] smb: client: require net admin for CIFS SWN netlink Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 380/452] platform/x86/intel/vsec: Fix enable_cnt imbalance on PCIe error recovery Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 381/452] octeontx2-af: replace deprecated strncpy with strscpy Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 382/452] octeontx2-af: CGX: add bounds check to cgx_speed_mbps index Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 383/452] mptcp: use plain bool instead of custom binary enum Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 384/452] mptcp: cleanup fallback dummy mapping generation Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 385/452] mptcp: reset rcv wnd on disconnect Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 386/452] selftests: mptcp: drop nanoseconds width specifier Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 387/452] ice: fix VF queue configuration with low MTU values Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 388/452] mptcp: pm: fix ADD_ADDR timer infinite retry on option space insufficient Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 389/452] ipv6/addrconf: annotate data-races around devconf fields (II) Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 390/452] ipv6: ioam: add NULL check for idev in ipv6_hop_ioam() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 391/452] net: hsr: defer node table free until after RCU readers Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 392/452] rxrpc: Fix DATA decrypt vs splice() by copying data to buffer in recvmsg Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 393/452] rxrpc: Fix RESPONSE packet verification to extract skb to a linear buffer Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 394/452] af_unix: Cache state->msg in unix_stream_read_generic() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 395/452] af_unix: Fix UAF read of tail->len in unix_stream_data_wait() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 396/452] octeontx2-pf: avoid double free of pool->stack on AQ init failure Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 397/452] arm64: tlb: Flush walk cache when unsharing PMD tables Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 398/452] iio: adc: npcm: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 399/452] iio: adc: npcm: fix unbalanced clk_disable_unprepare() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 400/452] mptcp: introduce the mptcp_init_skb helper Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 401/452] mptcp: do not drop partial packets Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 402/452] mm/memory: fix spurious warning when unmapping device-private/exclusive pages Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 403/452] mm/damon/sysfs-schemes: delete tried region in regions_rmdirs() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 404/452] serdev: make serdev_bus_type const Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 405/452] serdev: Provide a bustype shutdown function Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 406/452] Bluetooth: hci_qca: Migrate to serdev specific " Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 407/452] Bluetooth: hci_qca: Convert timeout from jiffies to ms Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 408/452] mptcp: handle first subflow closing consistently Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 409/452] iio: gyro: adis16260: fix division by zero in write_raw Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 410/452] iio: chemical: scd30: Use guard(mutex) to allow early returns Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 411/452] iio: chemical: scd30: fix division by zero in write_raw Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 412/452] usb: cdns3: plat: fix leaked usb2_phy initialization on usb3_phy acquisition failure Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 413/452] iio: dac: ad5686: fix ref bit initialization for single-channel parts Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 414/452] memfd: deny writeable mappings when implying SEAL_WRITE Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 415/452] ALSA: firewire-motu: Protect register DSP event queue positions Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 416/452] serial: samsung_tty: Use port lock wrappers Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 417/452] tty: serial: samsung: use u32 for register interactions Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 418/452] tty: serial: samsung: Remove redundant port lock acquisition in rx helpers Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 419/452] usb: musb: omap2430: Fix use-after-free in omap2430_probe() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 420/452] usb: dwc3: xilinx: fix error handling in zynqmp init error paths Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 421/452] usb: gadget: uvc: hold opts->lock across XU walks in uvc_function_bind Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 422/452] usb: typec: ucsi: Check if power role change actually happened before handling Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 423/452] thunderbolt: property: Cap recursion depth in __tb_property_parse_dir() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 424/452] scsi: target: iscsi: Fix CRC overread and double-free in iscsit_handle_text_cmd() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 425/452] serial: qcom_geni: fix kfifo underflow when flush precedes DMA completion IRQ Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 426/452] usb: typec: ucsi: Dont update power_supply on power role change if not connected Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 427/452] netfilter: nft_fib: fix stale stack leak via the OIFNAME register Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 428/452] mm/hugetlb: rename isolate_hugetlb() to folio_isolate_hugetlb() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 429/452] mm/migrate: dont call folio_putback_active_hugetlb() on dst hugetlb folio Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 430/452] mm/hugetlb: rename folio_putback_active_hugetlb() to folio_putback_hugetlb() Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 431/452] mm/memory-failure: fix missing ->mf_stats count in hugetlb poison Greg Kroah-Hartman
2026-06-16 15:00 ` [PATCH 6.6 432/452] mm/memory-failure: fix hugetlb_lock AA deadlock in get_huge_page_for_hwpoison Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 433/452] hv_netvsc: use kmap_local_page in netvsc_copy_to_send_buf Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 434/452] RDMA: During rereg_mr ensure that REREG_ACCESS is compatible Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 435/452] RDMA/umem: fix kernel-doc warnings Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 436/452] RDMA: Move DMA block iterator logic into dedicated files Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 437/452] RDMA/umem: Fix truncation for block sizes >= 4G Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 438/452] net: bonding: fix use-after-free in bond_xmit_broadcast() Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 439/452] ipvs: skip ipv6 extension headers for csum checks Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 440/452] ALSA: hda/hdmi: Add quirk for TUXEDO IBS14G6 Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 441/452] arm64: cputype: Add NVIDIA Olympus definitions Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 442/452] arm64: cputype: Add C1-Ultra definitions Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 443/452] arm64: cputype: Add C1-Premium definitions Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 444/452] arm64: errata: Mitigate TLBI errata on various Arm CPUs Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 445/452] arm64: errata: Mitigate TLBI errata on NVIDIA Olympus CPU Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 446/452] arm64: errata: Mitigate TLBI errata on Microsoft Azure Cobalt 100 CPU Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 447/452] mptcp: add-addr: always drop other suboptions Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 448/452] mptcp: fix missing wakeups in edge scenarios Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 449/452] Revert "selftest/ptp: update ptp selftest to exercise the gettimex options" Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 450/452] x86/CPU/AMD: Move the Zen3 BTC_NO detection to the Zen3 init function Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 451/452] x86/CPU/AMD: Call the spectral chicken in the Zen2 " Greg Kroah-Hartman
2026-06-16 15:01 ` [PATCH 6.6 452/452] x86/CPU/AMD: Rename init_amd_zn() to init_amd_zen_common() Greg Kroah-Hartman
2026-06-16 16:55 ` [PATCH 6.6 000/452] 6.6.143-rc1 review Brett A C Sheffield
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=20260616145120.525872058@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=00107082@163.com \
--cc=iklatzco@gmail.com \
--cc=patches@lists.linux.dev \
--cc=peterz@infradead.org \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=yeoreum.yun@arm.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