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, sashiko-bot <sashiko-bot@kernel.org>,
	Davidlohr Bueso <dave@stgolabs.net>,
	Namhyung Kim <namhyung@kernel.org>,
	Ian Rogers <irogers@google.com>,
	Arnaldo Carvalho de Melo <acme@redhat.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 0667/1266] perf sched: Fix idle-hist callchain display using wrong rb_first variant
Date: Tue, 21 Jul 2026 17:18:24 +0200	[thread overview]
Message-ID: <20260721152456.784422025@linuxfoundation.org> (raw)
In-Reply-To: <20260721152441.786066624@linuxfoundation.org>

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

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

From: Arnaldo Carvalho de Melo <acme@redhat.com>

[ Upstream commit d9b99dc8148e0c1f5da3942131b47e0d21187a32 ]

timehist_print_idlehist_callchain() calls rb_first_cached() on
sorted_root, but the sort function (callchain_param.sort) populates it
via rb_insert_color() on the plain rb_root member — not the cached
variant.  This means rb_leftmost is never set, so rb_first_cached()
always returns NULL and the entire callchain summary is silently
dropped from --idle-hist output.

The original code in ba957ebb54893aca ("perf sched timehist: Show
callchains for idle stat") was correct — it used struct rb_root and
rb_first().  The bug was introduced when sorted_root was converted to
rb_root_cached without converting the sort insertion path to use
rb_insert_color_cached().

Use rb_first(&root->rb_root) to match how the tree was populated.

Fixes: cb4c13a5137766c3 ("perf sched: Use cached rbtrees")
Reported-by: sashiko-bot <sashiko-bot@kernel.org>
Cc: Davidlohr Bueso <dave@stgolabs.net>
Cc: Namhyung Kim <namhyung@kernel.org>
Acked-by: Ian Rogers <irogers@google.com>
Assisted-by: Claude:claude-opus-4.6
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 tools/perf/builtin-sched.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tools/perf/builtin-sched.c b/tools/perf/builtin-sched.c
index 8b1573515c5781..db4ceebab8d8ad 100644
--- a/tools/perf/builtin-sched.c
+++ b/tools/perf/builtin-sched.c
@@ -2906,7 +2906,8 @@ static size_t timehist_print_idlehist_callchain(struct rb_root_cached *root)
 	size_t ret = 0;
 	FILE *fp = stdout;
 	struct callchain_node *chain;
-	struct rb_node *rb_node = rb_first_cached(root);
+	/* sort() uses rb_insert_color() on rb_root, not rb_root_cached */
+	struct rb_node *rb_node = rb_first(&root->rb_root);
 
 	printf("  %16s  %8s  %s\n", "Idle time (msec)", "Count", "Callchains");
 	printf("  %.16s  %.8s  %.50s\n", graph_dotted_line, graph_dotted_line,
-- 
2.53.0




  parent reply	other threads:[~2026-07-21 20:39 UTC|newest]

Thread overview: 1272+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-21 15:07 [PATCH 6.6 0000/1266] 6.6.145-rc1 review Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0001/1266] bpf, arm64: Reject out-of-range B.cond targets Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0002/1266] nfsd: release layout stid on setlease failure Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0003/1266] nfsd: reset write verifier on deferred writeback errors Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0004/1266] ext4: get rid of ppath in get_ext_path() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0005/1266] LoongArch: Report dying CPU to RCU in stop_this_cpu() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0006/1266] Bluetooth: btmtk: apply the common btmtk_fw_get_filename Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0007/1266] Bluetooth: btusb: mediatek: reset the controller before downloading the fw Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0008/1266] Bluetooth: btusb: mediatek: add MT7922 subsystem reset Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0009/1266] Bluetooth: btusb: mediatek: remove the unnecessary goto tag Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0010/1266] Bluetooth: btusb: mediatek: return error for failed reg access Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0011/1266] Bluetooth: btmtk: move btusb_mtk_[setup, shutdown] to btmtk.c Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0012/1266] Bluetooth: btmtk: Fix failed to send func ctrl for MediaTek devices Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0013/1266] Bluetooth: btmtk: Fix wait_on_bit_timeout interruption during shutdown Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0014/1266] userfaultfd: gate must_wait writability check on pte_present() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0015/1266] perf: Fix dangling cgroup pointer in cpuctx backport Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0016/1266] Bluetooth: btmtk: Fix btmtk.c undefined reference build error Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0017/1266] slimbus: qcom-ngd-ctrl: Fix probe error path ordering Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0018/1266] slimbus: qcom-ngd-ctrl: Correct PDR and SSR cleanup ownership Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0019/1266] slimbus: Convert to platform remove callback returning void Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0020/1266] slimbus: qcom-ngd-ctrl: Register callbacks after creating the ngd Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0021/1266] drm/amd: Fix set but not used warnings Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0022/1266] net: ip_gre: require CAP_NET_ADMIN in the device netns for changelink Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0023/1266] device property: initialize the remaining fields of fwnode_handle in fwnode_init() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0024/1266] f2fs: validate orphan inode entry count Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0025/1266] f2fs: atomic: fix UAF issue on f2fs_inode_info.atomic_inode Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0026/1266] f2fs: bound i_inline_xattr_size for non-inline-xattr inodes Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0027/1266] f2fs: fix potential deadlock in f2fs_balance_fs() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0028/1266] f2fs: fix potential deadlock in gc_merge path of f2fs_balance_fs() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0029/1266] f2fs: fix listxattr handling of corrupted xattr entries Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0030/1266] KVM: Replace guest-triggerable BUG_ON() in ioeventfd datamatch with get_unaligned() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0031/1266] block: Avoid mounting the bdev pseudo-filesystem in userspace Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0032/1266] i2c: core: fix irq domain leak on adapter registration failure Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0033/1266] i2c: core: fix hang " Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0034/1266] i2c: core: fix NULL-deref " Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0035/1266] i2c: core: fix adapter debugfs creation Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0036/1266] i2c: core: fix adapter registration race Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0037/1266] fbdev: fbcon: fix out-of-bounds read in err_out of fbcon_do_set_font() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0038/1266] NFSv4/flexfiles: reject zero filehandle version count Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0039/1266] nfsd: Dont reset the write verifier on a commit EAGAIN Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0040/1266] apparmor: advertise the tcp fast open fix is applied Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0041/1266] nfsd: move name lookup out of nfsd4_list_rec_dir() Greg Kroah-Hartman
2026-07-21 15:07 ` [PATCH 6.6 0042/1266] nfsd: change nfs4_client_to_reclaim() to allocate data Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0043/1266] net: team: rename team to team_core for linking Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0044/1266] net, team, bonding: Add netdev_base_features helper Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0045/1266] bonding: Fix initial {vlan,mpls}_feature set in bond_compute_features Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0046/1266] bonding: add ESP offload features when slaves support Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0047/1266] bonding: Correctly support GSO ESP offload Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0048/1266] net: add a common function to compute features for upper devices Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0049/1266] bonding: use common function to compute the features Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0050/1266] bonding: fix xfrm offload feature setup on active-backup mode Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0051/1266] bonding: fix type confusion in bond_setup_by_slave() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0052/1266] bonding: prevent potential infinite loop in bond_header_parse() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0053/1266] team: fix header_ops type confusion with non-Ethernet ports Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0054/1266] mm/vmscan: flush deferred TLB before freeing large folios Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0055/1266] xfs: recreate work items when recovering intent items Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0056/1266] xfs: dump the recovered xattri log item if corruption happens Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0057/1266] xfs: use xfs_defer_finish_one to finish recovered work items Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0058/1266] xfs: move ->iop_recover to xfs_defer_op_type Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0059/1266] Bluetooth: ISO: Copy BASE if service data matches EIR_BAA_SERVICE_UUID Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0060/1266] perf trace beauty fcntl: Fix build with older kernel headers Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0061/1266] ACPI: CPPC: Suppress UBSAN warning caused by field misuse Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0062/1266] ACPI: NFIT: core: Fix possible NULL pointer dereference Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0063/1266] rust: Kbuild: set frame-pointer llvm module flag for CONFIG_FRAME_POINTER Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0064/1266] perf/core: Detach event groups during remove_on_exec Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0065/1266] Revert "crypto: talitos - rename first/last to first_desc/last_desc" Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0066/1266] Revert "crypto: talitos - fix SEC1 32k ahash request limitation" Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0067/1266] crypto: talitos - stop using crypto_ahash::init Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0068/1266] crypto: talitos - fix SEC1 32k ahash request limitation Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0069/1266] crypto: talitos - rename first/last to first_desc/last_desc Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0070/1266] arm64: sysreg: Add layout for ID_AA64MMFR4_EL1 Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0071/1266] arm64: Treat HCR_EL2.E2H as RES1 when ID_AA64MMFR4_EL1.E2H0 is negative Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0072/1266] arm64: Fix early handling of FEAT_E2H0 not being implemented Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0073/1266] KVM: arm64: Initialize HCR_EL2.E2H early Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0074/1266] KVM: arm64: Initialize SCTLR_EL1 in __kvm_hyp_init_cpu() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0075/1266] arm64: Revamp HCR_EL2.E2H RES1 detection Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0076/1266] arm64: sysreg: Correct sign definitions for EIESB and DoubleLock Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0077/1266] virtio_net: Support dynamic rss indirection table size Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0078/1266] LoongArch: Add PIO for early access before ACPI PCI root register Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0079/1266] net: Drop the lock in skb_may_tx_timestamp() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0080/1266] MIPS: smp: report dying CPU to RCU in stop_this_cpu() Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0081/1266] usb: gadget: function: rndis: add length check to response query Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0082/1266] usb: gadget: function: rndis: add length check for header Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0083/1266] iio: accel: bmc150: clamp the device-reported FIFO frame count Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0084/1266] iio: accel: kxsd9: fix runtime PM imbalance on write_raw() error Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0085/1266] iio: adc: lpc32xx: Initialize completion before requesting IRQ Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0086/1266] iio: adc: spear: " Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0087/1266] iio: adc: ti-ads124s08: Return reset GPIO lookup errors Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0088/1266] iio: chemical: scd30: Cleanup initializations and fix sign-extension bug Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0089/1266] iio: event: Fix event FIFO reset race Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0090/1266] iio: gyro: bmg160: bail out when bandwidth/filter is not in table Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0091/1266] iio: gyro: bmg160: wait full startup time after mode change at probe Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0092/1266] iio: imu: bmi160: add IRQF_NO_THREAD to data-ready trigger IRQ Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0093/1266] iio: imu: inv_icm42600: fix timestamp clock period by using lower value Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0094/1266] iio: imu: st_lsm6dsx: deselect shub page before reading whoami Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0095/1266] iio: light: al3010: fix incorrect scale for the highest gain range Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0096/1266] iio: light: gp2ap002: fix runtime PM leak on read error Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0097/1266] iio: light: opt3001: fix missing state reset on timeout Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0098/1266] iio: light: tsl2591: return actual error from probe IRQ failure Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0099/1266] iio: light: veml6030: fix channel type when pushing events Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0100/1266] iio: magnetometer: ak8975: Add missed pm_runtime_put_autosuspend() call Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0101/1266] iio: temperature: ltc2983: Fix reinit_completion() called after conversion start Greg Kroah-Hartman
2026-07-21 15:08 ` [PATCH 6.6 0102/1266] ALSA: virtio: Add missing 384 kHz PCM rate mapping Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0103/1266] ALSA: ymfpci: check snd_ctl_new1() return value Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0104/1266] ALSA: caiaq: fix out-of-bounds read in the Traktor Kontrol S4 input parser Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0105/1266] ALSA: cmipci: check snd_ctl_new1() return value Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0106/1266] ALSA: es1938: " Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0107/1266] ALSA: firewire: isight: bound the sample count to the packet payload Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0108/1266] ALSA: gus: check snd_ctl_new1() return value Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0109/1266] ALSA: ice1712: " Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0110/1266] ALSA: seq: Fix uninitialised heap leak in snd_seq_event_dup() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0111/1266] ALSA: usb-audio: avoid kobject path lookup in DualSense match Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0112/1266] ALSA: usb-audio: Propagate errors in scarlett_ctl_enum_put() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0113/1266] ALSA: usb-audio: Propagate US-16x08 write errors in route/mix EQ-switch put callbacks Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0114/1266] ALSA: usb-audio: Roll back quirk control caches on write errors Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0115/1266] ALSA: usb-audio: Update Babyface Pro control caches only after successful writes Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0116/1266] ALSA: usb-audio: Update US-16x08 EQ/comp shadow state " Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0117/1266] vfio/pci: Use a private flag to prevent power state change with VFs Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0118/1266] vfio/pci: Latch disable_idle_d3 per device Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0119/1266] vfio/pci: Release the VGA arbiter client on register_device() failure Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0120/1266] vfio/pci: Fix racy bitfields and tighten struct layout Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0121/1266] vfio: prevent infinite loop in vfio_mig_get_next_state() on blocked arc Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0122/1266] Bluetooth: btusb: Add USB ID 2c4e:0128 for Mercusys MA60XNB Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0123/1266] Bluetooth: btusb: fix use-after-free on registration failure Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0124/1266] Bluetooth: btusb: fix use-after-free on marvell probe failure Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0125/1266] Bluetooth: btusb: fix wakeup source leak on " Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0126/1266] binder: fix UAF in binder_thread_release() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0127/1266] binder: fix UAF in binder_free_transaction() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0128/1266] usb: xhci: Fix sleep in atomic context in xhci_free_streams() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0129/1266] usb: typec: tcpci_rt1711h: unregister TCPCI port with devres Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0130/1266] PCI: altera: Do not dispose parent IRQ mapping Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0131/1266] PCI: host-common: Request bus reassignment when not probe-only Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0132/1266] mm/damon/ops-common: handle extreme intervals in damon_hot_score() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0133/1266] netfilter: ipset: fix race between dump and ip_set_list resize Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0134/1266] virtio-mmio: fix device release warning on module unload Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0135/1266] hwrng: virtio: clamp device-reported used.len at copy_data() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0136/1266] USB: chaoskey: Fix slab-use-after-free in chaoskey_release() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0137/1266] usb: dwc3: run gadget disconnect from sleepable suspend context Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0138/1266] 6lowpan: fix NHC entry use-after-free on error path Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0139/1266] tipc: fix out-of-bounds read in broadcast Gap ACK blocks Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0140/1266] staging: vme_user: bound slave read/write to the kern_buf size Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0141/1266] smb: client: restrict implied bcc[0] exemption to responses without data area Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0142/1266] staging: vme_user: fix location monitor leak in fake bridge Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0143/1266] staging: vme_user: fix location monitor leak in tsi148 bridge Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0144/1266] media: staging: ipu3-imgu: Add range check for imgu_css_cfg_acc_stripe Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0145/1266] staging: media: atomisp: reduce load_primary_binaries() stack usage Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0146/1266] staging: rtl8723bs: fix heap buffer overflow in rtw_cfg80211_set_wpa_ie() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0147/1266] staging: rtl8723bs: fix WEP length underflow and OOB read in OnAuth() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0148/1266] staging: rtl8723bs: fix OOB read in OnAssocRsp() IE loop Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0149/1266] staging: rtl8723bs: fix OOB read in update_beacon_info() " Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0150/1266] staging: rtl8723bs: fix OOB reads in IE loops in issue_assocreq() and join_cmd_hdl() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0151/1266] staging: rtl8723bs: fix OOB reads in is_ap_in_tkip() IE loop Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0152/1266] staging: rtl8723bs: fix OOB write in HT_caps_handler() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0153/1266] crypto: amlogic - avoid double cleanup in meson_crypto_probe() Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0154/1266] ksmbd: fix use-after-free of a deferred file_lock on SMB2_CLOSE then SMB2_CANCEL Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0155/1266] net: af_key: initialize alg_key_len for IPComp states Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0156/1266] audit: Fix data races of skb_queue_len() readers on audit_queue Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0157/1266] Bluetooth: MGMT: Fix UAF of hci_conn_params in add_device_complete Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0158/1266] debugobjects: Plug race against a concurrent OOM disable Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0159/1266] fs/ntfs3: validate Dirty Page Table capacity in log_replay copy_lcns Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0160/1266] NTB: epf: Avoid calling pci_irq_vector() from hardirq context Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0161/1266] gpio: eic-sprd: use raw_spinlock_t in the irq startup path Greg Kroah-Hartman
2026-07-21 15:09 ` [PATCH 6.6 0162/1266] io_uring/io-wq: re-check IO_WQ_BIT_EXIT for each linked work item Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0163/1266] ipv4: igmp: remove multicast group from hash table on device destruction Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0164/1266] net: ipv4: bound TCP reordering sysctl writes and MTU probe sizes Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0165/1266] mfd: cros_ec: Delay dev_set_drvdata() until probe success Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0166/1266] mm: shrinker: fix NULL pointer dereference in debugfs Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0167/1266] netfilter: ctnetlink: use nf_ct_exp_net() in expectation dump Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0168/1266] netfilter: ebtables: module names must be null-terminated Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0169/1266] netfilter: ebtables: terminate table name before find_table_lock() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0170/1266] Bluetooth: btmtksdio: fix infinite loop in btmtksdio_txrx_work() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0171/1266] Bluetooth: bnep: pin L2CAP connection during netdev registration Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0172/1266] Bluetooth: btnxpuart: Fix out-of-bounds firmware read in nxp_recv_fw_req_v3() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0173/1266] Bluetooth: fix UAF in bt_accept_dequeue() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0174/1266] Bluetooth: L2CAP: validate option length before reading conf opt value Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0175/1266] fs/ntfs3: fsync files by syncing parent inodes Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0176/1266] fs/ntfs3: handle attr_set_size() errors when truncating files Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0177/1266] fs/ntfs3: zero-fill folios beyond i_valid in ntfs_read_folio() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0178/1266] fs/ntfs3: fix missing run load for vcn0 in attr_data_get_block_locked() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0179/1266] coresight: ultrasoc-smb: Fix OOB write in smb_sync_perf_buffer() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0180/1266] smb/client: Fix error code in smb2_aead_req_alloc() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0181/1266] ksmbd: add permission checks for FSCTL_DUPLICATE_EXTENTS_TO_FILE Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0182/1266] ksmbd: add a permission check for FSCTL_SET_ZERO_DATA Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0183/1266] ksmbd: serialize QUERY_DIRECTORY requests per file Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0184/1266] ksmbd: fix UAF of struct file_lock in SMB2_LOCK deferred-lock cancellation Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0185/1266] ksmbd: require source read access for duplicate extents Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0186/1266] ksmbd: add a WRITE_DAC/WRITE_OWNER check to SMB2 SET_INFO SECURITY Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0187/1266] ksmbd: run set info with opener credentials Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0188/1266] ksmbd: enforce FILE_READ_ATTRIBUTES on SMB_FIND_FILE_POSIX_INFORMATION Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0189/1266] ksmbd: add per-handle permission check to FILE_LINK_INFORMATION Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0190/1266] ksmbd: use opener credentials for delete-on-close Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0191/1266] smb: client: fix query directory replay double-free Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0192/1266] smb: client: fix query_info() " Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0193/1266] smb: client: fix double-free in SMB2_ioctl() replay Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0194/1266] smb: client: fix change notify replay double-free Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0195/1266] smb: client: fix double-free in SMB2_flush() replay Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0196/1266] smb: client: fix double-free in SMB2_open() replay Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0197/1266] smb: client: fix double-free in SMB2_close() replay Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0198/1266] smb: client: Fix next buffer leak in receive_encrypted_standard() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0199/1266] smb: client: use unaligned reads in parse_posix_ctxt() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0200/1266] smb: client: harden POSIX SID length parsing Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0201/1266] smb: client: mask server-provided mode to 07777 in modefromsid Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0202/1266] OPP: of: Fix potential memory leak in opp_parse_supplies() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0203/1266] firmware_loader: fix device reference leak in firmware_upload_register() Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0204/1266] cpufreq: intel_pstate: Sync policy->cur during CPU offline Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0205/1266] sched/rt: Have RT_PUSH_IPI be default off for non PREEMPT_RT Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0206/1266] cpufreq: Fix hotplug-suspend race during reboot Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0207/1266] cpufreq: pcc: fix use-after-free and double free in _OSC evaluation Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0208/1266] posix-cpu-timers: Fix pid refcount leak in do_cpu_nanosleep() error path Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0209/1266] clocksource/drivers/timer-tegra186: Fix support for multiple watchdog instances Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0210/1266] X.509: Fix validation of ASN.1 certificate header Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0211/1266] tools/mm/slabinfo: Fix trace disable logic inversion Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0212/1266] tools/mm/slabinfo: fix total_objects attribute name Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0213/1266] HID: wacom: stop hardware after post-start probe failures Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0214/1266] HID: letsketch: fix UAF on inrange_timer at driver unbind Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0215/1266] HID: lg-g15: cancel pending work on remove to fix a use-after-free Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0216/1266] HID: sensor-hub: Add sensor_hub_input_attr_read_values() for multi-byte reads Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0217/1266] hfs/hfsplus: zero-initialize buffer in hfs_bnode_read Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0218/1266] nilfs2: reject CLEAN_SEGMENTS ioctl with out-of-range segment numbers Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0219/1266] media: mtk-jpeg: cancel workqueue on release for supported platforms only Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0220/1266] xfs: use null daddr for unset first bad log block Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0221/1266] xfs: fix unreachable BIGTIME check in dquot flush validation Greg Kroah-Hartman
2026-07-21 15:10 ` [PATCH 6.6 0222/1266] bpf: Reject fragmented frames in devmap Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0223/1266] bpf: Restore sysctl new-value from 1 to 0 Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0224/1266] net: usb: kalmia: bound RX frame length in kalmia_rx_fixup() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0225/1266] usb: cdc_acm: Add quirk for Uniden BC125AT scanner Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0226/1266] usb: cdnsp: fix stream context array leak in cdnsp_alloc_stream_info() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0227/1266] USB: core: add USB_QUIRK_NO_LPM for VIA Labs USB 2.0 hub Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0228/1266] usb: dwc3: meson-g12a: fix refcount leak in dwc3_meson_g12a_resume() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0229/1266] usb: free iso schedules on failed submit Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0230/1266] usb: gadget: composite: fix dead empty check in the USB_DT_OTG handler Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0231/1266] usb: gadget: udc: Fix use-after-free in gadget_match_driver Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0232/1266] usb: gadget: f_printer: take kref only for successful open Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0233/1266] USB: idmouse: fix use-after-free on disconnect race Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0234/1266] USB: ldusb: " Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0235/1266] USB: iowarrior: fix use-after-free on disconnect Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0236/1266] USB: quirks: add NO_LPM for the Samsung T5 EVO Portable SSD Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0237/1266] USB: legousbtower: fix use-after-free on disconnect race Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0238/1266] usb: sl811-hcd: disable controller wakeup on remove Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0239/1266] USB: storage: include US_FL_NO_SAME in quirks mask Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0240/1266] USB: misc: uss720: unregister parport on probe failure Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0241/1266] usb: mtu3: unmap request DMA on queue failure Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0242/1266] USB: serial: keyspan_pda: fix information leak Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0243/1266] USB: serial: option: add Telit Cinterion FE990D50 compositions Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0244/1266] USB: serial: digi_acceleport: fix broken rx after throttle Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0245/1266] USB: serial: digi_acceleport: fix hard lockup on disconnect Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0246/1266] USB: serial: digi_acceleport: fix write buffer corruption Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0247/1266] USB: ulpi: fix memory leak on registration failure Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0248/1266] USB: usb-storage: ene_ub6250: restore media-ready check Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0249/1266] usbip: tools: support SuperSpeedPlus devices Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0250/1266] usbip: vudc: fix NULL deref in vep_dequeue() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0251/1266] usb: typec: anx7411: use devm_pm_runtime_enable() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0252/1266] usb: typec: class: drop PD lookup reference Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0253/1266] usb: typec: tcpm: Validate SVID index in svdm_consume_modes() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0254/1266] usb: typec: ucsi: Invert DisplayPort role assignment Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0255/1266] usb: typec: ucsi: Pass full DP config payload in SET_NEW_CAM for DP alt mode Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0256/1266] usb: typec: ucsi: ccg: Fix use-after-free of ucsi on remove Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0257/1266] usb: typec: ucsi: cancel pending work on system suspend Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0258/1266] iio: temperature: ltc2983: Fix n_wires default bypassing rotation check Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0259/1266] PCI: Always lift 2.5GT/s restriction in PCIe failed link retraining Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0260/1266] udf: validate free block extents against the partition length Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0261/1266] udf: validate VAT header length against the VAT inode size Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0262/1266] udf: validate sparing table length as an entry count, not a byte count Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0263/1266] hwrng: jh7110 - fix refcount leak in starfive_trng_read() Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0264/1266] dm-ioctl: report an error if a device has no table Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0265/1266] nvme-multipath: set BIO_REMAPPED on bios remapped to per-path namespace disks Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0266/1266] btrfs: do not trim a device which is not writeable Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0267/1266] partitions: aix: bound the pp_count scan to the ppe array Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0268/1266] isofs: bound Rock Ridge symlink components to the SL record Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0269/1266] crypto: af_alg - Remove zero-copy support from skcipher and aead Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0270/1266] crypto: caam - use print_hex_dump_devel to guard key hex dumps Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0271/1266] crypto: caam - use print_hex_dump_devel to guard key hex dumps again Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0272/1266] crypto: ecc - Fix carry overflow in vli multiplication Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0273/1266] crypto: pcrypt - restore callback for non-parallel fallback Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0274/1266] crypto: drbg - Fix returning success on failure in CTR_DRBG Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0275/1266] crypto: drbg - Fix drbg_max_addtl() on 64-bit kernels Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0276/1266] crypto: drbg - Fix the fips_enabled priority boost Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0277/1266] crypto: qat - validate RSA CRT component lengths Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0278/1266] crypto: talitos - use dma_sync_single_for_cpu() before reading descriptor header Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0279/1266] crypto: talitos - add chaining of arbitrary number of descriptor for the SEC1 Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0280/1266] crypto: talitos - move dma unmapping code in flush_channel() into a standalone dma_unmap_request() function Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0281/1266] crypto: talitos - move dma mapping code in talitos_submit() into a standalone dma_map_request() function Greg Kroah-Hartman
2026-07-21 15:11 ` [PATCH 6.6 0282/1266] crypto: talitos - move code in current_desc_hdr() into a standalone function Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0283/1266] crypto: talitos/hash - prepare SEC1 descriptor chaining, remove additional descriptor Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0284/1266] crypto: talitos/hash - use descriptor chaining for SEC1 instead of workqueue Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0285/1266] crypto: talitos/hash - drop workqueue mechanism for SEC1 Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0286/1266] crypto: talitos/hash - rename first_desc/last_desc to first_request/last_request Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0287/1266] crypto: talitos/hash - remove useless wrapper Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0288/1266] crypto: talitos/hash - fix SEC2 64k - 1 ahash request limitation Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0289/1266] arm64: fpsimd: Fix type mismatch in sme_{save,load}_state() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0290/1266] spi: fsl-lpspi: replace dmaengine_terminate_all() with dmaengine_terminate_sync() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0291/1266] spi: fsl-lpspi: terminate the RX channel on TX prepare failure path Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0292/1266] EDAC/i10nm: Dont fail probing if ADXL is missing Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0293/1266] watchdog: apple: Add "apple,t8103-wdt" compatible Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0294/1266] tracing: Prevent out-of-bounds read in glob matching Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0295/1266] NFSv4: include MAY_WRITE in open permission mask for O_TRUNC Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0296/1266] module: decompress: check return value of module_extend_max_pages() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0297/1266] exfat: bound uniname advance in exfat_find_dir_entry() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0298/1266] NTB: epf: Fix request_irq() unwind in ntb_epf_init_isr() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0299/1266] KVM: VMX: Refresh GUEST_PENDING_DBG_EXCEPTIONS.BS on all injected #DBs Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0300/1266] KVM: VMX: Grab vmcs12 on CR8 interception update iff vCPU is in guest mode Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0301/1266] udmabuf: fix DMA direction mismatch in release_udmabuf() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0302/1266] i2c: core: fix adapter deregistration race Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0303/1266] i2c: mpc: Fix timeout calculations Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0304/1266] i2c: stm32f7: truncate clock period instead of rounding it Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0305/1266] Input: synaptics-rmi4 - unregister function handlers on physical driver registration failure Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0306/1266] Input: synaptics-rmi4 - bound the F3A keymap to the GPIO count Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0307/1266] Input: synaptics-rmi4 - bound the F30 keymap to the GPIO/LED count Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0308/1266] Input: elan_i2c - prevent division by zero and arithmetic underflow Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0309/1266] Input: goodix - clamp the device-reported contact count Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0310/1266] Input: iforce - bound the device-reported force-feedback effect index Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0311/1266] Input: mms114 - fix touch indexing for MMS134S and MMS136 Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0312/1266] Input: touchwin - reset the packet index on every complete packet Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0313/1266] Input: mms114 - reject an oversized device packet size Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0314/1266] Input: maplemouse - fix NULL pointer dereference in open() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0315/1266] Input: mms114 - fix multi-touch slot corruption Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0316/1266] Input: maple_keyb - set driver data before registering input device Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0317/1266] Input: maplemouse " Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0318/1266] Input: maplecontrol " Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0319/1266] RDMA/rtrs-srv: Bound RDMA-Write length to chunk size in rdma_write_sg Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0320/1266] RDMA/siw: bound Read Response placement to the RREAD length Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0321/1266] fuse: fix device node leak in cuse_process_init_reply() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0322/1266] fuse: re-lock request before returning from fuse_ref_folio() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0323/1266] smb: client: reject overlapping data areas in SMB2 responses Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0324/1266] xfs: fail recovery on a committed log item with no regions Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0325/1266] xfs: resample the data fork mapping after cycling ILOCK Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0326/1266] smb/server: do not require delete access for non-replacing links Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0327/1266] block: skip sync_blockdev() on surprise removal in bdev_mark_dead() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0328/1266] sched/fair: Only update stats for allowed CPUs when looking for dst group Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0329/1266] crypto: algif_skcipher - force synchronous processing on trees without ctx->state Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0330/1266] KVM: arm64: Bound used_lrs when flushing the pKVM hyp vCPU Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0331/1266] KVM: arm64: Clear __hyp_running_vcpu " Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0332/1266] nvmet-tcp: check INIT_FAILED before nvmet_req_uninit in digest error path Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0333/1266] nvmet-tcp: Fix potential UAF when ddgst mismatch Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0334/1266] crypto: sun4i-ss - Remove insecure and unused rng_alg Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0335/1266] x86/mm: Fix check/use ordering in switch_mm_irqs_off() Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0336/1266] crypto: crypto4xx - Remove ahash-related code Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0337/1266] crypto: crypto4xx - Remove insecure and unused rng_alg Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0338/1266] crypto: hisi-trng - Remove crypto_rng interface Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0339/1266] bpf: Support for hardening against JIT spraying Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0340/1266] x86/bugs: Enable IBPB flush on BPF JIT allocation Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0341/1266] bpf: Restrict JIT predictor flush to cBPF Greg Kroah-Hartman
2026-07-21 15:12 ` [PATCH 6.6 0342/1266] bpf: Skip redundant IBPB in pack allocator Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0343/1266] bpf: Prefer packs that wont trigger an IBPB flush on allocation Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0344/1266] bpf: Prefer dirty packs for eBPF allocations Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0345/1266] media: uvcvideo: Avoid partial metadata buffers Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0346/1266] media: uvcvideo: Fix buffer sequence in frame gaps Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0347/1266] media: uvcvideo: Fix sequence number when no EOF Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0348/1266] dt-bindings: media: sun4i-a10-video-engine: Add interconnect properties Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0349/1266] dt-bindings: power: imx93: Add MIPI PHY power domain Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0350/1266] serial: msm: Disable DMA for kernel console UART Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0351/1266] serial: 8250_omap: clear rx_running on zero-length DMA completes Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0352/1266] rxrpc: rxrpc_verify_data ensure rx_dec_buffer alloc Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0353/1266] rxrpc: Fix leak of released call in recvmsg(MSG_PEEK) Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0354/1266] afs: Fix netns teardown to cancel the preallocation charger Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0355/1266] afs: fix NULL pointer dereference in afs_get_tree() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0356/1266] afs: Fix further netns teardown to cancel the preallocation charger Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0357/1266] fbcon: fix NULL pointer dereference for a console without vc_data Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0358/1266] clocksource/drivers/sun5i: Handle error returns from devm_reset_control_get_optional_exclusive() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0359/1266] drm/rockchip: Test for imported buffers with drm_gem_is_imported() Greg Kroah-Hartman
2026-07-21 15:13   ` Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0360/1266] drm/tidss: Drop extra drm_mode_config_reset() call Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0361/1266] drm/amdgpu: fix integer overflow in amdgpu_gem_align_pitch() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0362/1266] drm/radeon: fix integer overflow in radeon_align_pitch() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0363/1266] drm/radeon: fix memory leak in radeon_ring_restore() on lock failure Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0364/1266] libbpf: Report error when a negative kprobe offset is specified Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0365/1266] Documentation: proc: fix section numbering in table of contents Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0366/1266] arm64: dts: rockchip: Fix gmac0 reset pin for NanoPi R5S Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0367/1266] arm64: dts: qcom: sdm845-mezzanine: Fix camss ports unit_address_vs_reg warning Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0368/1266] wifi: cfg80211: fix grammar in MLO group key error message Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0369/1266] arm64: tegra: Fix Tegra234 MGBE PTP clock Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0370/1266] dt-bindings: pinctrl: nvidia,tegra234: Add missing required block Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0371/1266] drm/amdkfd: Validate CRIU-restored IDs before idr_alloc Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0372/1266] driver core: use READ_ONCE() for dev->driver in dev_has_sync_state() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0373/1266] wifi: rtw89: Correct data type for scan index to avoid infinite loop Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0374/1266] wifi: rtw88: fix OOB read from firmware RX descriptor exceeding DMA buffer Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0375/1266] kconfig: fix potential NULL pointer dereference in conf_askvalue Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0376/1266] wifi: ath9k: fix OOB access from firmware tx status queue ID Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0377/1266] ARM: dts: am335x-sl50: Fix audio bitclock and frame master endpoint Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0378/1266] watchdog: sp5100_tco: Use EFCH MMIO for newer Hygon FCH Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0379/1266] watchdog: sama5d4_wdt: Fix WDDIS detection on SAM9X60 and SAMA7G5 Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0380/1266] watchdog: sprd_wdt: Remove redundant sprd_wdt_disable() on register failure Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0381/1266] media: cedrus: Fix failure to clean up hardware on probe failure Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0382/1266] media: v4l2-common: Add YUV24 format info Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0383/1266] pinctrl: sunxi: fix regulator leak in sunxi_pmx_request() error path Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0384/1266] arm64: dts: rockchip: fix rk809 interrupt pin on rk3566-roc-pc Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0385/1266] arm64: dts: imx8x-colibri: Correct SODIMM PAD settings Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0386/1266] vxlan: Fix potential null-ptr-deref in vxlan_gro_prepare_receive() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0387/1266] crypto: atmel-sha204a - fix blocking and non-blocking rng logic Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0388/1266] crypto: ecrdsa - fix unknown OID check in ecrdsa_param_curve Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0389/1266] crypto: asymmetric_keys - fix OOB read in pefile_digest_pe_contents Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0390/1266] dlm: fix add msg handle in send_queue ordered Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0391/1266] nilfs2: fix backing_dev_info reference leak Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0392/1266] iommu/amd: Fix a stale comment about which legacy mode is user visible Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0393/1266] arm64: dts: mediatek: mt8192-asurada: Move PCIe DMA bounce buffer to host Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0394/1266] clk: scmi: Fix clock rate rounding Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0395/1266] arm64: dts: qcom: sm8450: Fix ICE reg size Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0396/1266] drm/hisilicon/hibmc: move display contrl config to hibmc_probe() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0397/1266] drm/hisilicon/hibmc: use clock to look up the PLL value Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0398/1266] evm: terminate and bound the evm_xattrs read buffer Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0399/1266] thermal: hwmon: Fix critical temperature attribute removal Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0400/1266] clk: scpi: Unregister child clock providers on remove Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0401/1266] net/sched: sch_hfsc: annotate data-races in hfsc_dump_class_stats() Greg Kroah-Hartman
2026-07-21 15:13 ` [PATCH 6.6 0402/1266] crypto: ccp - Treat zero-length cert chain as query for blob lengths Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0403/1266] spi: hisi-kunpeng: Use dev_err_probe() for host registration failure Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0404/1266] net/sched: sch_htb: do not change sch->flags in htb_dump() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0405/1266] net/sched: sch_htb: annotate data-races (I) Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0406/1266] ipv6: addrconf: bail out of dad_failure when state is no longer POSTDAD Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0407/1266] IB/mlx5: Fix transport-domain rollback and initialize lb mutex earlier Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0408/1266] RDMA/hns: Fix arithmetic overflow in calc_hem_config() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0409/1266] RDMA/mlx5: Fix devx subscribe-event unwind NULL dereference Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0410/1266] RDMA/srpt: fix integer overflow in immediate data length check Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0411/1266] media: atomisp: Fix memory leak in atomisp_fixed_pattern_table() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0412/1266] firmware: arm_scmi: Read sensor config as 32-bit value Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0413/1266] sysfs: clamp show() return value in sysfs_kf_read() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0414/1266] bitops: use common function parameter names Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0415/1266] regulator: dt-bindings: mt6359: Drop regulator-name pattern restrictions Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0416/1266] net/sched: sch_drr: annotate data-races around cl->deficit Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0417/1266] media: rockchip: rga: fix too small buffer size Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0418/1266] firmware: arm_scmi: Fix OOB in scmi_power_name_get() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0419/1266] arm64: dts: qcom: sm8450: Add power-domain and iface clk for ice node Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0420/1266] tracing: Bound synthetic-field strings with seq_buf Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0421/1266] device property: fix fwnode reference leak in fwnode_graph_get_endpoint_by_id() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0422/1266] driver core: Use mod_delayed_work to prevent lost deferred probe work Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0423/1266] Revert "treewide: Fix probing of devices in DT overlays" Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0424/1266] cpufreq: Documentation: fix sampling_down_factor range Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0425/1266] cpufreq: conservative: Simplify frequency limit handling Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0426/1266] pwm: imx27: Fix variable truncation in .apply() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0427/1266] bus: sunxi-rsb: Always check register address validity Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0428/1266] RDMA/irdma: Fix out-of-bounds write in irdma_copy_user_pgaddrs Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0429/1266] RDMA/rxe: Fix a use-after-free problem in rxe_mmap Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0430/1266] IB/mlx4: Fix refcount leak in add_port() error path Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0431/1266] RDMA/hns: Fix warning in poll cq direct mode Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0432/1266] RDMA/counter: Fix incorrect port index in rdma_counter_init() error cleanup Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0433/1266] PM: sleep: Use complete() in device_pm_sleep_init() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0434/1266] MIPS: Fix big-endian stack argument fetching in o32 wrapper Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0435/1266] MIPS: DEC: Remove do_IRQ() call indirection Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0436/1266] mips: ralink: mt7621: add missing __iomem Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0437/1266] mips: n64: add __iomem for writel call Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0438/1266] mtd: spi-nor: Drop duplicate Kconfig dependency Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0439/1266] ALSA: seq: midi: Serialize output teardown with event_input Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0440/1266] pinctrl: cs42l43: Fix polarity on debounce Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0441/1266] nvme-multipath: fix flex array size in struct nvme_ns_head Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0442/1266] workqueue: drop spurious * from print_worker_info() fn declaration Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0443/1266] ipv6: guard against possible NULL deref in __in6_dev_stats_get() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0444/1266] net/sched: cls_bpf: prevent unbounded recursion in offload rollback Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0445/1266] drm/tegra: gr2d/gr3d: Initialize address register map before HOST1X client is registered Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0446/1266] drm/tegra: gr2d/gr3d: Contain PM in the gr*d_probe/gr*d_remove Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0447/1266] gpu: host1x: Allow entries in BO caches to be freed Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0448/1266] drm/tegra: dc: Fix device node reference leak in tegra_dc_has_output() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0449/1266] gpu: host1x: Fix iommu_map_sgtable() return value check Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0450/1266] drm/tegra: " Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0451/1266] drm/nouveau/bios: specify correct display fuse register for Ampere and Ada Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0452/1266] libbpf: Harden parse_vma_segs() path parsing Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0453/1266] libbpf: Fix UAF in strset__add_str() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0454/1266] dax/kmem: account for partial discontiguous resource upon removal Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0455/1266] rapidio/tsi721: prevent a bad dereference in tsi721_db_dpc() Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0456/1266] ocfs2: dont BUG_ON an invalid journal dinode Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0457/1266] ocfs2: kill osb->system_file_mutex lock Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0458/1266] crypto: hisilicon/qm - disable error report before flr Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0459/1266] drm/msm/dp: fix HPD state status bit shift value Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0460/1266] drm/msm/dp: Fix the ISR_* enum values Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0461/1266] EDAC/{skx_common,skx}: Fix UBSAN shift-out-of-bounds in skx_get_dimm_info Greg Kroah-Hartman
2026-07-21 15:14 ` [PATCH 6.6 0462/1266] RDMA/rxe: Fix TOCTOU heap overflow in get_srq_wqe Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0463/1266] RDMA/rxe: Copy WQE to local buffer in non-SRQ receive path Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0464/1266] media: qcom: venus: drop extra padding in NV12 raw size calculation Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0465/1266] media: qcom: venus: relax encoder frame/blur dimension steps on v4 Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0466/1266] media: qcom: venus: relax encoder frame/blur step size on v6 Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0467/1266] rpmsg: use generic driver_override infrastructure Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0468/1266] md/raid10: reset read_slot when reusing r10bio for discard Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0469/1266] ext4: fix LOGFLUSH shutdown ordering to allow ordered-mode data writeback Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0470/1266] ASoC: rsnd: Fix RSND_SOC_MASK width to single nibble Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0471/1266] ARM: imx3: Fix CCM node reference leak Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0472/1266] HID: wiimote: Fix table layout and whitespace errors Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0473/1266] ata: libata: Fix ata_exec_internal() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0474/1266] ARM: imx31: Fix IIM mapping leak in revision check Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0475/1266] nvdimm/btt: Handle preemption in BTT lane acquisition Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0476/1266] scsi: Revert "scsi: Fix sas_user_scan() to handle wildcard and multi-channel scans" Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0477/1266] scsi: pm8001: Fix error code in non_fatal_log_show() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0478/1266] scsi: ufs: Fix wrong value printed in unexpected UPIU response case Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0479/1266] bpf: fix UAF by restoring RCU-delayed inode freeing in bpffs Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0480/1266] mm/fake-numa: fix under-allocation detection in uniform split Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0481/1266] ext2: fix ignored return value of generic_write_sync() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0482/1266] sched: restore timer_slack_ns when resetting RT policy on fork Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0483/1266] lib/test_meminit: use && for bools Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0484/1266] configfs_lookup(): dont leave ->s_dentry dangling on failure Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0485/1266] drm/amdgpu: set sub_block_index for mca ras sub-blocks Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0486/1266] bpftool: Use libbpf error code for flow dissector query Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0487/1266] perf/x86/amd/core: Always use the NMI latency mitigation Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0488/1266] ocfs2: rebase copied fsdlm LVB pointers in locking_state Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0489/1266] ocfs2: fix buffer head management in ocfs2_read_blocks() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0490/1266] ocfs2: reject FITRIM ranges shorter than a cluster Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0491/1266] ocfs2/dlm: require a ref for locking_state debugfs open Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0492/1266] ocfs2: fix race between ocfs2_control_install_private() and ocfs2_control_release() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0493/1266] netfilter: nfnetlink_osf: fix mss parsing on big-endian architectures Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0494/1266] netfilter: synproxy: protect nf_ct_seqadj_init() with conntrack lock Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0495/1266] netfilter: conntrack: revert ct extension genid infrastructure Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0496/1266] netfilter: conntrack: call nf_ct_gre_keymap_destroy() if master helper is pptp Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0497/1266] IB/cm: Fix av cm device leak on an error path in cm_init_av_by_path() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0498/1266] RDMA/irdma: Fix OOB read during CQ MR registration Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0499/1266] RDMA/irdma: Initialize iwmr->access during " Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0500/1266] arm64: dts: tqma8mpql-mba8mpxl: configure sai clock in audio codec as well Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0501/1266] bpf: Check tail zero of bpf_prog_info Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0502/1266] bpf: Update transport_header when encapsulating UDP tunnel in lwt Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0503/1266] wifi: wcn36xx: fix heap overflow from oversized firmware HAL response Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0504/1266] wifi: wcn36xx: fix OOB read from firmware count in PRINT_REG_INFO indication Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0505/1266] wifi: wcn36xx: fix OOB read from short trigger BA firmware response Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0506/1266] ALSA: seq: Fix partial userptr event expansion Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0507/1266] riscv: stacktrace: Remove bogus -0x4 offset in non-FP walk_stackframe Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0508/1266] ALSA: seq: Clear variable event pointer on read Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0509/1266] ACPI: IPMI: Fix message kref handling on dead device Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0510/1266] cpufreq: Documentation: fix conservative governor freq_step description Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0511/1266] IB/mlx5: Dont take the rereg_mr fallback without a new translation Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0512/1266] IB/mlx5: Properly support implicit ODP rereg_mr Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0513/1266] spi: ep93xx: fix double-free of zeropage on DMA setup failure Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0514/1266] firmware_loader: Fix recursive lock in device_cache_fw_images() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0515/1266] configfs: fix lockless traversals of ->s_children Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0516/1266] watchdog: unregister PM notifier on watchdog unregister Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0517/1266] scsi: target: Fix hexadecimal CHAP_I handling Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0518/1266] scsi: target: Remove tcm_loop target reset handling Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0519/1266] pinctrl: mediatek: mt8516: Fix Schmitt trigger register offset of pins 34-39 Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0520/1266] pinctrl: mediatek: mt8167: " Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0521/1266] vmalloc: fix NULL pointer dereference in is_vm_area_hugepages() Greg Kroah-Hartman
2026-07-21 15:15 ` [PATCH 6.6 0522/1266] hwspinlock: qcom: avoid uninitialized struct members Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0523/1266] sched/fair: Fix cpu_util runnable_avg arithmetic Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0524/1266] wifi: mt76: fix argument to ieee80211_is_first_frag() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0525/1266] wifi: mt76: mt7915: fix potential tx_retries underflow Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0526/1266] wifi: mt76: mt7921: " Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0527/1266] btrfs: fix invalid pointer dereference in __btrfs_run_delayed_refs() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0528/1266] fbdev: sm501fb: Fix buffer errors in OF binding code Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0529/1266] hwmon: (it87) Clamp negative values to zero in set_fan() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0530/1266] btrfs: zoned: dont account data relocation space-info in statfs free space Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0531/1266] IB/mlx4: Fill in the access_flags if IB_MR_REREG_ACCESS is not specified Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0532/1266] spi: meson-spifc: fix runtime PM leak on remove Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0533/1266] ASoC: codecs: aw88261: fix incorrect masks for boost regs Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0534/1266] vduse: hold vduse_lock across IDR lookup in open path Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0535/1266] vhost/vdpa: validate virtqueue index in mmap and fault paths Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0536/1266] vduse: Requeue failed read to send_list head Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0537/1266] vhost/net: complete zerocopy ubufs only once Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0538/1266] tools/virtio: check mmap return value in vringh_test Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0539/1266] ASoC: cs35l56: Fix missing calls to wm_adsp2_remove() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0540/1266] ASoC: cs35l56: Dont leave parent IRQ disabled if system_suspend fails Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0541/1266] bonding: 3ad: fix mux port state on oper down Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0542/1266] ext4: fix kernel BUG in ext4_write_inline_data_end Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0543/1266] selftests/bpf: Fix bpf_iter/task_vma test Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0544/1266] cxl/test: Fix integer overflow in mock LSA bounds checks Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0545/1266] cxl/test: Zero out LSA backing memory to avoid leaking to user Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0546/1266] of: cpu: add check in __of_find_n_match_cpu_property() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0547/1266] bpf: Tighten cgroup storage cookie checks for prog arrays Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0548/1266] s390/process: Fix kernel thread function pointer type Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0549/1266] Bluetooth: hci_qca: fix NULL pointer dereference in qca_dmp_hdr() for non-serdev device Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0550/1266] Bluetooth: hci: validate codec capability element length Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0551/1266] Bluetooth: vhci: validate devcoredump state before side effects Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0552/1266] fs: efs: remove unneeded debug prints Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0553/1266] RDMA/mlx5: Remove raw RSS QP restrack tracking Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0554/1266] RDMA/mlx5: Fix undefined shift of user RQ WQE size Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0555/1266] RDMA/mlx5: Release the HW‑provided UAR index rather than the SW one Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0556/1266] ASoC: codecs: hdac_hdmi: Validate written enum value Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0557/1266] ASoC: fsl: fsl_audmix: Validate written enum values Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0558/1266] ASoC: tegra: tegra210_ahub: Validate written enum value Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0559/1266] net/sched: cls_flow: Dont expose folded kernel pointers Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0560/1266] net: fib_rules: Dont dump dying fib_rule in fib_rules_dump() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0561/1266] bridge: cfm: reject invalid CCM interval at configuration time Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0562/1266] sctp: validate embedded address parameter length Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0563/1266] net/sched: sch_hfsc: Dont make class passive twice Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0564/1266] tipc: require net admin for TIPCv2 netlink mutators Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0565/1266] tipc: prevent snt_unacked underflow on CONN_ACK Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0566/1266] tipc: reject inverted service ranges from peer bindings Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0567/1266] cxl/test: Add check after kzalloc() memory in alloc_mock_res() Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0568/1266] crypto: marvell/octeontx - fix DMA cleanup using wrong loop index Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0569/1266] crypto: cavium/cpt " Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0570/1266] crypto: rng - Free default RNG on module exit Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0571/1266] spi: xilinx: use FIFO occupancy register to determine buffer size Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0572/1266] ASoC: adau1372: Clear PLL_EN on failed PLL lock without reset GPIO Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0573/1266] power: supply: core: fix supplied_from allocations Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0574/1266] handshake: Require admin permission for DONE command Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0575/1266] net/sched: sch_fq_codel: Do not call qdisc_tree_reduce_backlog during peek before restoring qlen Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0576/1266] net/sched: sch_codel: " Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0577/1266] net: mana: initialize gdma queue id to INVALID_QUEUE_ID Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0578/1266] net: mana: guard TX wq object destroy with INVALID_MANA_HANDLE check Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0579/1266] bpf: Run generic devmap egress prog on private skb Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0580/1266] net/mlx5: Check max_macs devlink param value against max capability Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0581/1266] net: wwan: t7xx: check skb_clone in control TX Greg Kroah-Hartman
2026-07-21 15:16 ` [PATCH 6.6 0582/1266] net: bcmgenet: Use weighted round-robin TX DMA arbitration Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0583/1266] kcm: use WRITE_ONCE() when changing lower socket callbacks Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0584/1266] netfilter: nf_conncount: callers must hold rcu read lock Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0585/1266] ALSA: core: Fix unintuitive behavior of snd_power_ref_and_wait() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0586/1266] cifs: remove all cifs files before kill super Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0587/1266] smb/client: always return a value for FS_IOC_GETFLAGS Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0588/1266] selftests/bpf: Initialize operation name before use Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0589/1266] bpf: Fix bpf_get/setsockopt to tos for ipv4-mapped ipv6 socket Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0590/1266] bpf, sockmap: reject overflowing copy + len in bpf_msg_push_data() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0591/1266] bpf, sockmap: fix integer overflow in bpf_msg_pop_data() bounds check Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0592/1266] MIPS: mm: Fix out-of-bounds write in maar_res_walk() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0593/1266] powerpc/perf: fix preempt count underflow in fsl_emb_pmu_del Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0594/1266] powerpc/powernv: fix preempt count leak in pnv_kexec_wait_secondaries_down Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0595/1266] powerpc/kexec: fix double get_cpu() imbalance in kexec_prepare_cpus Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0596/1266] KEYS: Use acquire when reading state in keyring search Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0597/1266] tipc: fix UAF in tipc_l2_send_msg() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0598/1266] tcp: ipv6: clamp default adverting MSS to avoid GSO_BY_FRAGS (0xFFFF) Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0599/1266] ionic: Fix check in ionic_get_link_ext_stats Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0600/1266] ksmbd: fix use-after-free in same_client_has_lease() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0601/1266] mfd: cs42l43: Sanity check firmware size Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0602/1266] ocfs2: fix circular locking dependency in ocfs2_dio_end_io_write Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0603/1266] net/9p: fix race condition on rdma->state in trans_rdma.c Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0604/1266] staging: nvec: fix use-after-free in nvec_rx_completed() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0605/1266] coresight: cti: Fix DT filter signals silently ignored Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0606/1266] coresight: etm4x: Correct TRCVMIDCCTLR1 save and restore Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0607/1266] PCI/ASPM: Dont reconfigure ASPM entering low-power state Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0608/1266] PCI: Introduce named defines for PCI ROM Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0609/1266] PCI: Check ROM header and data structure addr before accessing Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0610/1266] x86/platform/olpc: xo15: Drop wakeup source on driver removal Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0611/1266] platform/x86: xo15-ebook: Fix wakeup source and GPE handling Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0612/1266] perf sched: Add missing mmap2 handler in timehist Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0613/1266] PCI: loongson: Do not ignore downstream devices on external bridges Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0614/1266] bus: mhi: ep: Fix potential deadlock in mhi_ep_reset_worker() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0615/1266] phy: phy-can-transceiver: Check driver match and driver data against NULL Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0616/1266] perf pmu: Skip test on Arm64 when #slots is zero Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0617/1266] mailbox: mtk-adsp: fix UAF during device teardown Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0618/1266] staging: most: video: avoid double free on video register failure Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0619/1266] usb: host: max3421: Fix shift-out-of-bounds in max3421_hub_control() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0620/1266] usb: host: max3421: Reject hub port requests for non-existent ports Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0621/1266] char: tlclk: fix use-after-free in tlclk_cleanup() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0622/1266] perf header: Sanity check HEADER_EVENT_DESC attr.size before swap Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0623/1266] iio: light: si1133: reset counter to prevent race condition Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0624/1266] iio: light: si1133: prevent race condition on timeout Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0625/1266] iio: magnetometer: ak8975: fix potential kernel stack memory leak Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0626/1266] iio: adc: xilinx-ams: fix out-of-bounds channel lookup in event handling Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0627/1266] iio: accel: mma8452: handle I2C read error(s) in mma8452_read() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0628/1266] iio: tcs3472: power down chip on probe failure Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0629/1266] clk: at91: keep securam node alive while mapping it Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0630/1266] HID: logitech-hidpp: remove excess kernel-doc member in hidpp_scroll_counter Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0631/1266] fs/ntfs3: add bounds check to run_get_highest_vcn() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0632/1266] fs/ntfs3: fix mount failure on 64K page-size kernels Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0633/1266] drm/amd/display: Add missing kdoc for ALLM parameters Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0634/1266] dmaengine: imx-sdma: Refine spba bus searching in probe Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0635/1266] perf: Fix off-by-one stack buffer overflow in kallsyms__parse() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0636/1266] perf tools: Guard test_bit from out-of-bounds sample CPU Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0637/1266] perf sched: Replace BUG_ON on invalid CPU with graceful skip Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0638/1266] perf sched: Fix NULL dereference in latency_runtime_event Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0639/1266] perf tools: Add bounds check to cpu__get_node() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0640/1266] perf mmap: Guard cpu__get_node() return in aio_bind() Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0641/1266] perf c2c: Bounds-check CPU and node IDs before bitmap and array access Greg Kroah-Hartman
2026-07-21 15:17 ` [PATCH 6.6 0642/1266] perf sched: Clean up idle_threads entry on init failure Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0643/1266] perf sched: Replace BUG_ON and add NULL checks in replay event helpers Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0644/1266] perf mmap: Fix NULL deref in aio cleanup on alloc failure Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0645/1266] perf c2c: Fix use-after-free in he__get_c2c_hists() error path Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0646/1266] dmaengine: qcom: gpi: set DMA_PRIVATE capability Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0647/1266] dmaengine: Fix possible use after free Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0648/1266] clk: qcom: a53: Corrected frequency multiplier for 1152MHz Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0649/1266] pNFS/filelayout: fix cheking if a layout is striped Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0650/1266] xprtrdma: Remove temp allocation of rpcrdma_rep objects Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0651/1266] xprtrdma: Avoid 250 ms delay on backlog wakeup Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0652/1266] xprtrdma: Close lost-wakeup race in xprt_rdma_alloc_slot Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0653/1266] xprtrdma: Post receive buffers after RPC completion Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0654/1266] xprtrdma: Use sendctx DMA state for Send signaling Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0655/1266] xprtrdma: Decouple req recycling from RPC completion Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0656/1266] NFSv4/pnfs: defer return_range callbacks until after inode unlock Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0657/1266] nfs: keep PG_UPTODATE clear after read errors in page groups Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0658/1266] NFSv4/flexfiles: honor FF_FLAGS_NO_IO_THRU_MDS on fatal DS connect errors Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0659/1266] NFSv4/flexfiles: honor FF_FLAGS_NO_IO_THRU_MDS in pg_get_mirror_count_write Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0660/1266] PCI: mediatek: Fix operator precedence in PCIE_FTS_NUM_L0 macro Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0661/1266] PCI: meson: Propagate devm_add_action_or_reset() failure Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0662/1266] fs/ntfs3: resize log->one_page_buf when adopting on-disk page size Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0663/1266] perf tools: Fix get_max_num() size_t underflow on empty sysfs file Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0664/1266] perf tools: Use scnprintf() in cpu_map__snprint() to prevent overflow Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0665/1266] perf tools: Use perf_env__get_cpu_topology() in machine__resolve() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0666/1266] PCI: rcar-host: Remove unused LIST_HEAD(res) Greg Kroah-Hartman
2026-07-21 15:18 ` Greg Kroah-Hartman [this message]
2026-07-21 15:18 ` [PATCH 6.6 0668/1266] perf bpf: Use scnprintf() in snprintf_hex() and synthesize_bpf_prog_name() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0669/1266] perf hists: Fix snprintf() in hists__scnprintf_title() UID filter path Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0670/1266] xprtrdma: Check frwr_wp_create() during connect Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0671/1266] xprtrdma: Document and assert reply-handler invariants Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0672/1266] xprtrdma: Resize reply buffers before reposting receives Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0673/1266] xprtrdma: Fix bcall rep leak and unbounded peek Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0674/1266] xprtrdma: Sanitize the reply credit grant after parsing Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0675/1266] xprtrdma: Repost Receive buffers for malformed replies Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0676/1266] xprtrdma: Return sendctx slot after Send preparation failure Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0677/1266] perf cs-etm: Fix incorrect or missing decoder for raw trace Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0678/1266] perf cs-etm: Create decoders after both AUX and HW_ID search passes Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0679/1266] perf cs-etm: Queue context packets for frontend Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0680/1266] perf pmu: Fix pmu_id() heap underwrite on empty identifier file Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0681/1266] perf pmu: Fix perf_pmu__parse_scale/unit() OOB access on empty sysfs file Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0682/1266] tools lib api: Fix missing null termination in filename__read_int/ull() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0683/1266] perf symbols: Fix signed overflow in sysfs__read_build_id() size check Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0684/1266] perf symbols: Bounds-check .gnu_debuglink section data Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0685/1266] perf intel-pt: Fix snprintf size tracking bug in insn decoder Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0686/1266] perf tools: Fix thread__set_comm_from_proc() on empty comm file Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0687/1266] perf symbols: Bounds-check descsz in sysfs__read_build_id() GNU fallback Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0688/1266] tools lib api: Fix filename__write_int() writing uninitialized stack data Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0689/1266] tools lib api: Fix mount_overload() snprintf truncation and toupper range Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0690/1266] perf bpf: Add NULL check for btf__type_by_id() in synthesize_bpf_prog_name() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0691/1266] perf symbols: Add bounds checks to elf_read_build_id() note iteration Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0692/1266] perf symbols: Add bounds checks to read_build_id() note iteration in minimal build Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0693/1266] PCI: mediatek: Fix possible truncation in mtk_pcie_parse_port() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0694/1266] PCI: mediatek: Use actual physical address instead of virt_to_phys() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0695/1266] Revert "PCI/MSI: Unmap MSI-X region on error" Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0696/1266] security/apparmor/apparmorfs.c: conditionally compile get_loaddata_common_ref() Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0697/1266] apparmor: check label build before no_new_privs test Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0698/1266] apparmor: aa_label_alloc use aa_label_free on alloc failure Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0699/1266] apparmor: fix rawdata_f_data implicit flex array Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0700/1266] apparmor: grab ns lock and refresh when looking up changehat child profiles Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0701/1266] apparmor: fix potential UAF in aa_replace_profiles Greg Kroah-Hartman
2026-07-21 15:18 ` [PATCH 6.6 0702/1266] apparmor: aa_getprocattr free procattr leak on format failure Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0703/1266] apparmor: put secmark label after secid lookup Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0704/1266] i3c: master: Prevent reuse of dynamic address on device add failure Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0705/1266] apparmor: fix label can not be immediately before a declaration Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0706/1266] sparc: led: avoid trimming a newline from empty writes Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0707/1266] perf symbols: Break infinite loop on zero-filled notes in sysfs__read_build_id() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0708/1266] perf tools: Use snprintf() for root_dir path construction Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0709/1266] perf bpf: Validate func_info_rec_size and sub_id in synthesize_bpf_prog_name() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0710/1266] perf bpf: Bounds-check array offsets in bpil_offs_to_addr() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0711/1266] gpio: mlxbf3: fail probe if gpiochip registration fails Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0712/1266] spi: dw: fix wrong BAUDR setting after resume Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0713/1266] xfrm: Use the XFRM_GRO to indicate a GRO call on input Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0714/1266] xfrm: Support crypto offload for inbound IPv6 ESP packets not in GRO path Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0715/1266] xfrm: annotate data-races around xfrm_policy_count[] and xfrm_policy_default[] Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0716/1266] xfrm: validate selector family and prefixlen during match Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0717/1266] perf machine: Use snprintf() for guestmount path construction Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0718/1266] perf cs-etm: Validate num_cpu before metadata allocation Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0719/1266] perf cs-etm: Require full global header in auxtrace_info size check Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0720/1266] ASoC: tlv320aic3x: restrict CLKDIV bypass Q values in dual-rate mode Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0721/1266] drm/amdkfd: Avoid double-unpin of DOORBELL/MMIO BOs on free Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0722/1266] drm/amdkfd: fix list_del corruption in kfd_criu_resume_svm Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0723/1266] drm/amdgpu: initialize irq.lock spinlock earlier Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0724/1266] octeontx2-pf: Fix leak of SQ timestamp buffer on teardown Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0725/1266] net: psample: fix info leak in PSAMPLE_ATTR_DATA Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0726/1266] sctp: hold socket lock when dumping endpoints in sctp_diag Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0727/1266] PCI: iproc: Restore .map_irq() for the platform bus driver Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0728/1266] spi: rpc-if: Use correct device for hardware reinitialization on resume Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0729/1266] virtio-net: fix len check in receive_big() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0730/1266] dpaa2-switch: fix VLAN upper check not rejecting bridge join Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0731/1266] devlink: Fix parent ref leak in devl_rate_node_create() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0732/1266] flow_dissector: check device type before reading ETH_ADDRS Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0733/1266] ALSA: usb-audio: Kill MIDI 2.0 URBs before freeing endpoints Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0734/1266] arm64/hw_breakpoint: reject unaligned watchpoints that would truncate BAS Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0735/1266] thermal: intel: Fix dangling resources on thermal_throttle_online() failure Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0736/1266] ACPI: resource: Amend kernel-doc style Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0737/1266] ACPI: IPMI: Fix inverted interface check in ipmi_bmc_gone() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0738/1266] ieee802154: Remove WARN_ON() in cfg802154_pernet_exit() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0739/1266] ieee802154: fix kernel-infoleak in dgram_recvmsg() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0740/1266] md/raid1: free r1_bio when REQ_NOWAIT is set and read would block on retry Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0741/1266] netfilter: ipset: Fix data race between add and dump in all hash types Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0742/1266] netfilter: ipset: annotate "pos" for concurrent readers/writers Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0743/1266] netfilter: ipset: Dont use test_bit() in lockless RCU readers in hash types Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0744/1266] netfilter: ipset: fix order of kfree_rcu() and rcu_assign_pointer() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0745/1266] netfilter: nf_reject: skip iphdr options when looking for icmp header Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0746/1266] netfilter: nft_meta_bridge: fix NFT_META_BRI_IIFPVID stack leak Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0747/1266] irqchip/crossbar: Fix parent domain resource leak Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0748/1266] selftests/mm: clarify alternate unmapping in compaction_test Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0749/1266] selftests/mm: allow PUD-level entries in compound testcase of hmm tests Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0750/1266] selftests/mm: fix exclusive_cow test fork() handling Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0751/1266] net: marvell: prestera: initialize err in prestera_port_sfp_bind Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0752/1266] tipc: fix use-after-free of the discoverer in tipc_disc_rcv() Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0753/1266] net: ethernet: mtk_ppe: Fix rhashtable leak in mtk_ppe_init error paths Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0754/1266] octeontx2-af: mcs: Fix unsupported secy stats read Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0755/1266] octeontx2-pf: Clear stats of all resources when freeing resources Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0756/1266] octeontx2-pf: mcs: Fix mcs resources free on PF shutdown Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0757/1266] rtc: abx80x: fix the RTC_VL_CLR clearing all status flags Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0758/1266] rtc: ds1307: handle oscillator stop flag for ds1337/ds1339/ds3231 Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0759/1266] bpf: Fix stack slot index in nospec checks Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0760/1266] bpf: zero-initialize the fib lookup flow struct Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0761/1266] bpf: Fix effective prog array index with BPF_F_PREORDER Greg Kroah-Hartman
2026-07-21 15:19 ` [PATCH 6.6 0762/1266] drm/edid: fix OOB read in drm_parse_tiled_block() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0763/1266] PCI: endpoint: pci-epf-vntb: Add check to detect db_count value of 0 Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0764/1266] PCI: endpoint: pci-epf-ntb: " Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0765/1266] ice: fix FDIR CTRL VSI resource leak in ice_reset_all_vfs() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0766/1266] ice: fix AQ error code comparison in ice_set_pauseparam() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0767/1266] i40e: Fix i40e_debug() to use struct i40e_hw argument Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0768/1266] rtc: msc313: fix NULL deref in shared IRQ handler at probe Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0769/1266] ksmbd: fix use-after-free of conn->preauth_info in concurrent SMB2 NEGOTIATE Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0770/1266] ipv6: Fix null-ptr-deref in fib6_nh_mtu_change() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0771/1266] ipv4: fib: Dont ignore error route in local/main tables Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0772/1266] bpf, lsm: Add disabled BPF LSM hook list Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0773/1266] bpf: Disable xfrm_decode_session hook attachment Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0774/1266] netfilter: nf_nat: avoid invalid nat_net pointer use on failed nf_nat_init() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0775/1266] netfilter: nf_conncount: prevent connlimit drops for early confirmed ct Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0776/1266] netfilter: nft_synproxy: stop bypassing the priv->info snapshot Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0777/1266] netfilter: nft_compat: ebtables emulation must reject non-bridge targets Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0778/1266] NTB: epf: Make db_valid_mask cover only real doorbell bits Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0779/1266] NTB: epf: Report 0-based doorbell vector via ntb_db_event() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0780/1266] NTB: epf: Fix doorbell bitmask and IRQ vector handling Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0781/1266] alpha/PCI: Add security_locked_down() check to pci_mmap_resource() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0782/1266] alpha/PCI: Fix __pci_mmap_fits() overflow for zero-length BARs Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0783/1266] net, bpf: check master for NULL in xdp_master_redirect() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0784/1266] net: dsa: sja1105: round up PTP perout pin duration Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0785/1266] veth: fix NAPI leak in XDP enable error path Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0786/1266] net/sched: cls_api: Handle TC_ACT_CONSUMED in tcf_qevent_handle Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0787/1266] ipv6: fix error handling in disable_ipv6 sysctl Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0788/1266] ipv6: fix error handling in ignore_routes_with_linkdown sysctl Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0789/1266] ipv6: fix error handling in forwarding sysctl Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0790/1266] ipv6: fix error handling in disable_policy sysctl Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0791/1266] smb/client: preserve errors from smb2_set_sparse() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0792/1266] rtc: ds1307: Fix off-by-one issue with wday for rx8130 Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0793/1266] rtc: cmos: unregister HPET IRQ handler on probe failure Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0794/1266] net: mvneta: re-enable percpu interrupt on resume Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0795/1266] net: sungem: fix probe error cleanup Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0796/1266] net: ethernet: sunplus: spl2sw: fix phy_node refcount leak in remove Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0797/1266] ASoC: fsl_asrc_dma: fix eDMA maxburst misalignment with channel count Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0798/1266] dt-bindings: net: renesas,ether: Drop example "ethernet-phy-ieee802.3-c22" fallback Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0799/1266] tracing: probes: fix typo in a log message Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0800/1266] spi: sh-msiof: abort transfers when reset times out Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0801/1266] gpio: mvebu: fail probe if gpiochip registration fails Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0802/1266] gpio: htc-egpio: use managed gpiochip registration Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0803/1266] seg6: validate SRH length before reading fixed fields Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0804/1266] qede: fix out-of-bounds check for cqe->len_list[] Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0805/1266] net: enetc: check the number of BDs needed for xdp_frame Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0806/1266] sctp: fix SCTP_RESET_STREAMS stream list length limit Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0807/1266] MIPS: DEC: Ensure RTC platform device deregistration upon failure Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0808/1266] hwmon: adm1275: Prevent reading uninitialized stack Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0809/1266] hwmon: (pmbus) Fix passing events to regulator core Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0810/1266] usbnet: gl620a: fix out-of-bounds read in genelink_rx_fixup() Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0811/1266] net: phy: sfp: free mii_bus in sfp_i2c_mdiobus_destroy Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0812/1266] net: gianfar: dispose irq mappings on probe failure and device removal Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0813/1266] net/sched: sch_teql: Introduce slaves_lock to avoid race condition and UAF Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0814/1266] bridge: stp: Fix a potential use-after-free when deleting a bridge Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0815/1266] tracing/events: Fix to check the simple_tsk_fn creation Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0816/1266] tracing: eprobe: read the complete FILTER_PTR_STRING pointer Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0817/1266] irqchip/gic-v3-its: Fix OF node reference leak Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0818/1266] irqchip/ts4800: Fix missing chained handler cleanup on remove Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0819/1266] virtio_net: disable cb when NAPI is busy-polled Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0820/1266] cxgb4: Fix decode strings dump for T6 adapters Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0821/1266] net/sched: act_bpf: use rcu_dereference_bh() to read the filter Greg Kroah-Hartman
2026-07-21 15:20 ` [PATCH 6.6 0822/1266] ksmbd: reject undersized DACLs before parsing ACEs Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0823/1266] smb: move some duplicate definitions to common/cifsglob.h Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0824/1266] ksmbd: fix use-after-free of fp->owner.name in durable handle owner check Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0825/1266] gpio: timberdale: Return -ENOMEM on dynamic memory allocation in probe Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0826/1266] pinctrl: meson: restore non-sleeping GPIO access Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0827/1266] net/sched: hhf: clear heavy-hitter state on reset Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0828/1266] fs: refuse O_TMPFILE creation with an unmapped fsuid or fsgid Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0829/1266] afs: Fix error code in afs_extract_vl_addrs() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0830/1266] afs: use kvfree() to free memory allocated by kvcalloc() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0831/1266] afs: Fix callback service message parsers to pass through -EAGAIN Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0832/1266] afs: Fix vllist leak Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0833/1266] afs: Fix the volume AFS_VOLUME_RM_TREE is set on Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0834/1266] afs: Fix unchecked-length string display in debug statement Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0835/1266] minix: avoid overflow in bitmap block count calculation Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0836/1266] ata: sata_gemini: unwind clocks on IDE pinctrl errors Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0837/1266] HID: picolcd: prevent NULL pointer dereference in picolcd_send_and_wait() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0838/1266] HID: core: Fix OOB read in hid_get_report for numbered reports Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0839/1266] arm64/mm: convert READ_ONCE(*ptep) to ptep_get(ptep) Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0840/1266] arm64/mm: convert set_pte_at() to set_ptes(..., 1) Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0841/1266] arm64/mm: convert ptep_clear() to ptep_get_and_clear() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0842/1266] arm64/mm: Optimize TLB flush in unmap_hotplug_[pmd|pud]_range() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0843/1266] selftests/hid: ensure we can compile the tests on kernels pre-6.3 Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0844/1266] selftests/hid: do not manually call headers_install Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0845/1266] selftests/hid: force using our compiled libbpf headers Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0846/1266] selftests/hid: convert the hid_bpf selftests with struct_ops Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0847/1266] selftests/hid: Cover hid_bpf_get_data() size overflow Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0848/1266] net: usb: net1080: validate packet_len before pad-byte access in rx_fixup Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0849/1266] gue: validate REMCSUM private option length Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0850/1266] netfilter: xt_u32: reject invalid shift counts Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0851/1266] netfilter: xt_rateest: fix u64 truncation in xt_rateest_mt() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0852/1266] netfilter: ip6tables: mark malformed IPv6 extension headers for hotdrop Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0853/1266] netfilter: xt_connmark: reject invalid shift parameters Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0854/1266] net/mlx5e: Fix HV VHCA stats zero-sized buffer allocation Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0855/1266] net/mlx5e: Fix HV VHCA stats agent registration race Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0856/1266] net: microchip: vcap: fix races on the shared Super VCAP block Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0857/1266] qede: fix off-by-one in BD ring consumption on build_skb failure Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0858/1266] net: qualcomm: rmnet: validate MAP frame length before ingress parsing Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0859/1266] net/sched: act_pedit: fix TOCTOU heap OOB write in tc offload Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0860/1266] net/smc: fix UAF in smc_cdc_rx_handler() by pinning the socket Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0861/1266] amt: fix size calculation in amt_get_size() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0862/1266] Bluetooth: 6lowpan: hold L2CAP conn across debugfs control Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0863/1266] Bluetooth: MGMT: Fix adv monitor add failure cleanup Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0864/1266] Bluetooth: ISO: exclude RFU bits from ISO_SDU_Length Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0865/1266] Bluetooth: bpa10x: avoid OOB read of revision string in bpa10x_setup() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0866/1266] ring-buffer: Fix event length with forced 8-byte alignment Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0867/1266] net/tls: Consume empty data records in tls_sw_read_sock() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0868/1266] net: usb: lan78xx: move functions to avoid forward definitions Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0869/1266] net: usb: lan78xx: disable VLAN filter in promiscuous mode Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0870/1266] net/sched: cake: reject overhead values that underflow length Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0871/1266] octeontx2-pf: check DMAC extraction support before filtering Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0872/1266] ipv4: igmp: Fix potential UAF in igmp_gq_start_timer() Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0873/1266] ipv6: mcast: Replace locking comments with lockdep annotations Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0874/1266] ipv6: mcast: Fix potential UAF in MLD delayed work Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0875/1266] ipvs: pass parsed transport offset to state handlers Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0876/1266] ipvs: use parsed transport offset in TCP state lookup Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0877/1266] ipvs: fix PMTU for GUE/GRE tunnel ICMP errors Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0878/1266] ipvs: ensure inner headers in ICMP errors are in headroom Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0879/1266] s390/zcrypt: Remove the empty file Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0880/1266] cifs: validate DFS referral string offsets Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0881/1266] SUNRPC: release lower rpc_clnt if killed waiting for XPRT_LOCKED Greg Kroah-Hartman
2026-07-21 15:21 ` [PATCH 6.6 0882/1266] SUNRPC: pin upper rpc_clnt across the TLS connect_worker Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0883/1266] dm era: fix NULL pointer dereference in metadata_open() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0884/1266] regulator: core: regulator_lock_two() should test for EDEADLK not EDEADLOCK Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0885/1266] selftests/net: fix EVP_MD_CTX leak in tcp_mmap Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0886/1266] net/mlx5: Fix L3 tunnel entropy refcount leak Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0887/1266] octeontx2-af: fix VF bringup affecting PF promiscuous state Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0888/1266] smb: client: fix overflow in passthrough ioctl bounds check Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0889/1266] mlxsw: fix refcount leak in mlxsw_sp_port_lag_join() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0890/1266] mlxsw: fix refcount leak in mlxsw_sp_vrs_lpm_tree_replace() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0891/1266] vduse: Fix race in vduse_dev_msg_sync and vduse_dev_read_iter Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0892/1266] ASoC: SOF: ipc4-control: Fix TOCTOU in sof_ipc4_bytes_put Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0893/1266] ASoC: SOF: ipc3-control: Use overflow checks in control_update size calc Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0894/1266] ASoC: SOF: ipc3-control: Fix TOCTOU in bytes_put and bytes_get Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0895/1266] ASoC: SOF: topology: validate vendor array size before parsing Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0896/1266] net: qrtr: fix 32-bit integer overflow in qrtr_endpoint_post() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0897/1266] net: atm: reject out-of-range traffic classes in QoS validation Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0898/1266] net: ife: require ETH_HLEN to be pullable in ife_decode() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0899/1266] arm64: fpsimd: Fix type mismatch in sve_{save,load}_state() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0900/1266] arm64: dts: qcom: sdm630: describe adsp_mem region properly Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0901/1266] KVM: s390: pci: Fix GISC refcount leak on AIF enable failure Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0902/1266] KVM: arm64: vgic: Check the interrupt is still ours before migrating it Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0903/1266] KVM: s390: pci: Fix handling of AIF enable without AISB Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0904/1266] KVM: x86: Ignore pending PV EOI if the vCPU has since disabled PV EOIs Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0905/1266] fbdev: metronomefb: fix potential memory leak in metronomefb_probe() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0906/1266] fbdev: broadsheetfb: fix potential memory leak in broadsheetfb_probe() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0907/1266] fbdev: hecubafb: fix potential memory leak in hecubafb_probe() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0908/1266] fbdev: sm712: Fix operator precedence in big_swap macro Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0909/1266] fbdev: radeon: fix potential memory leak in radeonfb_pci_register() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0910/1266] fbdev: i740fb: fix potential memory leak in i740fb_probe() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0911/1266] fbdev: s3fb: fix potential memory leak in s3_pci_probe() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0912/1266] fbdev: uvesafb: fix potential memory leak in uvesafb_probe() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0913/1266] fbdev: tdfxfb: fix potential memory leak in tdfxfb_probe() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0914/1266] fbdev: carminefb: fix potential memory leak in alloc_carmine_fb() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0915/1266] fbdev: vesafb: fix memory leak in vesafb_probe() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0916/1266] fbdev: nvidia: fix potential memory leak in nvidiafb_probe() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0917/1266] fbdev: tridentfb: fix potential memory leak in trident_pci_probe() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0918/1266] ASoC: SOF: ipc3-control: Fix heap overflow in bytes_ext put/get Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0919/1266] ASoC: SOF: ipc3-control: Validate size in snd_sof_update_control Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0920/1266] ASoC: mediatek: mt8192: Release reserved memory on cleanup Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0921/1266] ASoC: mediatek: mt8183: " Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0922/1266] ASoC: qcom: q6apm: fix NULL pointer dereference in graph_callback Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0923/1266] netfilter: nf_conntrack_irc: fix parse_dcc() off-by-one OOB read Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0924/1266] netfilter: nfnl_cthelper: apply per-class values when updating policies Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0925/1266] netfilter: xt_cluster: reject template conntracks in hash match Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0926/1266] netfilter: nf_queue: pin bridge device while NFQUEUE holds fake dst Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0927/1266] netfilter: nf_nat_sip: reload possible stale data pointer Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0928/1266] netfilter: nf_conntrack_reasm: guard mac_header adjustment after IPv6 defrag Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0929/1266] netfilter: nf_conncount: fix zone comparison in tuple dedup Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0930/1266] netfilter: ecache: fix inverted time_after() check Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0931/1266] netfilter: xt_nat: reject unsupported target families Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0932/1266] netfilter: bridge: fix stale prevhdr pointer in br_ip6_fragment() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0933/1266] gpu: host1x: Fix device reference leak in host1x_device_parse_dt() error path Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0934/1266] soc: ti: k3-ringacc: Fix access mode for k3_ringacc_ring_pop_tail_io/proxy Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0935/1266] soc: fsl: qe: panic on ioremap() failure in qe_reset() Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0936/1266] selinux: check connect-related permissions on TCP Fast Open Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0937/1266] selinux: fix incorrect execmem checks on overlayfs Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0938/1266] leds: uleds: Fix potential buffer overread Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0939/1266] mfd: sm501: Fix reference leak on failed device registration Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0940/1266] tools/power/x86/intel-speed-select: Harden daemon pidfile open Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0941/1266] x86/boot: Validate console=uart8250 baud rate to fix early boot hang Greg Kroah-Hartman
2026-07-21 15:22 ` [PATCH 6.6 0942/1266] x86/boot: Reject too long acpi_rsdp= values Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0943/1266] perf/x86/amd/lbr: Fix kernel address leakage Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0944/1266] s390/perf_cpum_cf: Add missing array_index_nospec() to __hw_perf_event_init() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0945/1266] batman-adv: gw: acquire ethernet header only after skb realloc Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0946/1266] batman-adv: access unicast_ttvn skb->data " Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0947/1266] batman-adv: dat: acquire ARP hw source " Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0948/1266] batman-adv: bla: reacquire gw address " Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0949/1266] batman-adv: dat: ensure accessible eth_hdr proto field Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0950/1266] batman-adv: dat: fix tie-break for candidate selection Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0951/1266] batman-adv: tt: avoid request storms during pending request Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0952/1266] batman-adv: fix VLAN priority offset Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0953/1266] batman-adv: frag: free unfragmentable packet Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0954/1266] batman-adv: frag: fix primary_if leak on failed linearization Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0955/1266] batman-adv: tt: prevent TVLV OOB check overflow Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0956/1266] cifs: invalidate cfid on unlink/rename/rmdir Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0957/1266] mfd: tps6586x: Fix OF node refcount Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0958/1266] HID: playstation: validate num_touch_reports in DualShock 4 reports Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0959/1266] Bluetooth: SCO: fix sleeping under spinlock in sco_conn_ready Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0960/1266] Bluetooth: SCO: hold sk properly " Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0961/1266] jbd2: fix integer underflow in jbd2_journal_initialize_fast_commit() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0962/1266] nvdimm/btt: Free arenas on btt_init() error paths Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0963/1266] nvdimm/btt: Free arena sub-allocations on discover_arenas() error path Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0964/1266] sunrpc: pin svc_xprt across the asynchronous TLS handshake callback Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0965/1266] sunrpc: wait for in-flight TLS handshake callback when cancel loses race Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0966/1266] lockd: Plug nlm_file leak when nlm_do_fopen() fails Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0967/1266] lockd: Plug nlm_file refcount leak on cached nlm_do_fopen() failure Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0968/1266] SUNRPC: Bound-check xdr_buf_to_bvec() stores before writing Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0969/1266] remoteproc: qcom: Fix leak when custom dump_segments addition fails Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0970/1266] MIPS: ip22-gio: fix gio device memory leak Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0971/1266] MIPS: ip22-gio: fix kfree() of static object Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0972/1266] MIPS: ip22-gio: fix device reference leak in probe Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0973/1266] MIPS: DEC: Ensure 32-bit stack location for o32 prom_printf() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0974/1266] power: supply: cpcap-battery: Fix missing nvmem_device_put() causing reference leak Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0975/1266] mm/damon/core: make charge_addr_from aware of end-address exclusivity Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0976/1266] fs/ntfs3: fix syncing wrong inode on DIRSYNC cross-directory rename Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0977/1266] fs/ntfs3: bound DeleteIndexEntryAllocation memmove length Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0978/1266] fs/ntfs3: bound copy_lcns dp->page_lcns[] index in analysis pass Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0979/1266] fs/ntfs3: bound attr_off in UpdateResidentValue against data_off Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0980/1266] fs/ntfs3: validate lcns_follow in log_replay conversion Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0981/1266] fs/ntfs3: add depth limit to indx_find_buffer to prevent stack overflow Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0982/1266] fs/ntfs3: bound NTFS_DE view.data_off in UpdateRecordData{Root,Allocation} Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0983/1266] ntfs3: cap RESTART_TABLE free-chain walker at rt->used Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0984/1266] ntfs3: bound to_move in indx_insert_into_root before hdr_insert_head Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0985/1266] ntfs3: validate split-point offset in indx_insert_into_buffer Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0986/1266] ntfs3: fix out-of-bounds read in decompress_lznt Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0987/1266] power: supply: charger-manager: fix refcount leak in is_full_charged() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0988/1266] mips: sched: Fix CPUMASK_OFFSTACK memory corruption Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0989/1266] riscv: cacheinfo: Fix node reference leak in populate_cache_leaves Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0990/1266] mm/damon/sysfs-schemes: fix dir put orders in access_pattern_add_dirs() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0991/1266] mm/damon/sysfs-schemes: put stats for scheme_add_dirs() internal error Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0992/1266] proc: only bump parent nlink when registering directories Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0993/1266] mm/mm_init: fix uninitialized struct pages for ZONE_DEVICE Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0994/1266] mtd: slram: remove failed entries from the device list Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0995/1266] 9p: skip nlink update in cacheless mode to fix WARN_ON Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0996/1266] scsi: smartpqi: Use shost_to_hba() in pqi_scan_finished() Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0997/1266] scsi: sas: Skip opt_sectors when DMA reports no real optimization hint Greg Kroah-Hartman
2026-07-21 15:23 ` [PATCH 6.6 0998/1266] ocfs2: use kzalloc for quota recovery bitmap allocation Greg Kroah-Hartman

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=20260721152456.784422025@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=acme@redhat.com \
    --cc=dave@stgolabs.net \
    --cc=irogers@google.com \
    --cc=namhyung@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=sashiko-bot@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is 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.