Archive-only list for patches
 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, stable <stable@kernel.org>,
	Moksh Panicker <mokshpanicker.7@gmail.com>
Subject: [PATCH 5.15 182/456] staging: rtl8723bs: fix OOB reads in rtw_get_wps_ie()
Date: Mon, 17 Aug 2026 15:29:32 +0200	[thread overview]
Message-ID: <20260817132547.245871760@linuxfoundation.org> (raw)
In-Reply-To: <20260817132539.792407575@linuxfoundation.org>

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

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

From: Moksh Panicker <mokshpanicker.7@gmail.com>

commit 0e95ff792ae0aa6fbad9455943e9e1e4062670e9 upstream.

rtw_get_wps_ie() iterates over IE data from network frames without
validating that the IE header and payload fit within the remaining
buffer before reading them. Specifically:

- in_ie[cnt + 1] is read without checking cnt + 1 < in_len
- memcmp(&in_ie[cnt + 2], ...) accesses cnt + 2 without bounds check
- in_ie[cnt + 1] is used as length without verifying payload fits

Add bounds checks at the top of the loop body to break early if fewer
than 2 bytes remain for the IE header, or if the declared payload
extends past the end of the buffer. Also require at least 4 bytes of
payload before comparing the WPS OUI.

Fixes: 554c0a3abf21 ("staging: Add rtl8723bs sdio wifi driver")
Cc: stable <stable@kernel.org>
Signed-off-by: Moksh Panicker <mokshpanicker.7@gmail.com>
Link: https://patch.msgid.link/20260625202911.26782-1-mokshpanicker.7@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/staging/rtl8723bs/core/rtw_ieee80211.c |    9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

