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,
	"syzbot ci" <syzbot+ci493c6d734b63e050@syzkaller.appspotmail.com>,
	"Sean Christopherson" <seanjc@google.com>,
	"Paolo Bonzini" <pbonzini@redhat.com>,
	"Carlos López" <clopez@suse.de>
Subject: [PATCH 6.18 031/480] KVM: VMX: Grab vmcs12 on CR8 interception update iff vCPU is in guest mode
Date: Thu, 16 Jul 2026 15:26:18 +0200	[thread overview]
Message-ID: <20260716133045.372039198@linuxfoundation.org> (raw)
In-Reply-To: <20260716133044.672218725@linuxfoundation.org>

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

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

From: Sean Christopherson <seanjc@google.com>

[ Upstream commit 7ef78d71ca713d8c00f7c34ddcf276c808143f77 ]

When updating CR8 intercepts, get vmcs12 if and only if the vCPU is in
guest mode so that a future change can have update CR8 intercepts during
vCPU creation, without running afoul of get_vmcs12()'s lockdep assertion.

  ------------[ cut here ]------------
  debug_locks && !(lock_is_held(&(&vcpu->mutex)->dep_map) || !refcount_read(&vcpu->kvm->users_count))
  WARNING: arch/x86/kvm/vmx/nested.h:61 at get_vmcs12 arch/x86/kvm/vmx/nested.h:60 [inline], CPU#0: syz.2.19/5879
  WARNING: arch/x86/kvm/vmx/nested.h:61 at vmx_update_cr8_intercept+0x3de/0x4e0 arch/x86/kvm/vmx/vmx.c:6879, CPU#0: syz.2.19/5879
  Modules linked in:
  CPU: 0 UID: 0 PID: 5879 Comm: syz.2.19 Not tainted syzkaller #0 PREEMPT(full)
  Hardware name: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.2-debian-1.16.2-1 04/01/2014
  RIP: 0010:get_vmcs12 arch/x86/kvm/vmx/nested.h:60 [inline]
  RIP: 0010:vmx_update_cr8_intercept+0x3de/0x4e0 arch/x86/kvm/vmx/vmx.c:6879
  Call Trace:
   <TASK>
   apic_update_ppr arch/x86/kvm/lapic.c:984 [inline]
   kvm_lapic_reset+0x1c24/0x2980 arch/x86/kvm/lapic.c:3023
   kvm_vcpu_reset+0x44c/0x1bf0 arch/x86/kvm/x86.c:12986
   kvm_arch_vcpu_create+0x746/0x8b0 arch/x86/kvm/x86.c:12847
   kvm_vm_ioctl_create_vcpu+0x428/0x930 virt/kvm/kvm_main.c:4201
   kvm_vm_ioctl+0x893/0xd50 virt/kvm/kvm_main.c:5159
   vfs_ioctl fs/ioctl.c:51 [inline]
   __do_sys_ioctl fs/ioctl.c:597 [inline]
   __se_sys_ioctl+0xfc/0x170 fs/ioctl.c:583
   do_syscall_x64 arch/x86/entry/syscall_64.c:63 [inline]
   do_syscall_64+0x174/0x580 arch/x86/entry/syscall_64.c:94
   entry_SYSCALL_64_after_hwframe+0x77/0x7f
   </TASK>

No functional change intended.

Reported-by: syzbot ci <syzbot+ci493c6d734b63e050@syzkaller.appspotmail.com>
Closes: https://lore.kernel.org/all/6a2adf3b.3b0a2d4e.8c8d1.0012.GAE@google.com
Cc: stable@vger.kernel.org
Signed-off-by: Sean Christopherson <seanjc@google.com>
Message-ID: <20260618174347.1981064-2-seanjc@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Carlos López <clopez@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 arch/x86/kvm/vmx/vmx.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

--- a/arch/x86/kvm/vmx/vmx.c
+++ b/arch/x86/kvm/vmx/vmx.c
@@ -6734,11 +6734,10 @@ static noinstr void vmx_l1d_flush(struct
 
 void vmx_update_cr8_intercept(struct kvm_vcpu *vcpu, int tpr, int irr)
 {
-	struct vmcs12 *vmcs12 = get_vmcs12(vcpu);
 	int tpr_threshold;
 
 	if (is_guest_mode(vcpu) &&
-		nested_cpu_has(vmcs12, CPU_BASED_TPR_SHADOW))
+	    nested_cpu_has(get_vmcs12(vcpu), CPU_BASED_TPR_SHADOW))
 		return;
 
 	tpr_threshold = (irr == -1 || tpr < irr) ? 0 : irr;



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

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

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

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