All of lore.kernel.org
 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,
	Dmitry Torokhov <dmitry.torokhov@gmail.com>,
	Jinmo Yang <jinmo44.yang@gmail.com>,
	Benjamin Tissoires <bentiss@kernel.org>
Subject: [PATCH 7.1 270/518] HID: wacom: fix slab-out-of-bounds write in wacom_wac_queue_insert
Date: Thu, 16 Jul 2026 15:28:58 +0200	[thread overview]
Message-ID: <20260716133053.723077812@linuxfoundation.org> (raw)
In-Reply-To: <20260716133047.772246337@linuxfoundation.org>

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

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

From: Jinmo Yang <jinmo44.yang@gmail.com>

commit 6b3014ec0e9a390ca563030b2d7689921f0daef5 upstream.

wacom_wac_queue_insert() calls kfifo_skip() in a loop when the kfifo
doesn't have enough space for the incoming report. If the kfifo is
empty, kfifo_skip() reads stale data left in the kmalloc'd buffer
via __kfifo_peek_n() and interprets it as a record length, advancing
fifo->out by that garbage value. This corrupts the internal kfifo
state, causing kfifo_unused() to return a value much larger than the
actual buffer size, which bypasses __kfifo_in_r()'s guard:

  if (len + recsize > kfifo_unused(fifo))
      return 0;

kfifo_copy_in() then performs an out-of-bounds memcpy, writing up to
3842 bytes past the 256-byte buffer.

Add a !kfifo_is_empty() condition to the while loop so kfifo_skip()
is never called on an empty fifo, and check the return value of
kfifo_in() to reject reports that are too large for the fifo.

Suggested-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Fixes: 5e013ad20689 ("HID: wacom: Remove static WACOM_PKGLEN_MAX limit")
Cc: stable@vger.kernel.org
Signed-off-by: Jinmo Yang <jinmo44.yang@gmail.com>
Reviewed-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/hid/wacom_sys.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

--- a/drivers/hid/wacom_sys.c
+++ b/drivers/hid/wacom_sys.c
@@ -54,7 +54,7 @@ static void wacom_wac_queue_insert(struc
 {
 	bool warned = false;
 
-	while (kfifo_avail(fifo) < size) {
+	while (kfifo_avail(fifo) < size && !kfifo_is_empty(fifo)) {
 		if (!warned)
 			hid_warn(hdev, "%s: kfifo has filled, starting to drop events\n", __func__);
 		warned = true;
@@ -62,7 +62,9 @@ static void wacom_wac_queue_insert(struc
 		kfifo_skip(fifo);
 	}
 
-	kfifo_in(fifo, raw_data, size);
+	if (!kfifo_in(fifo, raw_data, size))
+		hid_warn_ratelimited(hdev, "%s: report is too large (%d)\n",
+				     __func__, size);
 }
 
 static void wacom_wac_queue_flush(struct hid_device *hdev,



  parent reply	other threads:[~2026-07-16 13:47 UTC|newest]

Thread overview: 524+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-16 13:24 [PATCH 7.1 000/518] 7.1.4-rc1 review Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 001/518] rust: str: use the "kernel vertical" imports style Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 002/518] rust: str: clean unused import for Rust >= 1.98 Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 003/518] userfaultfd: gate must_wait writability check on pte_present() Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 004/518] net/sched: dualpi2: fix GSO backlog accounting Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 005/518] mm/khugepaged: write all dirty file folios when collapsing Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 006/518] slab: recognize @GFP parameter as optional in kernel-doc Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 007/518] perf trace beauty fcntl: Fix build with older kernel headers Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 008/518] KVM: x86: Move update_cr8_intercept() to lapic.c Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 009/518] KVM: VMX: Grab vmcs12 on CR8 interception update iff vCPU is in guest mode Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 010/518] KVM: x86: Unconditionally recompute CR8 intercept on PPR update Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 011/518] ACPI: CPPC: Suppress UBSAN warning caused by field misuse Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 012/518] ACPI: NFIT: core: Fix possible NULL pointer dereference Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 013/518] ACPI: NFIT: core: Fix acpi_nfit_init() error cleanup Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 014/518] platform/x86: intel-hid: Protect ACPI notify handler against recursion Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 015/518] LoongArch: Add PIO for early access before ACPI PCI root register Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 016/518] rust: cpufreq: clean new `clippy::map_or_identity` lint for Rust 1.98.0 Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 017/518] rust: kasan: KASAN+RUST requires clang Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 018/518] rust: pci: use static lifetime for PCI BAR resource names Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 019/518] rust: block: fix GenDisk cleanup paths Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 020/518] rust: doctest: fix incorrect pattern in replacement Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 021/518] rust: Kbuild: set frame-pointer llvm module flag for CONFIG_FRAME_POINTER Greg Kroah-Hartman
2026-07-16 15:58   ` Miguel Ojeda
2026-07-16 13:24 ` [PATCH 7.1 022/518] futex/requeue: Revert "Prevent NULL pointer dereference in remove_waiter() on self-deadlock"" Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 023/518] perf/core: Detach event groups during remove_on_exec Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 024/518] bpf: Support for hardening against JIT spraying Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 025/518] x86/bugs: Enable IBPB flush on BPF JIT allocation Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 026/518] bpf: Restrict JIT predictor flush to cBPF Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 027/518] bpf: Skip redundant IBPB in pack allocator Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 028/518] bpf: Prefer packs that wont trigger an IBPB flush on allocation Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 029/518] bpf: Prefer dirty packs for eBPF allocations Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 030/518] wifi: rtw89: correct drop logic for malformed AMPDU frames Greg Kroah-Hartman
2026-07-16 13:24 ` [PATCH 7.1 031/518] usb: gadget: function: rndis: add length check to response query Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 032/518] usb: gadget: function: rndis: add length check for header Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 033/518] iio: accel: bmc150: clamp the device-reported FIFO frame count Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 034/518] iio: accel: kxsd9: fix runtime PM imbalance on write_raw() error Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 035/518] iio: adc: ad4062: add GPIOLIB dependency Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 036/518] iio: adc: ad7380: select REGMAP Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 037/518] iio: adc: ad7768-1: Select GPIOLIB Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 038/518] iio: adc: ad7779: add missing select IIO_TRIGGERED_BUFFER to Kconfig Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 039/518] iio: adc: ad_sigma_delta: fix clear_pending_event for registerless devices Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 040/518] iio: adc: ad_sigma_delta: fix CS held asserted and state leaks Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 041/518] iio: adc: lpc32xx: Initialize completion before requesting IRQ Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 042/518] iio: adc: nxp-sar-adc: Fix the delay calculation in nxp_sar_adc_wait_for() Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 043/518] iio: adc: spear: Initialize completion before requesting IRQ Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 044/518] iio: adc: ti-ads1119: fix PM reference leak in buffer preenable Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 045/518] iio: adc: ti-ads124s08: Return reset GPIO lookup errors Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 046/518] iio: backend: fix uninitialized data in debugfs Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 047/518] iio: buffer: hw-consumer: free scan_mask on buffer release Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 048/518] iio: chemical: scd30: Cleanup initializations and fix sign-extension bug Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 049/518] iio: common: st_sensors: honour channel endianness in read_axis_data Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 050/518] iio: core: fix uninitialized data in debugfs Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 051/518] iio: dac: ad3552r-hs: fix uninitialized data ni ad3552r_hs_write_data_source() Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 052/518] iio: event: Fix event FIFO reset race Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 053/518] iio: gyro: bmg160: bail out when bandwidth/filter is not in table Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 054/518] iio: gyro: bmg160: wait full startup time after mode change at probe Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 055/518] iio: imu: adis: add IRQF_NO_THREAD to non-FIFO trigger IRQ Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 056/518] iio: imu: bmi160: add IRQF_NO_THREAD to data-ready " Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 057/518] iio: imu: inv_icm42600: fix timestamp clock period by using lower value Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 058/518] iio: imu: inv_icm42600: fix timestamping by limiting FIFO reading Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 059/518] iio: imu: st_lsm6dsx: deselect shub page before reading whoami Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 060/518] iio: light: al3000a: add missing REGMAP_I2C to Kconfig Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 061/518] iio: light: al3010: " Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 062/518] iio: light: al3010: fix incorrect scale for the highest gain range Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 063/518] iio: light: al3010: read both ALS ADC registers again Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 064/518] iio: light: al3320a: add missing REGMAP_I2C to Kconfig Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 065/518] iio: light: al3320a: read both ALS ADC registers again Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 066/518] iio: light: gp2ap002: fix runtime PM leak on read error Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 067/518] iio: light: opt3001: fix missing state reset on timeout Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 068/518] iio: light: tsl2591: return actual error from probe IRQ failure Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 069/518] iio: light: veml6030: fix channel type when pushing events Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 070/518] iio: magnetometer: ak8975: Add missed pm_runtime_put_autosuspend() call Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 071/518] iio: pressure: bmp280: zero-init bmp580 trigger handler buffer Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 072/518] iio: pressure: mpl115: fix runtime PM leak on read error Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 073/518] iio: proximity: vl53l0x: notify trigger and clear IRQ on error paths Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 074/518] iio: resolver: ad2s1210: notify trigger and clear state on fault read error Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 075/518] iio: temperature: Build mlx90635 with CONFIG_MLX90635 Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 076/518] iio: temperature: ltc2983: Fix n_wires default bypassing rotation check Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 077/518] iio: temperature: ltc2983: Fix reinit_completion() called after conversion start Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 078/518] iio: temperature: tmp006: use devm_iio_trigger_register Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 079/518] ALSA: usx2y: us144mkii: fix work UAF on disconnect Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 080/518] ALSA: virtio: Add missing 384 kHz PCM rate mapping Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 081/518] ALSA: virtio: Validate control metadata from the device Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 082/518] ALSA: ymfpci: check snd_ctl_new1() return value Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 083/518] ALSA: aoa: " Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 084/518] ALSA: caiaq: fix out-of-bounds read in the Traktor Kontrol S4 input parser Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 085/518] ALSA: cmipci: check snd_ctl_new1() return value Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 086/518] ALSA: compress: Fix task creation error unwind Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 087/518] ALSA: es1938: check snd_ctl_new1() return value Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 088/518] ALSA: FCP: Add Focusrite ISA C8X support Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 089/518] ALSA: firewire: isight: bound the sample count to the packet payload Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 090/518] ALSA: gus: check snd_ctl_new1() return value Greg Kroah-Hartman
2026-07-16 13:25 ` [PATCH 7.1 091/518] ALSA: hda/cs35l41: Fix firmware load work teardown Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 092/518] ALSA: hda/hdmi: Add force-connect quirk for HP EliteDesk 800 G5 Mini Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 093/518] ALSA: hda/hdmi: Use AC_PINSENSE_ELDV to detect pinsense for Loongson Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 094/518] ALSA: hda/realtek: Fix noisy mic for Clevo V6xxAW Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 095/518] ALSA: ice1712: check snd_ctl_new1() return value Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 096/518] ALSA: seq: Fix uninitialised heap leak in snd_seq_event_dup() Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 097/518] ALSA: us144mkii: capture_urb_complete: redundant usb_anchor_urb corrupts anchor list on each resubmission Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 098/518] ALSA: usb-audio: add IFB_SILENCE_ON_EMPTY quirk for Behringer Flow 8 Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 099/518] ALSA: usb-audio: avoid kobject path lookup in DualSense match Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 100/518] ALSA: usb-audio: Propagate errors in scarlett_ctl_enum_put() Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 101/518] ALSA: usb-audio: Propagate US-16x08 write errors in route/mix EQ-switch put callbacks Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 102/518] ALSA: usb-audio: Roll back quirk control caches on write errors Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 103/518] ALSA: usb-audio: Update Babyface Pro control caches only after successful writes Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 104/518] ALSA: usb-audio: Update US-16x08 EQ/comp shadow state " Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 105/518] x86,fs/resctrl: Prevent out-of-bounds access while offlining CPU when SNC enabled Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 106/518] vfio/pci: Use a private flag to prevent power state change with VFs Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 107/518] vfio/pci: Latch disable_idle_d3 per device Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 108/518] vfio/pci: Release the VGA arbiter client on register_device() failure Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 109/518] vfio/pci: Fix racy bitfields and tighten struct layout Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 110/518] vfio: prevent infinite loop in vfio_mig_get_next_state() on blocked arc Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 111/518] vfio: Remove device debugfs before releasing devres Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 112/518] vfio/mlx5: Fix racy bitfields and tighten struct layout Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 113/518] Bluetooth: btusb: Add USB ID 2c4e:0128 for Mercusys MA60XNB Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 114/518] Bluetooth: btusb: fix use-after-free on registration failure Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 115/518] Bluetooth: btusb: fix use-after-free on marvell probe failure Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 116/518] Bluetooth: btusb: fix wakeup source leak on " Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 117/518] binder: fix UAF in binder_thread_release() Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 118/518] binder: fix UAF in binder_free_transaction() Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 119/518] rust_binder: use a u64 stride when cleaning up the offsets array Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 120/518] rust_binder: fix BINDER_GET_EXTENDED_ERROR Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 121/518] rust_binder: reject context manager self-transaction Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 122/518] rust_binder: synchronize Rust Binder stats with freeze commands Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 123/518] rust_binder: clear freeze listener on node removal Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 124/518] usb: xhci: Fix sleep in atomic context in xhci_free_streams() Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 125/518] xhci: sideband: fix ring sg table pages leak Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 126/518] usb: typec: tcpci_rt1711h: unregister TCPCI port with devres Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 127/518] riscv: dts: sophgo: Add dma-coherent to SG2042 PCIe controllers Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 128/518] PCI: loongson: Override PCIe bridge supported speeds for Loongson-3C6000 series Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 129/518] PCI: altera: Do not dispose parent IRQ mapping Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 130/518] PCI: altera: Fix resource leaks on probe failure Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 131/518] PCI: Always lift 2.5GT/s restriction in PCIe failed link retraining Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 132/518] PCI: host-common: Request bus reassignment when not probe-only Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 133/518] PCI: imx6: Configure REF_USE_PAD before PHY reset for i.MX95 Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 134/518] PCI: imx6: Fix IMX6SX_GPR12_PCIE_TEST_POWERDOWN handling Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 135/518] PCI: imx6: Assert ref_clk_en after reference clock stabilizes on i.MX95 Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 136/518] PCI: mediatek: Fix IRQ domain leak when port fails to enable Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 137/518] PCI: qcom: Initialize DWC MSI lock for firmware-managed ECAM hosts Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 138/518] PCI: Skip Resizable BAR restore on read error Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 139/518] PCI/IOV: Skip VF " Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 140/518] tcp: restore RCU grace period in tcp_ao_destroy_sock Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 141/518] mm/damon/ops-common: handle extreme intervals in damon_hot_score() Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 142/518] netfilter: ipset: fix race between dump and ip_set_list resize Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 143/518] virtio_pci: fix vq info pointer lookup via wrong index Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 144/518] virtio-mmio: fix device release warning on module unload Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 145/518] hwrng: virtio: clamp device-reported used.len at copy_data() Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 146/518] USB: chaoskey: Fix slab-use-after-free in chaoskey_release() Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 147/518] usb: dwc3: run gadget disconnect from sleepable suspend context Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 148/518] usb: misc: usbio: fix disconnect UAF in client teardown Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 149/518] 6lowpan: fix NHC entry use-after-free on error path Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 150/518] tracing: Fix NULL pointer dereference in func_set_flag() Greg Kroah-Hartman
2026-07-16 13:26 ` [PATCH 7.1 151/518] tipc: fix out-of-bounds read in broadcast Gap ACK blocks Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 152/518] staging: vme_user: bound slave read/write to the kern_buf size Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 153/518] smb: client: restrict implied bcc[0] exemption to responses without data area Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 154/518] staging: vme_user: fix location monitor leak in fake bridge Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 155/518] staging: vme_user: fix location monitor leak in tsi148 bridge Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 156/518] media: staging: ipu3-imgu: Add range check for imgu_css_cfg_acc_stripe Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 157/518] staging: media: atomisp: reduce load_primary_binaries() stack usage Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 158/518] staging: media: ipu7: fix double-free and use-after-free in error paths Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 159/518] staging: rtl8723bs: dont drop short TX frames in _rtw_pktfile_read() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 160/518] staging: rtl8723bs: fix heap buffer overflow in rtw_cfg80211_set_wpa_ie() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 161/518] staging: rtl8723bs: fix WEP length underflow and OOB read in OnAuth() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 162/518] staging: rtl8723bs: fix OOB read in OnAssocRsp() IE loop Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 163/518] staging: rtl8723bs: fix OOB read in update_beacon_info() " Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 164/518] staging: rtl8723bs: fix OOB reads in IE loops in issue_assocreq() and join_cmd_hdl() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 165/518] staging: rtl8723bs: fix OOB reads in is_ap_in_tkip() IE loop Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 166/518] staging: rtl8723bs: fix OOB reads in rtw_get_sec_ie(), rtw_get_wapi_ie(), and rtw_get_wps_attr() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 167/518] staging: rtl8723bs: fix OOB write in HT_caps_handler() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 168/518] crypto: amlogic - avoid double cleanup in meson_crypto_probe() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 169/518] crypto: krb5 - filter out async aead implementations at alloc Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 170/518] crypto: qat - fix VF2PF work teardown race in adf_disable_sriov() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 171/518] ksmbd: fix use-after-free of a deferred file_lock on SMB2_CLOSE then SMB2_CANCEL Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 172/518] net: af_key: initialize alg_key_len for IPComp states Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 173/518] audit: Fix data races of skb_queue_len() readers on audit_queue Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 174/518] Bluetooth: L2CAP: Fix UAF in channel timeout by holding conn ref Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 175/518] Bluetooth: MGMT: Fix UAF of hci_conn_params in add_device_complete Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 176/518] coresight: etb10: restore atomic_t for shared reading state Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 177/518] debugobjects: Plug race against a concurrent OOM disable Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 178/518] fs/ntfs3: validate Dirty Page Table capacity in log_replay copy_lcns Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 179/518] ntfs: avoid calling post_write_mst_fixup() for invalid index_block Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 180/518] NTB: epf: Avoid calling pci_irq_vector() from hardirq context Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 181/518] gpio: eic-sprd: use raw_spinlock_t in the irq startup path Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 182/518] gpio: sch: " Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 183/518] HID: logitech-dj: Fix maxfield check in DJ short report validation Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 184/518] io_uring/nop: fix file reference leak with IOSQE_FIXED_FILE Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 185/518] io_uring/io-wq: re-check IO_WQ_BIT_EXIT for each linked work item Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 186/518] io_uring/rw: preserve partial result for iopoll Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 187/518] netpoll: fix a use-after-free on shutdown path Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 188/518] ipv4: igmp: remove multicast group from hash table on device destruction Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 189/518] net: ipv4: bound TCP reordering sysctl writes and MTU probe sizes Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 190/518] media: nxp: imx8-isi: Fix use-after-free on remove Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 191/518] mfd: cros_ec: Delay dev_set_drvdata() until probe success Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 192/518] mm/shrinker: do not hold RCU lock in shrinker_debugfs_count_show() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 193/518] mm: shrinker: fix shrinker_info teardown race with expansion Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 194/518] mm: shrinker: fix NULL pointer dereference in debugfs Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 195/518] mm: swap_cgroup: fix NULL deref in lookup_swap_cgroup_id on swapless host Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 196/518] mm/swap: add cond_resched() in swap_reclaim_full_clusters to prevent softlockup Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 197/518] netfilter: ctnetlink: use nf_ct_exp_net() in expectation dump Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 198/518] netfilter: handle unreadable frags Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 199/518] netfilter: ebtables: zero chainstack array Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 200/518] netfilter: ebtables: module names must be null-terminated Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 201/518] netfilter: ebtables: terminate table name before find_table_lock() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 202/518] netfilter: flowtable: fix offloaded ct timeout never being extended Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 203/518] netfilter: flowtable: IPIP tunnel hardware offload is not yet support Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 204/518] Bluetooth: btmtksdio: fix infinite loop in btmtksdio_txrx_work() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 205/518] Bluetooth: bnep: pin L2CAP connection during netdev registration Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 206/518] Bluetooth: btnxpuart: Fix out-of-bounds firmware read in nxp_recv_fw_req_v3() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 207/518] Bluetooth: fix UAF in bt_accept_dequeue() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 208/518] Bluetooth: hci_conn: Fix null ptr deref in hci_abort_conn() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 209/518] Bluetooth: hci_uart: clear HCI_UART_SENDING when write_work is canceled Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 210/518] Bluetooth: ISO: avoid NULL deref of conn in iso_conn_big_sync() Greg Kroah-Hartman
2026-07-16 13:27 ` [PATCH 7.1 211/518] Bluetooth: L2CAP: cancel pending_rx_work before taking conn->lock Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 212/518] Bluetooth: L2CAP: validate option length before reading conf opt value Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 213/518] coresight: ultrasoc-smb: Fix OOB write in smb_sync_perf_buffer() Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 214/518] smb: client: resolve SWN tcon from live registrations Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 215/518] smb/client: Fix error code in smb2_aead_req_alloc() Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 216/518] ksmbd: prevent path traversal bypass by restricting caseless retry Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 217/518] ksmbd: add permission checks for FSCTL_DUPLICATE_EXTENTS_TO_FILE Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 218/518] ksmbd: add a permission check for FSCTL_SET_ZERO_DATA Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 219/518] ksmbd: serialize QUERY_DIRECTORY requests per file Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 220/518] ksmbd: fix UAF of struct file_lock in SMB2_LOCK deferred-lock cancellation Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 221/518] ksmbd: require source read access for duplicate extents Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 222/518] ksmbd: add a WRITE_DAC/WRITE_OWNER check to SMB2 SET_INFO SECURITY Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 223/518] ksmbd: run set info with opener credentials Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 224/518] ksmbd: enforce FILE_READ_ATTRIBUTES on SMB_FIND_FILE_POSIX_INFORMATION Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 225/518] ksmbd: add per-handle permission check to FILE_LINK_INFORMATION Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 226/518] ksmbd: use opener credentials for delete-on-close Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 227/518] ksmbd: use opener credentials for ADS I/O Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 228/518] ksmbd: track the connection owning a byte-range lock Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 229/518] ksmbd: validate NTLMv2 response before updating session key Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 230/518] smb/client: fix chown/chgrp with SMB3 POSIX Extensions Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 231/518] smb: client: fix query directory replay double-free Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 232/518] smb: client: fix query_info() " Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 233/518] smb: client: fix double-free in SMB2_ioctl() replay Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 234/518] smb: client: fix change notify replay double-free Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 235/518] smb: client: fix double-free in SMB2_flush() replay Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 236/518] smb: client: fix double-free in SMB2_open() replay Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 237/518] smb: client: fix double-free in SMB2_close() replay Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 238/518] smb: client: Fix next buffer leak in receive_encrypted_standard() Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 239/518] smb: client: use unaligned reads in parse_posix_ctxt() Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 240/518] smb: client: harden POSIX SID length parsing Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 241/518] smb: client: fix atime clamp check in read completion Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 242/518] smb: client: mask server-provided mode to 07777 in modefromsid Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 243/518] smb/server: do not require delete access for non-replacing links Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 244/518] writeback: fix race between cgroup_writeback_umount() and inode_switch_wbs() Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 245/518] OPP: of: Fix potential memory leak in opp_parse_supplies() Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 246/518] cpufreq: qcom-cpufreq-hw: Fix possible double free Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 247/518] firmware_loader: fix device reference leak in firmware_upload_register() Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 248/518] libfs: set SB_I_NOEXEC and SB_I_NODEV by default in init_pseudo() Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 249/518] proc: protect ptrace_may_access() with exec_update_lock (FD links) Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 250/518] perf/x86/intel/uncore: Defer ADL global PMON enable to enable_box() Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 251/518] cpufreq: intel_pstate: Sync policy->cur during CPU offline Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 252/518] sched/rt: Have RT_PUSH_IPI be default off for non PREEMPT_RT Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 253/518] cpufreq: Fix hotplug-suspend race during reboot Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 254/518] cpufreq: pcc: fix use-after-free and double free in _OSC evaluation Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 255/518] proc: protect ptrace_may_access() with exec_update_lock (part 1) Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 256/518] posix-cpu-timers: Fix pid refcount leak in do_cpu_nanosleep() error path Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 257/518] time/jiffies: Register jiffies clocksource before usage Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 258/518] clocksource/drivers/timer-tegra186: Fix support for multiple watchdog instances Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 259/518] s390: Revert support for DCACHE_WORD_ACCESS Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 260/518] perf/arm-cmn: Fix DVM node events Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 261/518] X.509: Fix validation of ASN.1 certificate header Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 262/518] mm/slab: do not limit zeroing to orig_size when only red zoning is enabled Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 263/518] tools/mm/slabinfo: Fix trace disable logic inversion Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 264/518] tools/mm/slabinfo: fix total_objects attribute name Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 265/518] HID: hid-goodix-spi: validate report size to prevent stack buffer overflow Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 266/518] HID: uhid: convert to hid_safe_input_report() Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 267/518] HID: wacom: stop hardware after post-start probe failures Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 268/518] HID: pidff: Use correct effect type in effect update Greg Kroah-Hartman
2026-07-16 13:28 ` [PATCH 7.1 269/518] HID: hid-lenovo-go: cancel cfg_setup work in hid_go_cfg_remove() Greg Kroah-Hartman
2026-07-16 13:28 ` Greg Kroah-Hartman [this message]
2026-07-16 13:28 ` [PATCH 7.1 271/518] HID: wacom: use GFP_ATOMIC in wacom_wac_queue_flush() Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 272/518] HID: letsketch: fix UAF on inrange_timer at driver unbind Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 273/518] HID: multitouch: fix out-of-bounds bit access on mt_io_flags Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 274/518] HID: appleir: fix UAF on pending key_up_timer in remove() Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 275/518] HID: lg-g15: cancel pending work on remove to fix a use-after-free Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 276/518] HID: sensor-hub: Add sensor_hub_input_attr_read_values() for multi-byte reads Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 277/518] hfs/hfsplus: fix u32 overflow in check_and_correct_requested_length Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 278/518] hfs/hfsplus: zero-initialize buffer in hfs_bnode_read Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 279/518] nilfs2: reject CLEAN_SEGMENTS ioctl with out-of-range segment numbers Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 280/518] media: mtk-jpeg: cancel workqueue on release for supported platforms only Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 281/518] serial: 8250_mid: Disable DMA for selected platforms Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 282/518] xfs: use null daddr for unset first bad log block Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 283/518] xfs: release dquot buffer after dqflush failure Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 284/518] xfs: pass back updated nb from xfs_growfs_compute_deltas Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 285/518] xfs: only log freed extents for the current RTG in zoned growfs Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 286/518] xfs: initialize iomap->flags earlier in xfs_bmbt_to_iomap Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 287/518] xfs: fix unreachable BIGTIME check in dquot flush validation Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 288/518] xfs: fix pointer arithmetic error on 32-bit systems Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 289/518] xfs: fix exchmaps reservation limit check Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 290/518] xfs: fix memory leak in xfs_dqinode_metadir_create() Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 291/518] bpf: Reject fragmented frames in devmap Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 292/518] bpf: Restore sysctl new-value from 1 to 0 Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 293/518] bpf: Validate BTF repeated field counts before expansion Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 294/518] bpf: Keep dynamic inner array lookups nullable Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 295/518] bpf: Allow LPM map access from sleepable BPF programs Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 296/518] net: usb: kalmia: bound RX frame length in kalmia_rx_fixup() Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 297/518] Revert "usb: typec: mux: avoid duplicated mux switches" Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 298/518] usb: cdc_acm: Add quirk for Uniden BC125AT scanner Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 299/518] usb: cdnsp: fix stream context array leak in cdnsp_alloc_stream_info() Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 300/518] USB: core: add USB_QUIRK_NO_LPM for VIA Labs USB 2.0 hub Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 301/518] usb: dwc3: fix dwc3_readl() and dwc3_writel() calls in dwc3_ulpi_setup() Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 302/518] usb: dwc3: meson-g12a: fix refcount leak in dwc3_meson_g12a_resume() Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 303/518] usb: free iso schedules on failed submit Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 304/518] usb: gadget: composite: fix dead empty check in the USB_DT_OTG handler Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 305/518] usb: gadget: udc: Fix use-after-free in gadget_match_driver Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 306/518] usb: gadget: f_printer: take kref only for successful open Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 307/518] USB: idmouse: fix use-after-free on disconnect race Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 308/518] USB: ldusb: " Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 309/518] USB: iowarrior: fix use-after-free on disconnect Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 310/518] USB: iowarrior: fix use-after-free on disconnect race Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 311/518] USB: quirks: add NO_LPM for the Samsung T5 EVO Portable SSD Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 312/518] USB: legousbtower: fix use-after-free on disconnect race Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 313/518] usb: sl811-hcd: disable controller wakeup on remove Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 314/518] USB: storage: include US_FL_NO_SAME in quirks mask Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 315/518] usb: misc: usbio: bound bulk IN response length to the received transfer Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 316/518] USB: misc: uss720: unregister parport on probe failure Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 317/518] usb: mtu3: unmap request DMA on queue failure Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 318/518] USB: serial: keyspan_pda: fix information leak Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 319/518] USB: serial: option: add Telit Cinterion FE990D50 compositions Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 320/518] USB: serial: digi_acceleport: fix broken rx after throttle Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 321/518] USB: serial: digi_acceleport: fix hard lockup on disconnect Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 322/518] USB: serial: digi_acceleport: fix write buffer corruption Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 323/518] USB: ulpi: fix memory leak on registration failure Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 324/518] USB: usb-storage: ene_ub6250: restore media-ready check Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 325/518] usbip: tools: support SuperSpeedPlus devices Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 326/518] usbip: vudc: fix NULL deref in vep_dequeue() Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 327/518] usb: typec: anx7411: use devm_pm_runtime_enable() Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 328/518] usb: typec: class: drop PD lookup reference Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 329/518] usb: typec: ps883x: Fix DP+USB3 configuration Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 330/518] usb: typec: tcpm: Fix VDM type for Enter Mode commands Greg Kroah-Hartman
2026-07-16 13:29 ` [PATCH 7.1 331/518] usb: typec: tcpm: Validate SVID index in svdm_consume_modes() Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 332/518] usb: typec: ucsi: Invert DisplayPort role assignment Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 333/518] usb: typec: ucsi: Pass full DP config payload in SET_NEW_CAM for DP alt mode Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 334/518] usb: typec: ucsi: ccg: Fix use-after-free of ucsi on remove Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 335/518] usb: typec: ucsi: cancel pending work on system suspend Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 336/518] usb: gadget: f_fs: initialize reset_work at allocation time Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 337/518] usb: gadget: f_fs: Fix DMA fence leak Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 338/518] usb: gadget: f_fs: Initialize epfile->in early to fix endpoint direction checks Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 339/518] usb: gadget: f_fs: Tie read_buffer lifetime to ffs_epfile Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 340/518] block: skip sync_blockdev() on surprise removal in bdev_mark_dead() Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 341/518] wifi: mt76: mt7921/mt7925: fix NULL dereference in CSA beacon Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 342/518] udf: validate free block extents against the partition length Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 343/518] udf: validate VAT header length against the VAT inode size Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 344/518] udf: validate sparing table length as an entry count, not a byte count Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 345/518] hwrng: jh7110 - fix refcount leak in starfive_trng_read() Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 346/518] crypto: atmel-sha204a - drop hwrng quality reduction for ATSHA204A Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 347/518] crypto: atmel-sha204a - fail on hwrng registration error in probe path Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 348/518] nvme: target: rdma: fix ndev refcount leak on queue connect Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 349/518] block: partitions: fix of_node refcount leak in of_partition() Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 350/518] dm-ioctl: report an error if a device has no table Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 351/518] nvme-multipath: set BIO_REMAPPED on bios remapped to per-path namespace disks Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 352/518] nvmet: fix pre-auth out-of-bounds heap read in Discovery Get Log Page Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 353/518] btrfs: fix false IO failure after falling back to buffered write Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 354/518] nvmet-auth: validate reply message payload bounds against transfer length Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 355/518] btrfs: check and set EXTENT_DELALLOC_NEW before clearing EXTENT_DELALLOC Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 356/518] btrfs: do not trim a device which is not writeable Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 357/518] partitions: aix: bound the pp_count scan to the ppe array Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 358/518] btrfs: fix incorrect buffered IO fallback for append direct writes Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 359/518] isofs: bound Rock Ridge symlink components to the SL record Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 360/518] crypto: af_alg - Remove zero-copy support from skcipher and aead Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 361/518] crypto: caam - use print_hex_dump_devel to guard key hex dumps Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 362/518] crypto: caam - use print_hex_dump_devel to guard key hex dumps again Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 363/518] crypto: chacha20poly1305 - validate poly1305 template argument Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 364/518] crypto: crypto4xx - Remove insecure and unused rng_alg Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 365/518] crypto: ecc - Fix carry overflow in vli multiplication Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 366/518] crypto: hisi-trng - Remove crypto_rng interface Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 367/518] crypto: pcrypt - restore callback for non-parallel fallback Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 368/518] crypto: tegra - fix refcount leak in tegra_se_host1x_submit() Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 369/518] crypto: loongson - Select CRYPTO_RNG Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 370/518] crypto: loongson - Remove broken and unused loongson-rng Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 371/518] crypto: ccp - Do not initialize SNP for SEV ioctls Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 372/518] crypto: ccp - Do not initialize SNP for ioctl(SNP_COMMIT) Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 373/518] crypto: ccp - Do not initialize SNP for ioctl(SNP_VLEK_LOAD) Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 374/518] crypto: ccp - Do not initialize SNP for ioctl(SNP_CONFIG) Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 375/518] crypto: drbg - Fix returning success on failure in CTR_DRBG Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 376/518] crypto: drbg - Fix misaligned writes in CTR_DRBG and HASH_DRBG Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 377/518] crypto: drbg - Fix ineffective sanity check Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 378/518] crypto: drbg - Fix drbg_max_addtl() on 64-bit kernels Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 379/518] crypto: drbg - Fix the fips_enabled priority boost Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 380/518] crypto: qat - centralize bus master enable Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 381/518] crypto: qat - fix restarting state leak on allocation failure Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 382/518] crypto: qat - handle sysfs-triggered reset callbacks Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 383/518] crypto: qat - keep VFs enabled during reset Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 384/518] crypto: qat - notify fatal error before AER reset preparation Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 385/518] crypto: qat - protect service table iterations with service_lock Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 386/518] crypto: qat - skip restart for down devices Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 387/518] crypto: qat - validate RSA CRT component lengths Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 388/518] crypto: qat - factor out AER reset helpers Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 389/518] crypto: talitos - use dma_sync_single_for_cpu() before reading descriptor header Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 390/518] crypto: talitos - add chaining of arbitrary number of descriptor for the SEC1 Greg Kroah-Hartman
2026-07-16 13:30 ` [PATCH 7.1 391/518] crypto: talitos - move dma unmapping code in flush_channel() into a standalone dma_unmap_request() function Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 392/518] crypto: talitos - move dma mapping code in talitos_submit() into a standalone dma_map_request() function Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 393/518] crypto: talitos - move code in current_desc_hdr() into a standalone function Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 394/518] crypto: talitos/hash - prepare SEC1 descriptor chaining, remove additional descriptor Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 395/518] crypto: talitos/hash - use descriptor chaining for SEC1 instead of workqueue Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 396/518] crypto: talitos/hash - drop workqueue mechanism for SEC1 Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 397/518] crypto: talitos/hash - rename first_desc/last_desc to first_request/last_request Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 398/518] crypto: talitos/hash - remove useless wrapper Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 399/518] crypto: talitos/hash - fix SEC2 64k - 1 ahash request limitation Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 400/518] arm64: fpsimd: Fix type mismatch in sme_{save,load}_state() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 401/518] spi: fsl-lpspi: replace dmaengine_terminate_all() with dmaengine_terminate_sync() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 402/518] spi: fsl-lpspi: terminate the RX channel on TX prepare failure path Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 403/518] x86/mm: Fix freeing of PMD-sized vmemmap pages Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 404/518] EDAC/i10nm: Dont fail probing if ADXL is missing Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 405/518] watchdog: apple: Add "apple,t8103-wdt" compatible Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 406/518] regulator: scmi: fix of_node refcount leak in scmi_regulator_probe() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 407/518] i2c: core: fix hang on adapter registration failure Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 408/518] perf/aux: Fix page UAF in map_range() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 409/518] liveupdate: reject LIVEUPDATE_IOCTL_CREATE_SESSION with invalid name length Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 410/518] selftests/liveupdate: add test cases for LIVEUPDATE_IOCTL_CREATE_SESSION calls with invalid length Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 411/518] tracing: Prevent out-of-bounds read in glob matching Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 412/518] audit: fix potential integer overflow in audit_log_n_hex() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 413/518] NFSv4: include MAY_WRITE in open permission mask for O_TRUNC Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 414/518] rqspinlock: Fix order in raw_res_spin_(un)lock_irq to allow schedule Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 415/518] module: decompress: check return value of module_extend_max_pages() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 416/518] vt: fix spurious modifier in CSI/cursor key sequences Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 417/518] exfat: preserve benign secondary entries during rename and move Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 418/518] exfat: bound uniname advance in exfat_find_dir_entry() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 419/518] NTB: epf: Fix request_irq() unwind in ntb_epf_init_isr() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 420/518] riscv: mm: Define DIRECT_MAP_PHYSMEM_END Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 421/518] riscv: mm: Unconditionally sfence.vma for spurious fault Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 422/518] lib/test_hmm: use kvfree() to free kvcalloc() allocations Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 423/518] mm: fix mmap errno value when MAP_DROPPABLE is not supported Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 424/518] selftests: mm: fix and speedup "droppable" test Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 425/518] mm: page_ext: add count limit to page_ext_iter_next to prevent invalid PFN access Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 426/518] mm: do file ownership checks with the proper mount idmap Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 427/518] selftests/mm: pagemap_ioctl: use the correct page size for transact_test() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 428/518] selftests/mm: fix ksft_process_madv.sh test category Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 429/518] nouveau/vmm: fix another SPT/LPT race Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 430/518] bpf: Reject BPF_MAP_TYPE_INODE_STORAGE creation if BPF LSM is uninitialized Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 431/518] iommu/vt-d: Avoid WARNING in sva unbind path Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 432/518] iommu/amd: Dont split flush for amd_iommu_domain_flush_all() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 433/518] iommufd: Use sizeof(*hdr) instead of sizeof(hdr) in veventq read Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 434/518] iommufd: Fix data_len byte-count vs element-count mismatch Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 435/518] iommufd: Move vevent memory allocation outside spinlock Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 436/518] iommufd: Set veventq_depth upper bound Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 437/518] iommufd: Rewind header length in done if iommufd_veventq_fops_read() fails Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 438/518] iommufd: Reject invalid read count in iommufd_veventq_fops_read() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 439/518] iommufd: Propagate allocation failure in iommufd_veventq_deliver_fetch() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 440/518] iommufd: Reject invalid read count in iommufd_fault_fops_read() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 441/518] iommufd: Break the loop on failure " Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 442/518] iommufd: Avoid partial fault group delivery " Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 443/518] iommufd: Set upper bounds on cache invalidation entry_num and entry_len Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 444/518] audit: fix removal of dangling executable rules Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 445/518] landlock: Set audit_net.sk for socket access checks Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 446/518] selftests/landlock: Explicitly disable audit in teardowns Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 447/518] landlock: Account all audit data allocations to user space Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 448/518] selftests/landlock: Filter dealloc records in audit_count_records() Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 449/518] selftests/landlock: Increase default audit socket timeout Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 450/518] KVM: arm64: nv: Avoid dereferencing NULL VNCR pseudo-TLB Greg Kroah-Hartman
2026-07-16 13:31 ` [PATCH 7.1 451/518] LoongArch: KVM: Add missing slots_lock for device register/unregister Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 452/518] KVM: arm64: Bound used_lrs when flushing the pKVM hyp vCPU Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 453/518] KVM: arm64: Clear __hyp_running_vcpu " Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 454/518] KVM: SEV: Pin source page for write when adding CPUID data for SNP guest Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 455/518] KVM: SVM: Disable x2AVIC RDMSR interception for MSRs KVM actually supports Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 456/518] KVM: SVM: Only disable x2AVIC WRMSR interception for MSRs that are accelerated Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 457/518] KVM: VMX: Refresh GUEST_PENDING_DBG_EXCEPTIONS.BS on all injected #DBs Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 458/518] KVM: SEV: Dont terminate SNP VMs on #VMGEXIT without a registered GHCB Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 459/518] KVM: VMX: Handle bad values on proxied writes to LBR MSRs Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 460/518] KVM: TDX: Account all non-transient page allocations for per-TD structures Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 461/518] KVM: x86: Ensure vendors exit handler runs before fastpath userspace exits Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 462/518] KVM: guest_memfd: Treat memslot binding offset+size as unsigned values Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 463/518] KVM: x86: Add dedicated API for getting mask of accelerated x2APIC MSRs Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 464/518] KVM: arm64: Dont leak PFN when kvm_translate_vncr() races MMU notifier Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 465/518] udmabuf: fix DMA direction mismatch in release_udmabuf() Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 466/518] dma-buf/udmabuf: skip redundant cpu sync to fix cacheline EEXIST warning Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 467/518] svcrdma: wake sq waiters when the transport closes Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 468/518] Revert "svcrdma: Use contiguous pages for RDMA Read sink buffers" Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 469/518] fpga: dfl-afu: validate DMA mapping length in afu_dma_map_region() Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 470/518] i2c: core: fix adapter probe deferral loop Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 471/518] i2c: core: fix irq domain leak on adapter registration failure Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 472/518] i2c: core: fix NULL-deref " Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 473/518] i2c: core: fix adapter debugfs creation Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 474/518] i2c: core: fix adapter deregistration race Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 475/518] i2c: mpc: Fix timeout calculations Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 476/518] i2c: davinci: Unregister cpufreq notifier on probe failure Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 477/518] i2c: stm32f7: truncate clock period instead of rounding it Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 478/518] i2c: imx-lpi2c: mark I2C adapter when hardware is powered down Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 479/518] i2c: i801: fix hardware state machine corruption in error path Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 480/518] Input: synaptics-rmi4 - unregister function handlers on physical driver registration failure Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 481/518] Input: synaptics-rmi4 - bound the F3A keymap to the GPIO count Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 482/518] Input: synaptics-rmi4 - bound the F30 keymap to the GPIO/LED count Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 483/518] Input: elan_i2c - prevent division by zero and arithmetic underflow Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 484/518] Input: goodix - clamp the device-reported contact count Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 485/518] Input: iforce - bound the device-reported force-feedback effect index Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 486/518] Input: mms114 - fix touch indexing for MMS134S and MMS136 Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 487/518] Input: ads7846 - dont use scratch for tx_buf when clearing register Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 488/518] Input: touchwin - reset the packet index on every complete packet Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 489/518] Input: mms114 - reject an oversized device packet size Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 490/518] Input: gscps2 - advance receive buffer write index Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 491/518] Input: maplemouse - fix NULL pointer dereference in open() Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 492/518] Input: mms114 - fix multi-touch slot corruption Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 493/518] Input: maple_keyb - set driver data before registering input device Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 494/518] Input: maplemouse " Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 495/518] Input: maplecontrol " Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 496/518] RDMA/rtrs-srv: Bound RDMA-Write length to chunk size in rdma_write_sg Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 497/518] RDMA/core: Fix broadcast address falsely detected as local Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 498/518] RDMA/siw: bound Read Response placement to the RREAD length Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 499/518] fuse: back uncached readdir buffers with pages Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 500/518] fuse: avoid 32-bit prune notification count wrap Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 501/518] Revert "fuse: fix conversion of fuse_reverse_inval_entry() to start_removing()" Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 502/518] fuse: fix device node leak in cuse_process_init_reply() Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 503/518] fuse: do not use start_removing_noperm() Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 504/518] fuse: re-lock request before returning from fuse_ref_folio() Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 505/518] fuse: fix io-uring background queue dispatch on request completion Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 506/518] fuse: dont block in fuse_get_dev() for non-sync_init case Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 507/518] fuse: clear intr_entry in fuse_resend and fuse_remove_pending_req Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 508/518] fuse-uring: fix EFAULT clobber in fuse_uring_commit Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 509/518] fuse-uring: fix data races on ring->ready Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 510/518] fuse-uring: fix moving cancelled entry to ent_in_userspace list Greg Kroah-Hartman
2026-07-16 13:32 ` [PATCH 7.1 511/518] fuse-uring: end fuse_req on io-uring cancel task work Greg Kroah-Hartman
2026-07-16 13:33 ` [PATCH 7.1 512/518] fuse-uring: Avoid use-after-free in fuse_uring_async_stop_queues Greg Kroah-Hartman
2026-07-16 13:33 ` [PATCH 7.1 513/518] fuse-uring: Avoid queue->stopped races and set/read that value under lock Greg Kroah-Hartman
2026-07-16 13:33 ` [PATCH 7.1 514/518] fuse-uring: make a fuse_req on SQE commit only findable after memcpy Greg Kroah-Hartman
2026-07-16 13:33 ` [PATCH 7.1 515/518] fuse-uring: remove request-less entries from ent_w_req_queue to fix NULL deref Greg Kroah-Hartman
2026-07-16 13:33 ` [PATCH 7.1 516/518] ALSA: doc: usb-audio: Add doc for QUIRK_FLAG_IFB_SILENCE_ON_EMPTY Greg Kroah-Hartman
2026-07-16 13:33 ` [PATCH 7.1 517/518] timekeeping: Register default clocksource before taking tk_core.lock Greg Kroah-Hartman
2026-07-16 13:33 ` [PATCH 7.1 518/518] Bluetooth: 6lowpan: Fix using chan->conn as indication to no remote netdev Greg Kroah-Hartman
2026-07-16 14:37 ` [PATCH 7.1 000/518] 7.1.4-rc1 review Ronald Warsow
2026-07-16 14:55 ` Brett A C Sheffield
2026-07-16 17:30 ` Florian Fainelli
2026-07-16 20:05 ` Justin Forbes

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=20260716133053.723077812@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=bentiss@kernel.org \
    --cc=dmitry.torokhov@gmail.com \
    --cc=jinmo44.yang@gmail.com \
    --cc=patches@lists.linux.dev \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.