--- a/drivers/staging/rtl8723bs/core/rtw_ieee80211.c
+++ b/drivers/staging/rtl8723bs/core/rtw_ieee80211.c
@@ -694,7 +694,14 @@ u8 *rtw_get_wps_ie(u8 *in_ie, uint in_le
 	while (cnt < in_len) {
 		eid = in_ie[cnt];
 
-		if ((eid == WLAN_EID_VENDOR_SPECIFIC) && (!memcmp(&in_ie[cnt + 2], wps_oui, 4))) {
+		if (cnt + 2 > in_len)
+			break;
+
+		if (in_ie[cnt + 1] + 2 > in_len - cnt)
+			break;
+
+		if ((eid == WLAN_EID_VENDOR_SPECIFIC) && (in_ie[cnt + 1] >= 4) &&
+		    (!memcmp(&in_ie[cnt + 2], wps_oui, 4))) {
 			wpsie_ptr = &in_ie[cnt];
 
 			if (wps_ie)



  parent reply	other threads:[~2026-08-17 14:30 UTC|newest]

Thread overview: 459+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-17 13:26 [PATCH 5.15 000/456] 5.15.216-rc1 review Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 001/456] nvmet-tcp: Fix potential UAF when ddgst mismatch Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 002/456] futex: Prevent lockup in requeue-PI during signal/ timeout wakeup Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 003/456] macsec: dont read an unset MAC header in macsec_encrypt() Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 004/456] KVM: nVMX: Hide shadow VMCS right after VMCLEAR Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 005/456] KVM: x86/mmu: Fix use-after-free on vendor module reload Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 006/456] can: isotp: fix use-after-free race with concurrent NETDEV_UNREGISTER Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 007/456] can: isotp: serialize TX state transitions under so->rx_lock Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 008/456] dmaengine: sh: rz-dmac: Move interrupt request after everything is set up Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 009/456] Input: ims-pcu - fix heap-buffer-overflow in ims_pcu_process_data() Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 010/456] Input: ims-pcu - fix logic error in packet reset Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 011/456] KVM: VMX: Make vmread_error_trampoline() uncallable from C code Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 012/456] IB/mad: Drop unmatched RMPP responses before reassembly Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 013/456] mtd: mtdswap: remove debugfs stats file on teardown Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 014/456] mtd: nand: mtk-ecc: stop on ECC idle timeouts Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 015/456] btrfs: reject free space cache with more entries than pages Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 016/456] btrfs: fix root leak if its reloc root is unexpected in merge_reloc_roots() Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 017/456] firmware: arm_ffa: Fix NULL dereference in ffa_partition_info_get() Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 018/456] RDMA/hns: Fix potential integer overflow in mhop hem cleanup Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 019/456] RDMA/siw: Only check attrs->cap.max_send_wr in siw_create_qp Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 020/456] RDMA/siw: publish QP after initialization Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 021/456] RDMA/irdma: Prevent overflows in memory contiguity checks Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 022/456] xfrm: policy: preallocate inexact bins before xfrm_hash_rebuild reinsert Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 023/456] wifi: cfg80211: cancel sched scan results work on unregister Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 024/456] wifi: ipw2100: fix potential memory leak in ipw2100_pci_init_one() Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 025/456] wifi: mac80211_hwsim: clamp virtio RX length before skb_put Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 026/456] wifi: libertas: fix memory leak in helper_firmware_cb() Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 027/456] wifi: p54: validate RX frame length in p54_rx_eeprom_readback() Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 028/456] wifi: cfg80211: validate PMSR measurement type data Greg Kroah-Hartman
2026-08-17 13:26 ` [PATCH 5.15 029/456] wifi: cfg80211: validate PMSR FTM preamble range Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 030/456] wifi: cfg80211: reject unsupported PMSR FTM location requests Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 031/456] wifi: mac80211: free AP_VLAN bc_buf SKBs outside IRQ lock Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 032/456] wifi: brcmfmac: initialize SDIO data work before cleanup Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 033/456] wifi: cfg80211: bound element ID read when checking non-inheritance Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 034/456] ASoC: meson: aiu: fifo-spdif: soft reset the S/PDIF datapath on start/stop Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 035/456] ASoC: tas2562: fix deprecated shut-down GPIO always cleared after lookup Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 036/456] firmware: arm_scmi: Rate-limit queue-full warnings in IRQ context Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 037/456] ppp: defer channel free to an RCU grace period to fix pppol2tp RX UAF Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 038/456] ipv4: fib: free fib_alias with kfree_rcu() on insert error path Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 039/456] net/iucv: take a reference on the socket found in afiucv_hs_rcv() Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 040/456] ata: sata_dwc_460ex: enable SATA interrupts only after IRQ handler is registered Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 041/456] ata: sata_dwc_460ex: fix clear_interrupt_bit() clearing all pending interrupts Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 042/456] ata: sata_dwc_460ex: remove variable num_processed Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 043/456] ata: sata_dwc_460ex: fix infinite loop in NCQ tag completion bit-scanning Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 044/456] ALSA: usb-audio: Skip DSD quirk for Musical Fidelity M6s DAC Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 045/456] Bluetooth: qca: fix NVM tag length underflow in TLV parser Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 046/456] smb/client: handle overlapping allocated ranges in fallocate Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 047/456] drm/i915/gt: use correct selftest config symbol Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 048/456] powerpc/time: Fix sparse warnings Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 049/456] powerpc: remove the last remnants of cputime_t Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 050/456] sched/vtime: Get rid of generic vtime_task_switch() implementation Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 051/456] powerpc/time: Prepare to stop elapsing in dynticks-idle Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 052/456] powerpc/vtime: Initialize starttime at boot for native accounting Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 053/456] can: j1939: fix lockless local-destination check Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 054/456] ksmbd: validate compound request size before reading StructureSize2 Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 055/456] drm/i915/selftests: Fix GT PM sort comparators Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 056/456] net/sched: act_tunnel_key: Defer dst_release to RCU callback Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 057/456] sctp: fix auth_hmacs array size in struct sctp_cookie Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 058/456] mpls: fix NULL deref in mpls_valid_fib_dump_req() on CONFIG_INET=n Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 059/456] wifi: at76c50x-usb: avoid length underflow in at76_guess_freq() Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 060/456] USB: storage: add NO_ATA_1X quirk for Longmai USB Key Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 061/456] usb: chipidea: fix usage_count leak when autosuspend_delay is negative Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 062/456] usb: gadget: dummy_hcd: prevent fifo_req reuse during giveback Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 063/456] usb: gadget: f_midi: cancel pending IN work before freeing the midi object Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 064/456] usb: gadget: printer: fix infinite loop in printer_read() Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 065/456] USB: gadget: snps-udc: fix device name leak on probe failure Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 066/456] USB: gadget: fsl-udc: " Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 067/456] usb: gadget: f_ncm: validate datagram bounds in ncm_unwrap_ntb() Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 068/456] usb: gadget: udc: bdc: free IRQ and drain func_wake_notify before teardown Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 069/456] usb: gadget: uvc: clamp SEND_RESPONSE length to the response buffer Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 070/456] USB: serial: ftdi_sio: add support for E+H FXA291 Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 071/456] USB: serial: io_edgeport: cap received transmit credits Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 072/456] USB: serial: keyspan_pda: fix data loss on receive throttling Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 073/456] USB: serial: option: add TDTECH MT5710-CN Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 074/456] crypto: rsa-pkcs1pad: Dont WARN on an empty digest Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 075/456] Revert "drm/amd/display: Add missing kdoc for ALLM parameters" Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 076/456] bpf: Fix ld_{abs,ind} failure path analysis in subprogs Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 077/456] usb: xhci-pci: Limit VIA VL805 DMA addressing to 36 bits Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 078/456] wifi: ath9k: hif_usb: dont dereference hif_dev after re-arming firmware request Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 079/456] hwmon: (corsair-psu) Stop device IO before calling hid_hw_stop Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 080/456] hwmon: (corsair-cpro) " Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 081/456] watchdog: pretimeout: Fix UAF in watchdog_unregister_governor() Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 082/456] wifi: ath11k: fix potential buffer underflow in ath11k_hal_rx_msdu_list_get() Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 083/456] firewire: net: Fix fragmented datagram reassembly Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 084/456] wifi: ath6kl: fix OOB read from firmware num_msg in TX complete handler Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 085/456] wifi: ath6kl: fix OOB read from firmware IE lengths in connect event Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 086/456] wifi: carl9170: bound memcpy length in cmd callback to prevent OOB read Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 087/456] wifi: carl9170: fix OOB read from off-by-two in TX status handler Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 088/456] wifi: carl9170: fix buffer overflow in rx_stream failover path Greg Kroah-Hartman
2026-08-17 13:27 ` [PATCH 5.15 089/456] btrfs: free mapping node on duplicate reloc root insert Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 090/456] ASoC: bt-sco: fix bt-sco-pcm-wb dai widget dont connect to the endpoint Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 091/456] ASoC: bt-sco: fix duplicate DAPM widget names for wideband DAI Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 092/456] usb: atm: ueagle-atm: reject descriptors that confuse probe and disconnect Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 093/456] hwmon: (occ) Add sysfs entry for IPS (Idle Power Saver) status Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 094/456] hwmon: (occ) Add sysfs entry for OCC mode Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 095/456] hwmon: (occ) Add sysfs entries for additional extended status bits Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 096/456] hwmon: (occ) Delay hwmon registration until user request Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 097/456] hwmon: occ: validate poll response sensor blocks Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 098/456] net/packet: avoid fanout hook re-registration after unregister Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 099/456] rds: drop incoming messages that cross network namespace boundaries Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 100/456] dpaa2-switch: put MAC endpoint device on disconnect Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 101/456] net: dpaa2-eth: assign priv->mac after dpaa2_mac_connect() call Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 102/456] dpaa2-eth: put MAC endpoint device on disconnect Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 103/456] nfp: Check resource mutex allocation Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 104/456] wan: wanxl: Only reset hardware after BAR mapping Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 105/456] wifi: mwifiex: bound uAP association event IEs to the event buffer Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 106/456] iommu/amd: Bound the early ACPI HID map Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 107/456] iommu/intel: Fix out-of-bounds memset in dmar_latency_disable() Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 108/456] wifi: mac80211: recalculate TIM when a station enters power save Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 109/456] amd-xgbe: fix MAC_AUTO_SW handling in CL37 AN Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 110/456] sctp: fix auth_chunk_list capacity check in sctp_auth_ep_add_chunkid Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 111/456] sctp: validate stream count in sctp_process_strreset_inreq() Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 112/456] nexthop: initialize extack in nh_res_bucket_migrate() Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 113/456] tipc: fix infinite loop in __tipc_nl_compat_dumpit Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 114/456] wifi: mt76: connac: fix possible NULL-pointer deref in mt76_connac_mcu_uni_bss_he_tlv() Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 115/456] wifi: brcmfmac: fix 802.1X-SHA256 call trace warning Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 116/456] net: bridge: vlan: fix vlan range dumps starting with pvid Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 117/456] net: hsr: fix memory leak on slave unregistration by removing synced VLANs Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 118/456] sctp: auth: verify auth requirement when auth_chunk is NULL Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 119/456] vmxnet3: fix BUG_ON in vmxnet3_get_hdr_len() for Geneve packets Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 120/456] tipc: fix u16 MTU truncation in media and bearer MTU validation Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 121/456] net: stmmac: add tc flower filter for EtherType matching Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 122/456] net: stmmac: fix l3l4 filter rejecting unsupported offload requests Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 123/456] net: stmmac: reset residual action in L3L4 filters on delete Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 124/456] octeontx2-vf: set TC flower flag on MCAM entry allocation Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 125/456] ipv4: icmp: fill flow parameters in icmp_route_lookup decoy lookup Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 126/456] hinic: remove unused ethtool RSS user configuration buffers Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 127/456] net: qrtr: restrict socket creation to the initial network namespace Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 128/456] net/mlx5: E-Switch, fix zero num_dest in prio_tag egress vlan rule Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 129/456] net/mlx5e: Report zero bandwidth for non-ETS traffic classes Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 130/456] net/mlx5e: Reject unsupported CB Shaper TSA in ETS validation Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 131/456] raw: use more conventional iterators Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 132/456] net: ipv6: fix dif and sdif mismatch in raw6_icmp_error Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 133/456] bpf, sockmap: Fix cork use-after-free in tcp_bpf_sendmsg() Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 134/456] can: bcm: defer rx_op deallocation to workqueue to fix thrtimer UAF Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 135/456] can: bcm: add locking when updating filter and timer values Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 136/456] can: bcm: fix CAN frame rx/tx statistics Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 137/456] can: bcm: extend bcm_tx_lock usage for data and timer updates Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 138/456] can: bcm: validate frame length in bcm_rx_setup() for RTR replies Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 139/456] can: bcm: add missing device refcount for CAN filter removal Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 140/456] can: bcm: fix stale rx/tx ops after device removal Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 141/456] can: bcm: fix data race on rx_stamp/rx_ifindex in bcm_rx_handler() Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 142/456] can: bcm: track a single source interface for ANYDEV timeout/throttle ops Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 143/456] drm/rockchip: cdn-dp: add missing check in cdn_dp_config_video() Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 144/456] drm/nouveau/acr: fix missing nvkm_done() in error path of nvkm_acr_oneinit() Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 145/456] drm/radeon: fix r100_copy_blit for large BOs Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 146/456] drm/amdgpu/sdma5.2: replace BUG_ON() with WARN_ON() Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 147/456] drm/amdgpu/sdma5.0: " Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 148/456] drm/i915: Return NULL on error in active_instance Greg Kroah-Hartman
2026-08-17 13:28 ` [PATCH 5.15 149/456] drm/i915/gem: Do not leak siblings[] on proto context error Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 150/456] drm/i915/gem: Fix NULL deref in I915_CONTEXT_PARAM_SSEU Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 151/456] drm/amdgpu: Fix VFCT bus number matching with soft filter Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 152/456] drm/amd/pm/ci: Dont disable MCLK DPM on Bonaire 0x6658 (R7 260X) Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 153/456] drm/amdgpu: fix bo->pin leaking in amdgpu_bo_create_reserved Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 154/456] drm/vmwgfx: Validate vmw_surface_metadata::array_size Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 155/456] media: airspy: Return queued buffers on start_streaming() failure Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 156/456] media: cec: seco: unregister adapter on IR probe failure Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 157/456] media: cedrus: clean up media device on " Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 158/456] media: cedrus: Fix missing cleanup in error path Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 159/456] media: cedrus: skip invalid H.264 reference list entries Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 160/456] media: cx231xx: fix devres lifetime Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 161/456] media: cx23885: add ioremap return check and cleanup Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 162/456] media: meson: vdec: Fix memory leak in error path of vdec_open Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 163/456] media: msi2500: Return queued buffers on start_streaming() failure Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 164/456] media: pci: dm1105: Free allocated workqueue Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 165/456] media: pwc: Drain fill_buf on start_streaming() failure Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 166/456] media: pwc: Return queued buffers " Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 167/456] media: radio-si476x: Unregister v4l2_device on probe failure Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 168/456] media: rtl2832: fix use-after-free in rtl2832_remove() Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 169/456] media: rtl2832_sdr: Return queued buffers on start_streaming() failure Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 170/456] media: saa7134: Fix a possible memory leak in saa7134_video_init1 Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 171/456] media: sun4i-csi: Return queued buffers on start_streaming() failure Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 172/456] media: tegra-video: vi: fix invalid u32 return value in format lookup Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 173/456] media: v4l2-ctrls-request: add NULL check in v4l2_ctrl_request_complete() Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 174/456] media: vb2: use ssize_t for vb2_read/vb2_write Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 175/456] media: vidtv: fix reference leak on failed device registration Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 176/456] media: vimc: " Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 177/456] media: vivid: check for vb2_is_busy() when toggling caps Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 178/456] wifi: ath6kl: fix OOB access from firmware ADDBA window size Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 179/456] wifi: mwifiex: fix NULL dereference when the AP has HT-cap but no HT-oper Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 180/456] wifi: wilc1000: validate assoc response length before subtracting header Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 181/456] wifi: brcmfmac: make release_scratchbuffers idempotent Greg Kroah-Hartman
2026-08-17 13:29 ` Greg Kroah-Hartman [this message]
2026-08-17 13:29 ` [PATCH 5.15 183/456] staging: rtl8723bs: fix inverted HT40 secondary channel offset Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 184/456] Bluetooth: RFCOMM: Fix session UAF in set_termios Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 185/456] exec: fix unsigned loop counter wrap in transfer_args_to_stack() Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 186/456] binfmt_misc: set have_execfd only once the interpreter is opened Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 187/456] cdrom: fix stack out-of-bounds read in CDROMVOLCTRL Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 188/456] x86/boot/compressed: Disable jump tables Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 189/456] comedi: comedi_parport: deal with premature interrupt Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 190/456] intel_th: fix MSC output device reference leak Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 191/456] tracing: Fix mmiotrace possible NULL dereferencing of hiter->dev Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 192/456] tracing: Fix resource leak on mmiotrace trace_pipe close Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 193/456] tracing/eprobe: Fix exact system name matching in eprobe_dyn_event_match() Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 194/456] tracing/probes: Avoid temporary buffer truncation in trace_probe_match_command_args() Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 195/456] tracing/probes: Fix potential underflow in LEN_OR_ZERO macro Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 196/456] tracing/probes: Prevent out-of-bounds write in __trace_probe_log_err() Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 197/456] arm64: syscall: Ensure saved x0 is kept in-sync with tracer updates Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 198/456] Revert "arm64: syscall: Ensure saved x0 is kept in-sync with tracer updates" Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 199/456] mptcp: only set DATA_FIN when a mapping is present Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 200/456] sctp: dont free the ASCONFs own transport in DEL-IP processing Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 201/456] ceph: fix pre-auth out-of-bounds read on snaptrace in ceph_handle_caps() Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 202/456] libceph: bound get_version reply decode to front len Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 203/456] libceph: Fix multiplication overflow in decode_new_up_state_weight() Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 204/456] libceph: guard missing CRUSH type name lookup Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 205/456] libceph: refresh auth->authorizer_buf{,_len} after authorizer update Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 206/456] libceph: Reject monmaps advertising zero monitors Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 207/456] libceph: reject zero bucket types in crush_decode Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 208/456] libceph: remove debugfs files before client teardown Greg Kroah-Hartman
2026-08-17 13:29 ` [PATCH 5.15 209/456] binfmt_elf_fdpic: only honour the first PT_INTERP Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 210/456] iommu/vt-d: Disallow SVA if page walk is not coherent Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 211/456] phonet: pep: fix use-after-free in pep_get_sb() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 212/456] vxlan: require CAP_NET_ADMIN in the device netns for changelink Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 213/456] net: slip: serialize receive against buffer reallocation Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 214/456] geneve: require CAP_NET_ADMIN in the device netns for changelink Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 215/456] net/af_iucv: fix NULL deref in afiucv_hs_callback_syn() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 216/456] net/iucv: fix use-after-free of a severed iucv_path Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 217/456] net/x25: fix use-after-free in x25_kill_by_neigh() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 218/456] net: hip04: fix RX buffer leak on build_skb failure Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 219/456] proc: Fix broken error paths for namespace links Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 220/456] rbd: Reset positive result codes to zero in object map update path Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 221/456] ice: use READ_ONCE() to access cached PHC time Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 222/456] ila: reload IPv6 header after pskb_may_pull in checksum adjust Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 223/456] mac802154: llsec: reject frames shorter than the authentication tag Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 224/456] pppoe: reload header pointer after dev_hard_header() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 225/456] tipc: clear sock->sk on the failed-insert path in tipc_sk_create() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 226/456] drm/amdgpu/gfx10: replace BUG_ON() with WARN_ON() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 227/456] drm/amdgpu/gfx8: drop unecessary BUG_ON() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 228/456] drm/amdgpu/gfx9: replace BUG_ON() with WARN_ON() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 229/456] drm/amdgpu: fix division by zero with invalid uvd dimensions Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 230/456] drm/amdgpu: invoke pm_genpd_remove() before freeing genpd Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 231/456] tipc: fix use-after-free of the discoverer in tipc_disc_rcv() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 232/456] wifi: mt76: mt7615: drop TXRX_NOTIFY on non-mmio buses Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 233/456] openvswitch: fix GSO userspace truncation underflow Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 234/456] raw: remove unused variables from raw6_icmp_error() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 235/456] raw: fix a typo in raw_icmp_error() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 236/456] net: mpls: initialize rtm_tos in mpls_getroute() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 237/456] media: uvcvideo: Implement dual stream quirk to fix loss of usb packets Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 238/456] media: uvcvideo: Fix sequence number when no EOF Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 239/456] gve: fix Rx queue stall on alloc failure Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 240/456] HID: logitech-dj: Standardise hid_report_enum variable nomenclature Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 241/456] HID: logitech-dj: Prevent REPORT_ID_DJ_SHORT related user initiated OOB write Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 242/456] HID: logitech-dj: fix wrong detection of bad DJ_SHORT output report Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 243/456] net: qrtr: ns: Limit the maximum server registration per node Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 244/456] net: qrtr: ns: Raise node count limit to 512 Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 245/456] tls: separate no-async decryption request handling from async Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 246/456] dmaengine: sun6i-dma: Fix reclaim descriptors while terminating DMA Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 247/456] ASoC: max98095: fix missing IS_ERR() before PTR_ERR() on mclk lookup Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 248/456] ASoC: max98090: " Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 249/456] phy: zynqmp: Allow variation in refclk rate Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 250/456] phy-zynqmp: Postpone getting clock rate until actually needed Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 251/456] phy: zynqmp: fix clock error handling in xpsgtr_phy_init() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 252/456] phy: zynqmp: fix runtime PM leak on probe allocation failure Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 253/456] netfilter: nf_conntrack_sip: widen NAT rewrite delta to s32 in sip_help_tcp() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 254/456] drm/mediatek: Check CRTC state before freeing Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 255/456] keys: fix out-of-bounds read in keyring_get_key_chunk() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 256/456] keys: make keyring key-chunk byte order agree with keyring_diff_objects() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 257/456] assoc_array: trim the final shortcut word using the current chunk end Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 258/456] netfilter: xt_hashlimit: validate hashtable supports XT_HASHLIMIT_RATE_MATCH Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 259/456] netfilter: nft_payload: fix mask build for partial field offload Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 260/456] rds: Fix inet6_addr_lst NULL dereference when IPv6 is disabled Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 261/456] rds: tcp: hold the RCU lock across ipv6_chk_addr() in rds_tcp_laddr_check() Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 262/456] scsi: libiscsi: Fix stale-data leak into the SCSI sense buffer Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 263/456] scsi: libiscsi_tcp: Bound SCSI Response data segment to the connection buffer Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 264/456] smb: client: fix buffer leaks in SMB1 read and write Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 265/456] hwmon: (nct6775-core) Prevent access to unsupported weight registers Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 266/456] net: bridge: mrp: fix Option TLV length in MRP_Test frames Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 267/456] forcedeth: fix UAF of txrx_stats in nv_remove Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 268/456] hwmon: (adt7470) Fix fans stuck in manual mode on I2C errors Greg Kroah-Hartman
2026-08-17 13:30 ` [PATCH 5.15 269/456] hwmon: (adt7470) Fix cache updated before hardware write on I2C error Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 270/456] hwmon: (adt7470) Fix busy-loop and I2C flooding in update thread Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 271/456] hwmon: (adt7470) Fix temperature alarm logic in hwmon_temp_read() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 272/456] hwmon: (adt7470) Fix swapped PWM3 and PWM4 auto mode masks Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 273/456] hwmon: (adt7470) Use cached PWM frequency value Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 274/456] hwmon: (adt7470) Fix divide-by-zero TOCTOU crash in fan speed read Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 275/456] hwmon: (adt7470) Fix PWM auto temp state array and bounds check Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 276/456] powerpc/boot: Fix simpleboot CPU node lookup check Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 277/456] powerpc/boot: Fix treeboot-currituck " Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 278/456] powerpc/boot: Fix treeboot-akebono " Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 279/456] wifi: mac80211: validate individual TWT params before driver setup Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 280/456] hwmon: (pmbus) Fix return value from pmbus_update_byte_data() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 281/456] Bluetooth: L2CAP: fix UAF in l2cap_le_connect_rsp Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 282/456] net: phylink: put link_gpio if phylink_create fails Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 283/456] scsi: zfcp: Fix memory leak during adapter release by destroying gid_pn_req Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 284/456] net: sxgbe: free TX rings on RX allocation failure Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 285/456] net: sxgbe: check descriptor ring allocation failures Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 286/456] can: isotp: check register_netdevice_notifier() error in module init Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 287/456] tracing/mmiotrace: Reset dropped_count in mmio_reset_data() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 288/456] octeontx2-pf: Set correct sequence for carrier off and tx queue stop Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 289/456] qede: sync udp_tunnel ports outside qede_lock in the recovery path Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 290/456] rhashtable: clear stale iter->p on table restart Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 291/456] pinctrl: devicetree: dont free uninitialized dev_name on error path Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 292/456] pinctrl: bm1880: add missing select GENERIC_PINCONF Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 293/456] mm/percpu-km: fix bitmap overflow and accounting in pcpu_create_chunk() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 294/456] mm/hugetlb: fix list corruption in allocate_file_region_entries() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 295/456] sctp: validate Adaptation Indication parameter length Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 296/456] audit: fix potential integer overflow in audit_log_n_string() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 297/456] audit: fix potential use-after-free in audit_del_rule() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 298/456] Bluetooth: HIDP: reject frames without a transaction header Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 299/456] Bluetooth: HIDP: validate numbered report payloads Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 300/456] bpf: lwt: Fix dst reference leak on reroute failure Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 301/456] ALSA: 6fire: Fix UAF at error handling during probe Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 302/456] ALSA: lx6464es: fix period byte count for 16-bit streams Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 303/456] ALSA: pcm: wake linked drain waiters on unlink Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 304/456] ASoC: tas2562: fix DVC coefficient write order Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 305/456] ASoC: tas2562: fix broken entries in the volume lookup table Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 306/456] ALSA: usb-audio: fix OOB write in snd_usbmidi_akai_output() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 307/456] ALSA: usb-audio: Fix DMA buffer out-of-bounds write when fill_max is set Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 308/456] ALSA: usb-audio: Clamp frame size in implicit-feedback mode Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 309/456] dmaengine: qcom: bam_dma: Fix command element mask field for BAM v1.6.0+ Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 310/456] e1000: fix memory leak in e1000_probe() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 311/456] igbvf: Fix leak in TX DMA error cleanup Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 312/456] ipvs: do not propagate one-packet flag to synced conns Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 313/456] net/smc: fix socket use-after-free during link group termination Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 314/456] netfilter: ipset: do not update comments from kernel-side hash adds Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 315/456] tipc: avoid use-after-free in poll trace queue dumps Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 316/456] wifi: mwifiex: use the subframe length when parsing A-MSDU TDLS frames Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 317/456] binfmt_misc: reject a flag character as the field delimiter Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 318/456] mm/page_reporting: use system_freezable_wq to fix UAF during suspend Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 319/456] net: bridge: stop fast-leave after deleting a port group Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 320/456] net: ipv6: clear suppressed fib6 rule result Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 321/456] powerpc/ps3: Fix map failure path in dma_ioc0_map_pages() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 322/456] um: vector: fix use-after-free in vector_mmsg_rx() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 323/456] vxlan: re-fetch eth header after route_shortcircuit() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 324/456] vxlan: unclone skb head before modifying eth header in route_shortcircuit() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 325/456] vxlan: use neigh_ha_snapshot() " Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 326/456] vxlan: use pskb_network_may_pull() " Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 327/456] tracing: Check return value of __register_event() in trace_module_add_events() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 328/456] tracing/filters: Fix false positive match in regex_match_full() Greg Kroah-Hartman
2026-08-17 13:31 ` [PATCH 5.15 329/456] selftests/clone3: fix wild pointer access of getline due to missing init Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 330/456] sctp: reject stale cookies with mismatched verification tags Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 331/456] sctp: prevent peer transport count overflow Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 332/456] hwmon: (npcm750-pwm-fan): stop fan timer on device detach Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 333/456] i2c: amd-mp2: Unregister callback on adapter add failure Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 334/456] cpufreq: powernow-k8: Fix possible memory leak in powernowk8_cpu_init() Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 335/456] s390/qeth: Check CAP_NET_ADMIN for private ioctls Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 336/456] s390/dasd: Fix potential NULL pointer dereference Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 337/456] s390/zcrypt: Validate length for CCA AES cipher key requests Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 338/456] s390/zcrypt: Validate length for CCA ECC private " Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 339/456] phy: zynqmp: fix L0_TM_DISABLE_SCRAMBLE_ENCODER mask Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 340/456] phy: zynqmp: use read-modify-write for SERDES scrambler bypass Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 341/456] phy: zynqmp: keep SERDES scrambler and 8b/10b enabled for USB Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 342/456] net: openvswitch: fix potential UAF on meter attach failure Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 343/456] net: openvswitch: fix skb leak on flow key update failure during ct Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 344/456] i2c: jz4780: Cache host clock rate at probe to prevent CCF prepare_lock deadlock Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 345/456] i2c: imx: Cancel hrtimer before clearing slave pointer Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 346/456] can: c_can: c_can_chip_config(): keep controller in init mode until bittiming is configured Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 347/456] can: ems_usb: validate CPC message lengths Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 348/456] can: etas_es58x: es58x_read_bulk_callback(): fix RX buffer leak on URB resubmit failure Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 349/456] can: j1939: transport: j1939_session_fresh_new(): initialize receive buffer Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 350/456] can: kvaser_usb: kvaser_usb_hydra_get_busparams(): fix memory leak in kvaser_usb_hydra_get_busparams() Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 351/456] can: kvaser_usb_leaf: kvaser_usb_leaf_wait_cmd(): validate received command extents Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 352/456] can: softing: fw_parse(): validate firmware record spans Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 353/456] can: peak_usb: add bounds check for USB channel index Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 354/456] can: peak_usb: peak_usb_start(): fix double free of transfer buffer on URB submit error Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 355/456] can: peak_usb: validate uCAN receive record lengths Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 356/456] drm/vc4: Zero the tile state data array before each BIN job Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 357/456] drm/amdgpu: restore UMD profile pstate after runtime resume Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 358/456] drm/amdgpu: cap GTT size to physical RAM on APUs Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 359/456] drm/vmwgfx: validate DRAW_PRIMITIVES header size before division Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 360/456] drm/vmwgfx: bound DMA command body size against suffix pointer Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 361/456] HID: logitech-dj: Fix maxfield check in DJ short report validation Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 362/456] mm/huge_memory: unlock i_mmap_rwsem before releasing after-split folios Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 363/456] net: openvswitch: fix skb leak on flow key update failure during recirculation Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 364/456] firmware: stratix10-svc: fix memory leaks and list corruption bugs Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 365/456] gpio: pch: use raw_spinlock_t for the register lock Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 366/456] mount: honour SB_NOUSER in the new mount API Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 367/456] s390/zcrypt: Fix missing mem scrub at clear key import in cca_clr2cipherkey() Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 368/456] nfs4: take a reference on the nfs_client when running FREE_STATEID Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 369/456] NFS: Pin the struct nfs_server during a FREE_STATEID call Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 370/456] ARM: npcm: Fix OF node refcount leaks in SMP setup Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 371/456] bonding: alb: re-check primary_is_promisc under RTNL in bond_alb_monitor Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 372/456] bpf: Preserve pointer state for commuted arithmetic Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 373/456] net/smc: fix qentry overwrite for CONFIRM_LINK and ADD_LINK_CONT in smc_llc_event_handler() Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 374/456] net/sched: cls_route: fix fastmap use-after-free on filter Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 375/456] net: hisilicon: hix5hd2_gmac: remove redundant NAPI delete Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 376/456] net/mlx5: fw_tracer, return NULL on create error Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 377/456] counter: microchip-tcb-capture: Fix DT channel validation Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 378/456] vhost/vdpa: reject overflowing PA map page counts on 32-bit Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 379/456] udp: fix potential use-after-free in tunnel segmentation Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 380/456] net/sched: sch_cake: drop WARN_ON(1) for malformed packets in ACK filter Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 381/456] net/openvswitch: check Ethernet header length in key_extract() Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 382/456] selftests/ftrace: Add test case for GRP/ only input Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 383/456] selftests/ftrace: refactor eprobes test to fix argument checks Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 384/456] bnxt_en: Do not set EOP on RX AGG BDs on 5760X chips Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 385/456] bnxt_en: Disable EOP for TPA on all chips to prevent data corruption Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 386/456] bnxt_en: Fix PTP PPS setting bug Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 387/456] sctp: fix addip_serial increment on ASCONF_ACK allocation failure Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 388/456] tcp: fix TFO max_qlen accounting across reuseport migration Greg Kroah-Hartman
2026-08-17 13:32 ` [PATCH 5.15 389/456] net/ncsi: fix heap OOB read in NCSI_CMD_SEND_CMD payload length Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 390/456] net: prestera: validate firmware header length Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 391/456] net: remove WARN_ON_ONCE() from sk_mc_loop() Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 392/456] net/smc: fix TOCTOU race between smc_listen_out() and listener close Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 393/456] net: qrtr: ns: Raise lookup limit to 128 Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 394/456] net: thunderbolt: Tear down DMA paths before stopping the rings Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 395/456] ata: pata_sl82c105: fix bridge revision use-after-free Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 396/456] sctp: clear control chunk transport if it is being removed Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 397/456] tls: dont abort the connection on signal-interrupted sends Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 398/456] hwmon: (corsair-psu) fix possible out-of-bounds access on missing string termination Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 399/456] spi: spi-fsl-dspi: Avoid setup_accel logic for DMA transfers Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 400/456] Input: evdev - sanitize event type index when fetching event masks Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 401/456] ALSA: usb-audio: fix OOB write on Type II inbound URBs Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 402/456] usb: atm: cxacru: properly kill rcv_urb on error in cxacru_cm() Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 403/456] thunderbolt: icm: Preserve USB4 proxy data-valid bit Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 404/456] usb: cdnsp: fix incorrect endian conversions for APB timeout register Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 405/456] usb: gadget: f_ncm: Use unsigned int for ndp_index Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 406/456] ima: fix out-of-bounds read in xattr_verify() Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 407/456] ipvs: add totalconns for dest Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 408/456] ipvs: properly update the overload flag on dest edit Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 409/456] ipvs: clear IPv4 options after rebasing tunnel ICMP errors Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 410/456] net/packet: reset the MAC header on the packet-socket transmit path Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 411/456] net: openvswitch: reallocate update replies for mismatched IDs Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 412/456] net: octeontx2-pf: Fix UB in shift operation Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 413/456] net: remove CAP_SYS_RAWIO zero-padding in dev_validate_header Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 414/456] netfilter: ebt_nflog: pin the NFLOG backend Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 415/456] net: bridge: mrp: fix uninitialised bytes on the wire Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 416/456] vt: add permission check for KDSKBMETA ioctl Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 417/456] vt: stabilize tty reference in kbd_keycode with tty_port_tty_get Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 418/456] Input: evdev - fix information leak in evdev_pass_values() Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 419/456] Bluetooth: L2CAP: Fix UAF in channel timeout by holding conn ref Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 420/456] Bluetooth: 6lowpan: Fix using chan->conn as indication to no remote netdev Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 421/456] futex: Prevent robust futex exit race some more Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 422/456] pinctrl: renesas: rzg2l: Use -ENOTSUPP instead of -EOPNOTSUPP Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 423/456] RDMA/rxe: Fix a use-after-free problem in rxe_mmap Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 424/456] fscrypt: Replace mk_users keyring with simple list Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 425/456] ipv4: Fix fib_nlmsg_size() for RTA_VIA nexthops Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 426/456] ipv4: fix use-after-free in fib_nhc_update_mtu() Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 427/456] serial: 8250_dma: Clear stale RX state on shutdown Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 428/456] staging: rtl8723bs: fix OOB read in rtw_get_wpa_ie() Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 429/456] staging: rtl8723bs: fix OOB read in WMM_param_handler() Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 430/456] staging: rtl8723bs: fix missing shared-key auth challenge length check Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 431/456] staging: rtl8723bs: validate monitor transmit frame lengths Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 432/456] misc: fastrpc: fix channel ctx ref leak when session alloc fails Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 433/456] misc: fastrpc: fix memory leak in fastrpc_channel_ctx_free Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 434/456] ALSA: usx2y: bound the hwdep mmap fault offset Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 435/456] tracing: Fix race between update_event_fields and, event_define_fields Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 436/456] fbdev: bitblit: bound-check glyph index in bit_cursor() Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 437/456] ipv6: prevent in6_dev_get() from resurrecting inet6_dev Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 438/456] netfilter: bridge: release template ct on non-IP path Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 439/456] net: atlantic: free RX pages of consumed but not refilled buffers Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 440/456] net/sched: act_gact, act_police: range check the fallback control action Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 441/456] xdp: reject clones that overrun skb_shared_info tailroom Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 442/456] vxlan: do not arm the ageing timer on a device that is down Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 443/456] vsock/virtio: read virtqueues under worker locks Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 444/456] vsock/virtio: avoid refilling the RX queue after teardown Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 445/456] vhost: reset the vring metadata cache on vring reconfiguration Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 446/456] tipc: read le->link under the node lock in tipc_node_link_down() Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 447/456] Revert "thermal/drivers/hwmon: Cleanup coding style a bit" Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 448/456] ring-buffer: Use current_context for safe per-CPU buffer swap Greg Kroah-Hartman
2026-08-17 13:33 ` [PATCH 5.15 449/456] ipv6: fix Route Information option length validation Greg Kroah-Hartman
2026-08-17 13:34 ` [PATCH 5.15 450/456] ip6_tunnel: clear skb2->cb[] in ip6ip6_err() Greg Kroah-Hartman
2026-08-17 13:34 ` [PATCH 5.15 451/456] bpf, sockmap: Fix sk_redir use-after-free in send verdict Greg Kroah-Hartman
2026-08-17 13:34 ` [PATCH 5.15 452/456] scsi: scsi_debug: Negate wrapped memcmp() result Greg Kroah-Hartman
2026-08-17 13:34 ` [PATCH 5.15 453/456] sctp: keep chunk->transport in step with the list it is queued on Greg Kroah-Hartman
2026-08-17 13:34 ` [PATCH 5.15 454/456] sctp: fix use-after-free of cached ASCONF chunk Greg Kroah-Hartman
2026-08-17 13:34 ` [PATCH 5.15 455/456] sctp: clear new_transport when removing a peer Greg Kroah-Hartman
2026-08-17 13:34 ` [PATCH 5.15 456/456] thunderbolt: Bound the DROM dual link port number before indexing sw->ports Greg Kroah-Hartman
2026-08-17 15:56 ` [PATCH 5.15 000/456] 5.15.216-rc1 review Pavel Machek
2026-08-17 19:21 ` Florian Fainelli

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=20260817132547.245871760@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=mokshpanicker.7@gmail.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox