patches.lists.linux.dev archive mirror
 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, David Howells <dhowells@redhat.com>,
	Ilya Dryomov <idryomov@gmail.com>,
	Viacheslav Dubeyko <Slava.Dubeyko@ibm.com>
Subject: [PATCH 6.1 550/568] libceph: fix potential use-after-free in have_mon_and_osd_map()
Date: Wed,  3 Dec 2025 16:29:12 +0100	[thread overview]
Message-ID: <20251203152500.855360784@linuxfoundation.org> (raw)
In-Reply-To: <20251203152440.645416925@linuxfoundation.org>

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

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

From: Ilya Dryomov <idryomov@gmail.com>

commit 076381c261374c587700b3accf410bdd2dba334e upstream.

The wait loop in __ceph_open_session() can race with the client
receiving a new monmap or osdmap shortly after the initial map is
received.  Both ceph_monc_handle_map() and handle_one_map() install
a new map immediately after freeing the old one

    kfree(monc->monmap);
    monc->monmap = monmap;

    ceph_osdmap_destroy(osdc->osdmap);
    osdc->osdmap = newmap;

under client->monc.mutex and client->osdc.lock respectively, but
because neither is taken in have_mon_and_osd_map() it's possible for
client->monc.monmap->epoch and client->osdc.osdmap->epoch arms in

    client->monc.monmap && client->monc.monmap->epoch &&
        client->osdc.osdmap && client->osdc.osdmap->epoch;

condition to dereference an already freed map.  This happens to be
reproducible with generic/395 and generic/397 with KASAN enabled:

    BUG: KASAN: slab-use-after-free in have_mon_and_osd_map+0x56/0x70
    Read of size 4 at addr ffff88811012d810 by task mount.ceph/13305
    CPU: 2 UID: 0 PID: 13305 Comm: mount.ceph Not tainted 6.14.0-rc2-build2+ #1266
    ...
    Call Trace:
    <TASK>
    have_mon_and_osd_map+0x56/0x70
    ceph_open_session+0x182/0x290
    ceph_get_tree+0x333/0x680
    vfs_get_tree+0x49/0x180
    do_new_mount+0x1a3/0x2d0
    path_mount+0x6dd/0x730
    do_mount+0x99/0xe0
    __do_sys_mount+0x141/0x180
    do_syscall_64+0x9f/0x100
    entry_SYSCALL_64_after_hwframe+0x76/0x7e
    </TASK>

    Allocated by task 13305:
    ceph_osdmap_alloc+0x16/0x130
    ceph_osdc_init+0x27a/0x4c0
    ceph_create_client+0x153/0x190
    create_fs_client+0x50/0x2a0
    ceph_get_tree+0xff/0x680
    vfs_get_tree+0x49/0x180
    do_new_mount+0x1a3/0x2d0
    path_mount+0x6dd/0x730
    do_mount+0x99/0xe0
    __do_sys_mount+0x141/0x180
    do_syscall_64+0x9f/0x100
    entry_SYSCALL_64_after_hwframe+0x76/0x7e

    Freed by task 9475:
    kfree+0x212/0x290
    handle_one_map+0x23c/0x3b0
    ceph_osdc_handle_map+0x3c9/0x590
    mon_dispatch+0x655/0x6f0
    ceph_con_process_message+0xc3/0xe0
    ceph_con_v1_try_read+0x614/0x760
    ceph_con_workfn+0x2de/0x650
    process_one_work+0x486/0x7c0
    process_scheduled_works+0x73/0x90
    worker_thread+0x1c8/0x2a0
    kthread+0x2ec/0x300
    ret_from_fork+0x24/0x40
    ret_from_fork_asm+0x1a/0x30

Rewrite the wait loop to check the above condition directly with
client->monc.mutex and client->osdc.lock taken as appropriate.  While
at it, improve the timeout handling (previously mount_timeout could be
exceeded in case wait_event_interruptible_timeout() slept more than
once) and access client->auth_err under client->monc.mutex to match
how it's set in finish_auth().

monmap_show() and osdmap_show() now take the respective lock before
accessing the map as well.

Cc: stable@vger.kernel.org
Reported-by: David Howells <dhowells@redhat.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Reviewed-by: Viacheslav Dubeyko <Slava.Dubeyko@ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 net/ceph/ceph_common.c |   53 +++++++++++++++++++++++++++++--------------------
 net/ceph/debugfs.c     |   14 +++++++++---
 2 files changed, 42 insertions(+), 25 deletions(-)

--- a/net/ceph/ceph_common.c
+++ b/net/ceph/ceph_common.c
@@ -786,41 +786,52 @@ void ceph_reset_client_addr(struct ceph_
 EXPORT_SYMBOL(ceph_reset_client_addr);
 
 /*
- * true if we have the mon map (and have thus joined the cluster)
- */
-static bool have_mon_and_osd_map(struct ceph_client *client)
-{
-	return client->monc.monmap && client->monc.monmap->epoch &&
-	       client->osdc.osdmap && client->osdc.osdmap->epoch;
-}
-
-/*
  * mount: join the ceph cluster, and open root directory.
  */
 int __ceph_open_session(struct ceph_client *client, unsigned long started)
 {
-	unsigned long timeout = client->options->mount_timeout;
-	long err;
+	DEFINE_WAIT_FUNC(wait, woken_wake_function);
+	long timeout = ceph_timeout_jiffies(client->options->mount_timeout);
+	bool have_monmap, have_osdmap;
+	int err;
 
 	/* open session, and wait for mon and osd maps */
 	err = ceph_monc_open_session(&client->monc);
 	if (err < 0)
 		return err;
 
-	while (!have_mon_and_osd_map(client)) {
-		if (timeout && time_after_eq(jiffies, started + timeout))
-			return -ETIMEDOUT;
+	add_wait_queue(&client->auth_wq, &wait);
+	for (;;) {
+		mutex_lock(&client->monc.mutex);
+		err = client->auth_err;
+		have_monmap = client->monc.monmap && client->monc.monmap->epoch;
+		mutex_unlock(&client->monc.mutex);
+
+		down_read(&client->osdc.lock);
+		have_osdmap = client->osdc.osdmap && client->osdc.osdmap->epoch;
+		up_read(&client->osdc.lock);
+
+		if (err || (have_monmap && have_osdmap))
+			break;
+
+		if (signal_pending(current)) {
+			err = -ERESTARTSYS;
+			break;
+		}
+
+		if (!timeout) {
+			err = -ETIMEDOUT;
+			break;
+		}
 
 		/* wait */
 		dout("mount waiting for mon_map\n");
-		err = wait_event_interruptible_timeout(client->auth_wq,
-			have_mon_and_osd_map(client) || (client->auth_err < 0),
-			ceph_timeout_jiffies(timeout));
-		if (err < 0)
-			return err;
-		if (client->auth_err < 0)
-			return client->auth_err;
+		timeout = wait_woken(&wait, TASK_INTERRUPTIBLE, timeout);
 	}
+	remove_wait_queue(&client->auth_wq, &wait);
+
+	if (err)
+		return err;
 
 	pr_info("client%llu fsid %pU\n", ceph_client_gid(client),
 		&client->fsid);
--- a/net/ceph/debugfs.c
+++ b/net/ceph/debugfs.c
@@ -36,8 +36,9 @@ static int monmap_show(struct seq_file *
 	int i;
 	struct ceph_client *client = s->private;
 
+	mutex_lock(&client->monc.mutex);
 	if (client->monc.monmap == NULL)
-		return 0;
+		goto out_unlock;
 
 	seq_printf(s, "epoch %d\n", client->monc.monmap->epoch);
 	for (i = 0; i < client->monc.monmap->num_mon; i++) {
@@ -48,6 +49,9 @@ static int monmap_show(struct seq_file *
 			   ENTITY_NAME(inst->name),
 			   ceph_pr_addr(&inst->addr));
 	}
+
+out_unlock:
+	mutex_unlock(&client->monc.mutex);
 	return 0;
 }
 
@@ -56,13 +60,14 @@ static int osdmap_show(struct seq_file *
 	int i;
 	struct ceph_client *client = s->private;
 	struct ceph_osd_client *osdc = &client->osdc;
-	struct ceph_osdmap *map = osdc->osdmap;
+	struct ceph_osdmap *map;
 	struct rb_node *n;
 
+	down_read(&osdc->lock);
+	map = osdc->osdmap;
 	if (map == NULL)
-		return 0;
+		goto out_unlock;
 
-	down_read(&osdc->lock);
 	seq_printf(s, "epoch %u barrier %u flags 0x%x\n", map->epoch,
 			osdc->epoch_barrier, map->flags);
 
@@ -131,6 +136,7 @@ static int osdmap_show(struct seq_file *
 		seq_printf(s, "]\n");
 	}
 
+out_unlock:
 	up_read(&osdc->lock);
 	return 0;
 }



  parent reply	other threads:[~2025-12-03 16:46 UTC|newest]

Thread overview: 588+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-03 15:20 [PATCH 6.1 000/568] 6.1.159-rc1 review Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 001/568] net/sched: sch_qfq: Fix null-deref in agg_dequeue Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 002/568] perf: Have get_perf_callchain() return NULL if crosstask and user are set Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 003/568] x86/bugs: Fix reporting of LFENCE retpoline Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 004/568] EDAC/mc_sysfs: Increase legacy channel support to 16 Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 005/568] btrfs: zoned: refine extent allocator hint selection Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 006/568] btrfs: scrub: replace max_t()/min_t() with clamp() in scrub_throttle_dev_io() Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 007/568] btrfs: always drop log root tree reference in btrfs_replay_log() Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 008/568] btrfs: use smp_mb__after_atomic() when forcing COW in create_pending_snapshot() Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 009/568] arch: Add the macro COMPILE_OFFSETS to all the asm-offsets.c Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 010/568] mptcp: pm: in-kernel: C-flag: handle late ADD_ADDR Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 011/568] dt-bindings: usb: dwc3-imx8mp: dma-range is required only for imx8mp Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 012/568] selftests: mptcp: disable add_addr retrans in endpoint_tests Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 013/568] selftests: mptcp: join: mark delete re-add signal as skipped if not supported Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 014/568] xhci: dbc: Provide sysfs option to configure dbc descriptors Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 015/568] xhci: dbc: poll at different rate depending on data transfer activity Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 016/568] xhci: dbc: Allow users to modify DbC poll interval via sysfs Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 017/568] xhci: dbc: Improve performance by removing delay in transfer event polling Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 018/568] xhci: dbc: Avoid event polling busyloop if pending rx transfers are inactive Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 019/568] xhci: dbc: fix bogus 1024 byte prefix if ttyDBC read races with stall event Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 020/568] serial: sc16is7xx: remove unused to_sc16is7xx_port macro Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 021/568] serial: sc16is7xx: reorder code to remove prototype declarations Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 022/568] serial: sc16is7xx: refactor EFR lock Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 023/568] serial: sc16is7xx: remove useless enable of enhanced features Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 024/568] NFSD: Fix crash in nfsd4_read_release() Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 025/568] net: usb: asix_devices: Check return value of usbnet_get_endpoints Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 026/568] fbcon: Set fb_display[i]->mode to NULL when the mode is released Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 027/568] fbdev: atyfb: Check if pll_ops->init_pll failed Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 028/568] ACPI: video: Fix use-after-free in acpi_video_switch_brightness() Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 029/568] fbdev: bitblit: bound-check glyph index in bit_putcs* Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 030/568] wifi: brcmfmac: fix crash while sending Action Frames in standalone AP Mode Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 031/568] fbdev: pvr2fb: Fix leftover reference to ONCHIP_NR_DMA_CHANNELS Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 032/568] fbdev: valkyriefb: Fix reference count leak in valkyriefb_init Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 033/568] mptcp: restore window probe Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 034/568] ASoC: qdsp6: q6asm: do not sleep while atomic Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 035/568] x86/fpu: Ensure XFD state on signal delivery Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 036/568] wifi: ath10k: Fix memory leak on unsupported WMI command Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 037/568] drm/msm/a6xx: Fix GMU firmware parser Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 038/568] ALSA: usb-audio: fix control pipe direction Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 039/568] bpf: Sync pending IRQ work before freeing ring buffer Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 040/568] scsi: ufs: core: Initialize value of an attribute returned by uic cmd Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 041/568] bpf: Do not audit capability check in do_jit() Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 042/568] ASoC: Intel: avs: Unprepare a stream when XRUN occurs Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 043/568] ASoC: fsl_sai: fix bit order for DSD format Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 044/568] libbpf: Fix powerpcs stack register definition in bpf_tracing.h Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 045/568] usbnet: Prevents free active kevent Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 046/568] Bluetooth: hci_sync: fix race in hci_cmd_sync_dequeue_once Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 047/568] Bluetooth: btmtksdio: Add pmctrl handling for BT closed state during reset Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 048/568] Bluetooth: HCI: Fix tracking of advertisement set/instance 0x00 Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 049/568] Bluetooth: ISO: Add support for periodic adv reports processing Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 050/568] Bluetooth: ISO: Fix another instance of dst_type handling Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 051/568] drm/etnaviv: fix flush sequence logic Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 052/568] net: hns3: return error code when function fails Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 053/568] drm/amd/pm: fix smu table id bound check issue in smu_cmn_update_table() Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 054/568] drm/amd/pm/powerplay/smumgr: Fix PCIeBootLinkLevel value on Fiji Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 055/568] drm/amd/pm/powerplay/smumgr: Fix PCIeBootLinkLevel value on Iceland Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 056/568] block: fix op_is_zone_mgmt() to handle REQ_OP_ZONE_RESET_ALL Greg Kroah-Hartman
2025-12-03 15:20 ` [PATCH 6.1 057/568] block: make REQ_OP_ZONE_OPEN a write operation Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 058/568] regmap: slimbus: fix bus_context pointer in regmap init calls Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 059/568] Reapply "Revert drm/amd/display: Enable Freesync Video Mode by default" Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 060/568] s390/pci: Restore IRQ unconditionally for the zPCI device Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 061/568] net: phy: dp83867: Disable EEE support as not implemented Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 062/568] mptcp: change first as a parameter Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 063/568] mptcp: drop bogus optimization in __mptcp_check_push() Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 064/568] can: gs_usb: increase max interface to U8_MAX Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 065/568] cacheinfo: Use RISC-Vs init_cache_level() as generic OF implementation Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 066/568] cacheinfo: Return error code in init_of_cache_level() Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 067/568] cacheinfo: Check cache-unified property to count cache leaves Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 068/568] ACPI: PPTT: Remove acpi_find_cache_levels() Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 069/568] ACPI: PPTT: Update acpi_find_last_cache_level() to acpi_get_cache_info() Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 070/568] arch_topology: Build cacheinfo from primary CPU Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 071/568] cacheinfo: Initialize variables in fetch_cache_info() Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 072/568] cacheinfo: Fix LLC is not exported through sysfs Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 073/568] drivers: base: cacheinfo: Update cpu_map_populated during CPU Hotplug Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 074/568] arm64: tegra: Update cache properties Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 075/568] filemap: add a kiocb_invalidate_pages helper Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 076/568] filemap: add a kiocb_invalidate_post_direct_write helper Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 077/568] filemap: update ki_pos in generic_perform_write Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 078/568] fs: factor out a direct_write_fallback helper Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 079/568] direct_write_fallback(): on error revert the ->ki_pos update from buffered write Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 080/568] block: open code __generic_file_write_iter for blkdev writes Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 081/568] block: fix race between set_blocksize and read paths Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 082/568] nilfs2: fix deadlock warnings caused by lock dependency in init_nilfs() Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 083/568] usb: gadget: f_fs: Fix epfile null pointer access after ep enable Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 084/568] drm/sysfb: Do not dereference NULL pointer in plane reset Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 085/568] drm/sched: Fix race in drm_sched_entity_select_rq() Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 086/568] s390/pci: Avoid deadlock between PCI error recovery and mlx5 crdump Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 087/568] soc: aspeed: socinfo: Add AST27xx silicon IDs Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 088/568] soc: qcom: smem: Fix endian-unaware access of num_entries Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 089/568] spi: loopback-test: Dont use %pK through printk Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 090/568] soc: ti: pruss: dont " Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 091/568] bpf: Dont " Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 092/568] pinctrl: single: fix bias pull up/down handling in pin_config_set Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 093/568] mmc: host: renesas_sdhi: Fix the actual clock Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 094/568] memstick: Add timeout to prevent indefinite waiting Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 095/568] irqchip/sifive-plic: Respect mask state when setting affinity Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 096/568] selftests/bpf: Fix bpf_prog_detach2 usage in test_lirc_mode2 Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 097/568] cpufreq/longhaul: handle NULL policy in longhaul_exit Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 098/568] arc: Fix __fls() const-foldability via __builtin_clzl() Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 099/568] selftests/bpf: Upon failures, exit with code 1 in test_xsk.sh Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 100/568] irqchip/gic-v2m: Handle Multiple MSI base IRQ Alignment Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 101/568] ACPI: PRM: Skip handlers with NULL handler_address or NULL VA Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 102/568] ACPI: scan: Add Intel CVS ACPI HIDs to acpi_ignore_dep_ids[] Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 103/568] hwmon: (sbtsi_temp) AMD CPU extended temperature range support Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 104/568] power: supply: sbs-charger: Support multiple devices Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 105/568] hwmon: sy7636a: add alias Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 106/568] irqchip/loongson-pch-lpc: Use legacy domain for PCH-LPC IRQ controller Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 107/568] soc/tegra: fuse: Add Tegra114 nvmem cells and fuse lookups Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 108/568] mmc: sdhci-msm: Enable tuning for SDR50 mode for SD card Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 109/568] ACPICA: dispatcher: Use acpi_ds_clear_operands() in acpi_ds_call_control_method() Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 110/568] tee: allow a driver to allocate a tee_device without a pool Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 111/568] nvmet-fc: avoid scheduling association deletion twice Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 112/568] nvme-fc: use lock accessing port_state and rport state Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 113/568] video: backlight: lp855x_bl: Set correct EPROM start for LP8556 Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 114/568] tools/cpupower: fix error return value in cpupower_write_sysfs() Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 115/568] bpftool: Fix -Wuninitialized-const-pointer warnings with clang >= 21 Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 116/568] cpuidle: Fail cpuidle device registration if there is one already Greg Kroah-Hartman
2025-12-03 15:21 ` [PATCH 6.1 117/568] futex: Dont leak robust_list pointer on exec race Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 118/568] spi: rpc-if: Add resume support for RZ/G3E Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 119/568] clocksource/drivers/vf-pit: Replace raw_readl/writel to readl/writel Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 120/568] bpf: Clear pfmemalloc flag when freeing all fragments Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 121/568] nvme: Use non zero KATO for persistent discovery connections Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 122/568] uprobe: Do not emulate/sstep original instruction when ip is changed Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 123/568] hwmon: (asus-ec-sensors) increase timeout for locking ACPI mutex Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 124/568] hwmon: (dell-smm) Add support for Dell OptiPlex 7040 Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 125/568] tools/cpupower: Fix incorrect size in cpuidle_state_disable() Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 126/568] tools/power x86_energy_perf_policy: Fix incorrect fopen mode usage Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 127/568] tools/power x86_energy_perf_policy: Enhance HWP enable Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 128/568] tools/power x86_energy_perf_policy: Prefer driver HWP limits Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 129/568] mfd: stmpe: Remove IRQ domain upon removal Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 130/568] mfd: stmpe-i2c: Add missing MODULE_LICENSE Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 131/568] mfd: madera: Work around false-positive -Wininitialized warning Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 132/568] mfd: da9063: Split chip variant reading in two bus transactions Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 133/568] drm/amd/display: add more cyan skillfish devices Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 134/568] drm/amd/pm: Use cached metrics data on aldebaran Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 135/568] drm/amd/pm: Use cached metrics data on arcturus Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 136/568] drm/amdgpu/jpeg: Hold pg_lock before jpeg poweroff Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 137/568] drm/nouveau: replace snprintf() with scnprintf() in nvkm_snprintbf() Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 138/568] PCI: Disable MSI on RDC PCI to PCIe bridges Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 139/568] selftests/net: Replace non-standard __WORDSIZE with sizeof(long) * 8 Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 140/568] selftests/net: Ensure assert() triggers in psock_tpacket.c Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 141/568] drm/amdkfd: return -ENOTTY for unsupported IOCTLs Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 142/568] media: pci: ivtv: Dont create fake v4l2_fh Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 143/568] media: amphion: Delete v4l2_fh synchronously in .release() Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 144/568] drm/tidss: Use the crtc_* timings when programming the HW Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 145/568] drm/tidss: Set crtc modesetting parameters with adjusted mode Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 146/568] media: i2c: Kconfig: Ensure a dependency on HAVE_CLK for VIDEO_CAMERA_SENSOR Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 147/568] x86/vsyscall: Do not require X86_PF_INSTR to emulate vsyscall Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 148/568] net: stmmac: Check stmmac_hw_setup() in stmmac_resume() Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 149/568] ice: Dont use %pK through printk or tracepoints Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 150/568] thunderbolt: Use is_pciehp instead of is_hotplug_bridge Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 151/568] powerpc/eeh: Use result of error_detected() in uevent Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 152/568] s390/pci: Use pci_uevent_ers() in PCI recovery Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 153/568] bridge: Redirect to backup port when port is administratively down Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 154/568] scsi: ufs: host: mediatek: Assign power mode userdata before FASTAUTO mode change Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 155/568] scsi: ufs: host: mediatek: Change reset sequence for improved stability Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 156/568] scsi: ufs: host: mediatek: Fix invalid access in vccqx handling Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 157/568] net: ipv6: fix field-spanning memcpy warning in AH output Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 158/568] media: imon: make send_packet() more robust Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 159/568] drm/bridge: display-connector: dont set OP_DETECT for DisplayPorts Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 160/568] iio: adc: spear_adc: mask SPEAR_ADC_STATUS channel and avg sample before setting register Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 161/568] usb: gadget: f_ncm: Fix MAC assignment NCM ethernet Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 162/568] char: misc: Does not request module for miscdevice with dynamic minor Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 163/568] net: When removing nexthops, dont call synchronize_net if it is not necessary Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 164/568] net: Call trace_sock_exceed_buf_limit() for memcg failure with SK_MEM_RECV Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 165/568] PCI/P2PDMA: Fix incorrect pointer usage in devm_kfree() call Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 166/568] ALSA: usb-audio: Add validation of UAC2/UAC3 effect units Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 167/568] rds: Fix endianness annotation for RDS_MPATH_HASH Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 168/568] scsi: mpi3mr: Fix controller init failure on fault during queue creation Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 169/568] scsi: pm80xx: Fix race condition caused by static variables Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 170/568] extcon: adc-jack: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 171/568] net: phy: fixed_phy: let fixed_phy_unregister free the phy_device Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 172/568] drm/amdkfd: fix vram allocation failure for a special case Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 173/568] drm/amdkfd: Tie UNMAP_LATENCY to queue_preemption Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 174/568] media: fix uninitialized symbol warnings Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 175/568] drm/amdgpu: Respect max pixel clock for HDMI and DVI-D (v2) Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 176/568] mips: lantiq: danube: add missing properties to cpu node Greg Kroah-Hartman
2025-12-03 15:22 ` [PATCH 6.1 177/568] mips: lantiq: danube: add model to EASY50712 dts Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 178/568] mips: lantiq: danube: add missing device_type in pci node Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 179/568] mips: lantiq: xway: sysctrl: rename stp clock Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 180/568] mips: lantiq: danube: rename stp node on EASY50712 reference board Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 181/568] scsi: pm8001: Use int instead of u32 to store error codes Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 182/568] ptp: Limit time setting of PTP clocks Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 183/568] dmaengine: sh: setup_xref error handling Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 184/568] dmaengine: mv_xor: match alloc_wc and free_wc Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 185/568] dmaengine: dw-edma: Set status for callback_result Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 186/568] drm/msm/dsi/phy: Toggle back buffer resync after preparing PLL Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 187/568] drm/msm/dsi/phy_7nm: Fix missing initial VCO rate Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 188/568] drm/amdgpu: Allow kfd CRIU with no buffer objects Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 189/568] ipv6: Add sanity checks on ipv6_devconf.rpl_seg_enabled Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 190/568] net: nfc: nci: Increase NCI_DATA_TIMEOUT to 3000 ms Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 191/568] media: adv7180: Add missing lock in suspend callback Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 192/568] media: adv7180: Do not write format to device in set_fmt Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 193/568] media: adv7180: Only validate format in querystd Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 194/568] media: verisilicon: Explicitly disable selection api ioctls for decoders Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 195/568] ALSA: usb-audio: apply quirk for MOONDROP Quark2 Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 196/568] net: call cond_resched() less often in __release_sock() Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 197/568] smsc911x: add second read of EEPROM mac when possible corruption seen Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 198/568] iommu/amd: Skip enabling command/event buffers for kdump Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 199/568] drm/amd: add more cyan skillfish PCI ids Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 200/568] drm/amdgpu: dont enable SMU on cyan skillfish Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 201/568] drm/amdgpu: add support for cyan skillfish gpu_info Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 202/568] usb: gadget: f_hid: Fix zero length packet transfer Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 203/568] usb: cdns3: gadget: Use-after-free during failed initialization and exit of cdnsp gadget Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 204/568] drm/msm: make sure to not queue up recovery more than once Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 205/568] media: i2c: og01a1b: Specify monochrome media bus format instead of Bayer Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 206/568] scsi: ufs: host: mediatek: Enhance recovery on resume failure Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 207/568] net: phy: marvell: Fix 88e1510 downshift counter errata Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 208/568] ntfs3: pretend $Extend records as regular files Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 209/568] wifi: mac80211: Fix HE capabilities element check Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 210/568] phy: cadence: cdns-dphy: Enable lower resolutions in dphy Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 211/568] phy: rockchip: phy-rockchip-inno-csidphy: allow writes to grf register 0 Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 212/568] net: sh_eth: Disable WoL if system can not suspend Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 213/568] selftests: net: replace sleeps in fcnal-test with waits Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 214/568] media: redrat3: use int type to store negative error codes Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 215/568] selftests: traceroute: Use require_command() Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 216/568] netfilter: nf_reject: dont reply to icmp error messages Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 217/568] x86/kvm: Prefer native qspinlock for dedicated vCPUs irrespective of PV_UNHALT Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 218/568] selftests: Disable dad for ipv6 in fcnal-test.sh Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 219/568] eth: 8139too: Make 8139TOO_PIO depend on !NO_IOPORT_MAP Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 220/568] selftests: Replace sleep with slowwait Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 221/568] udp_tunnel: use netdev_warn() instead of netdev_WARN() Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 222/568] watchdog: s3c2410_wdt: Fix max_timeout being calculated larger Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 223/568] net/cls_cgroup: Fix task_get_classid() during qdisc run Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 224/568] wifi: mt76: mt7921: Add 160MHz beamformee capability for mt7922 device Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 225/568] ALSA: serial-generic: remove shared static buffer Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 226/568] drm/amdgpu: Use memdup_array_user in amdgpu_cs_wait_fences_ioctl Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 227/568] drm/amd: Avoid evicting resources at S5 Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 228/568] page_pool: always add GFP_NOWARN for ATOMIC allocations Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 229/568] ethernet: Extend device_get_mac_address() to use NVMEM Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 230/568] drm/amdgpu: reject gang submissions under SRIOV Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 231/568] selftests/Makefile: include $(INSTALL_DEP_TARGETS) in clean target to clean net/lib dependency Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 232/568] scsi: lpfc: Check return status of lpfc_reset_flush_io_context during TGT_RESET Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 233/568] scsi: lpfc: Remove ndlp kref decrement clause for F_Port_Ctrl in lpfc_cleanup Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 234/568] scsi: lpfc: Define size of debugfs entry for xri rebalancing Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 235/568] allow finish_no_open(file, ERR_PTR(-E...)) Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 236/568] usb: mon: Increase BUFF_MAX to 64 MiB to support multi-MB URBs Greg Kroah-Hartman
2025-12-03 15:23 ` [PATCH 6.1 237/568] usb: xhci: plat: Facilitate using autosuspend for xhci plat devices Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 238/568] ipv6: np->rxpmtu race annotation Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 239/568] jfs: Verify inode mode when loading from disk Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 240/568] jfs: fix uninitialized waitqueue in transaction manager Greg Kroah-Hartman
2025-12-03 16:29   ` syzbot
2025-12-03 15:24 ` [PATCH 6.1 241/568] ASoC: qcom: sc8280xp: explicitly set S16LE format in sc8280xp_be_hw_params_fixup() Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 242/568] net: ethernet: microchip: sparx5: make it selectable for ARCH_LAN969X Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 243/568] iommu/vt-d: Replace snprintf with scnprintf in dmar_latency_snapshot() Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 244/568] wifi: ath10k: Fix connection after GTK rekeying Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 245/568] net: intel: fm10k: Fix parameter idx set but not used Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 246/568] r8169: set EEE speed down ratio to 1 Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 247/568] PCI: cadence: Check for the existence of cdns_pcie::ops before using it Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 248/568] sparc/module: Add R_SPARC_UA64 relocation handling Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 249/568] sparc64: fix prototypes of reads[bwl]() Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 250/568] vfio: return -ENOTTY for unsupported device feature Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 251/568] PCI/PM: Skip resuming to D0 if device is disconnected Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 252/568] remoteproc: qcom: q6v5: Avoid handling handover twice Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 253/568] NFSv4: handle ERR_GRACE on delegation recalls Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 254/568] NFSv4.1: fix mount hang after CREATE_SESSION failure Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 255/568] nfs4_setup_readdir(): insufficient locking for ->d_parent->d_inode dereferencing Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 256/568] net: bridge: Install FDB for bridge MAC on VLAN 0 Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 257/568] scsi: libfc: Fix potential buffer overflow in fc_ct_ms_fill() Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 258/568] scsi: mpt3sas: Add support for 22.5 Gbps SAS link rate Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 259/568] fs: ext4: change GFP_KERNEL to GFP_NOFS to avoid deadlock Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 260/568] ext4: increase IO priority of fastcommit Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 261/568] net/mlx5e: Dont query FEC statistics when FEC is disabled Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 262/568] net: macb: avoid dealing with endianness in macb_set_hwaddr() Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 263/568] Bluetooth: btusb: Check for unexpected bytes when defragmenting HCI frames Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 264/568] Bluetooth: SCO: Fix UAF on sco_conn_free Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 265/568] Bluetooth: bcsp: receive data only if registered Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 266/568] ALSA: usb-audio: add mono main switch to Presonus S1824c Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 267/568] exfat: limit log print for IO error Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 268/568] 6pack: drop redundant locking and refcounting Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 269/568] page_pool: Clamp pool size to max 16K pages Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 270/568] orangefs: fix xattr related buffer overflow Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 271/568] ftrace: Fix softlockup in ftrace_module_enable Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 272/568] ksmbd: use sock_create_kern interface to create kernel socket Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 273/568] smb: client: transport: avoid reconnects triggered by pending task work Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 274/568] ACPICA: Update dsmethod.c to get rid of unused variable warning Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 275/568] RDMA/irdma: Fix SD index calculation Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 276/568] RDMA/irdma: Remove unused struct irdma_cq fields Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 277/568] RDMA/irdma: Set irdma_cq cq_num field during CQ create Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 278/568] RDMA/hns: Fix the modification of max_send_sge Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 279/568] RDMA/hns: Fix wrong WQE data when QP wraps around Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 280/568] btrfs: mark dirty extent range for out of bound prealloc extents Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 281/568] fs/hpfs: Fix error code for new_inode() failure in mkdir/create/mknod/symlink Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 282/568] um: Fix help message for ssl-non-raw Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 283/568] clk: sunxi-ng: sun6i-rtc: Add A523 specifics Greg Kroah-Hartman
2025-12-03 16:39   ` Chen-Yu Tsai
2025-12-04 16:18     ` Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 284/568] rtc: pcf2127: clear minute/second interrupt Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 285/568] ARM: at91: pm: save and restore ACR during PLL disable/enable Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 286/568] clk: at91: clk-master: Add check for divide by 3 Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 287/568] clk: at91: clk-sam9x60-pll: force write to PLL_UPDT register Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 288/568] clk: ti: am33xx: keep WKUP_DEBUGSS_CLKCTRL enabled Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 289/568] NTB: epf: Allow arbitrary BAR mapping Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 290/568] 9p: fix /sys/fs/9p/caches overwriting itself Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 291/568] cpufreq: tegra186: Initialize all cores to max frequencies Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 292/568] 9p: sysfs_init: dont hardcode error to ENOMEM Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 293/568] scsi: ufs: core: Include UTP error in INT_FATAL_ERRORS Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 294/568] ACPI: property: Return present device nodes only on fwnode interface Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 295/568] tools bitmap: Add missing asm-generic/bitsperlong.h include Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 296/568] tools: lib: thermal: dont preserve owner in install Greg Kroah-Hartman
2025-12-03 15:24 ` [PATCH 6.1 297/568] tools: lib: thermal: use pkg-config to locate libnl3 Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 298/568] fbdev: Add bounds checking in bit_putcs to fix vmalloc-out-of-bounds Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 299/568] kbuild: uapi: Strip comments before size type check Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 300/568] ASoC: meson: aiu-encoder-i2s: fix bit clock polarity Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 301/568] ceph: add checking of wait_for_completion_killable() return value Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 302/568] ALSA: hda/realtek: Audio disappears on HP 15-fc000 after warm boot again Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 303/568] Revert "wifi: ath10k: avoid unnecessary wait for service ready message" Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 304/568] Bluetooth: hci_event: validate skb length for unknown CC opcode Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 305/568] net: dsa: tag_brcm: legacy: fix untagged rx on unbridged ports for bcm63xx Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 306/568] selftests/net: fix out-of-order delivery of FIN in gro:tcp test Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 307/568] selftests/net: fix GRO coalesce test and add ext header coalesce tests Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 308/568] selftests/net: use destination options instead of hop-by-hop Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 309/568] netdevsim: add Makefile for selftests Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 310/568] selftests: netdevsim: Fix ethtool-coalesce.sh fail by installing ethtool-common.sh Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 311/568] net: vlan: sync VLAN features with lower device Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 312/568] net: dsa: b53: fix resetting speed and pause on forced link Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 313/568] net: dsa: b53: fix enabling ip multicast Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 314/568] net: dsa: b53: stop reading ARL entries if search is done Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 315/568] sctp: Hold RCU read lock while iterating over address list Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 316/568] sctp: Prevent TOCTOU out-of-bounds write Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 317/568] sctp: Hold sock lock while iterating over address list Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 318/568] net: usb: qmi_wwan: initialize MAC header offset in qmimux_rx_fixup Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 319/568] bnxt_en: Fix a possible memory leak in bnxt_ptp_init Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 320/568] net/mlx5e: SHAMPO, Fix skb size check for 64K pages Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 321/568] net: dsa: microchip: Fix reserved multicast address table programming Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 322/568] net: bridge: fix use-after-free due to MST port state bypass Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 323/568] net: bridge: fix MST static key usage Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 324/568] tracing: Fix memory leaks in create_field_var() Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 325/568] Bluetooth: MGMT: Fix OOB access in parse_adv_monitor_pattern() Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 326/568] rtc: rx8025: fix incorrect register reference Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 327/568] smb: client: validate change notify buffer before copy Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 328/568] lib/crypto: curve25519-hacl64: Fix older clang KASAN workaround for GCC Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 329/568] scsi: ufs: ufs-pci: Fix S0ix/S3 for Intel controllers Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 330/568] extcon: adc-jack: Cleanup wakeup source only if it was enabled Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 331/568] drm/amdgpu: Fix function header names in amdgpu_connectors.c Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 332/568] selftests: netdevsim: set test timeout to 10 minutes Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 333/568] drm/i915: Avoid lock inversion when pinning to GGTT on CHV/BXT+VTD Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 334/568] drm/i915: Fix conversion between clock ticks and nanoseconds Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 335/568] smb: client: fix refcount leak in smb2_set_path_attr Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 336/568] drm/amd: Fix suspend failure with secure display TA Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 337/568] compiler_types: Move unused static inline functions warning to W=2 Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 338/568] RISC-V: clear hot-unplugged cores from all task mm_cpumasks to avoid rfence errors Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 339/568] drm/amd/pm: Disable MCLK switching on SI at high pixel clocks Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 340/568] drm/amdgpu: Fix NULL pointer dereference in VRAM logic for APU devices Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 341/568] NFS4: Fix state renewals missing after boot Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 342/568] HID: quirks: avoid Cooler Master MM712 dongle wakeup bug Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 343/568] NFS: check if suid/sgid was cleared after a write as needed Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 344/568] smb/server: fix possible memory leak in smb2_read() Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 345/568] smb/server: fix possible refcount leak in smb2_sess_setup() Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 346/568] ASoC: max98090/91: fixed max98091 ALSA widget powering up/down Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 347/568] wifi: ath11k: Add tx ack signal support for management packets Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 348/568] wifi: ath11k: zero init info->status in wmi_process_mgmt_tx_comp() Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 349/568] selftests: net: local_termination: Wait for interfaces to come up Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 350/568] net: fec: correct rx_bytes statistic for the case SHIFT16 is set Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 351/568] Bluetooth: MGMT: cancel mesh send timer when hdev removed Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 352/568] Bluetooth: btusb: reorder cleanup in btusb_disconnect to avoid UAF Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 353/568] Bluetooth: 6lowpan: reset link-local header on ipv6 recv path Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 354/568] Bluetooth: 6lowpan: fix BDADDR_LE vs ADDR_LE_DEV address type confusion Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 355/568] Bluetooth: 6lowpan: Dont hold spin lock over sleeping functions Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 356/568] sctp: prevent possible shift-out-of-bounds in sctp_transport_update_rto Greg Kroah-Hartman
2025-12-03 15:25 ` [PATCH 6.1 357/568] net/smc: fix mismatch between CLC header and proposal Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 358/568] tipc: Fix use-after-free in tipc_mon_reinit_self() Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 359/568] net: mdio: fix resource leak in mdiobus_register_device() Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 360/568] wifi: mac80211: skip rate verification for not captured PSDUs Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 361/568] af_unix: Initialise scc_index in unix_add_edge() Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 362/568] net/sched: act_connmark: transition to percpu stats and rcu Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 363/568] net_sched: act_connmark: use RCU in tcf_connmark_dump() Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 364/568] net: sched: act_connmark: initialize struct tc_ife to fix kernel leak Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 365/568] net: sched: act_ife: initialize struct tc_ife to fix KMSAN kernel-infoleak Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 366/568] net/mlx5e: Fix maxrate wraparound in threshold between units Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 367/568] net/mlx5e: Fix wraparound in rate limiting for values above 255 Gbps Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 368/568] net/mlx5: Expose shared buffer registers bits and structs Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 369/568] net/mlx5e: Add API to query/modify SBPR and SBCM registers Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 370/568] net/mlx5e: Update shared buffer along with device buffer changes Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 371/568] net/mlx5e: Consider internal buffers size in port buffer calculations Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 372/568] net/mlx5e: Remove mlx5e_dbg() and msglvl support Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 373/568] net/mlx5e: Fix potentially misleading debug message Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 374/568] net_sched: limit try_bulk_dequeue_skb() batches Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 375/568] hsr: Fix supervision frame sending on HSRv0 Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 376/568] ACPI: CPPC: Check _CPC validity for only the online CPUs Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 377/568] ACPI: CPPC: Perform fast check switch only for " Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 378/568] ACPI: CPPC: Limit perf ctrs in PCC check only to " Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 379/568] Bluetooth: L2CAP: export l2cap_chan_hold for modules Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 380/568] acpi,srat: Fix incorrect device handle check for Generic Initiator Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 381/568] regulator: fixed: fix GPIO descriptor leak on register failure Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 382/568] ASoC: cs4271: Fix regulator leak on probe failure Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 383/568] ASoC: codecs: va-macro: fix resource leak in probe error path Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 384/568] drm/vmwgfx: Validate command header size against SVGA_CMD_MAX_DATASIZE Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 385/568] NFSv4: Fix an incorrect parameter when calling nfs4_call_sync() Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 386/568] ALSA: usb-audio: Fix NULL pointer dereference in snd_usb_mixer_controls_badd Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 387/568] bpf: Add bpf_prog_run_data_pointers() Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 388/568] softirq: Add trace points for tasklet entry/exit Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 389/568] Bluetooth: hci_sync: fix double free in hci_discovery_filter_clear() Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 390/568] espintcp: fix skb leaks Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 391/568] lib/crypto: arm/curve25519: Disable on CPU_BIG_ENDIAN Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 392/568] asm-generic: Unify uapi bitsperlong.h for arm64, riscv and loongarch Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 393/568] mtd: onenand: Pass correct pointer to IRQ handler Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 394/568] netfilter: nf_tables: reject duplicate device on updates Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 395/568] HID: hid-ntrig: Prevent memory leak in ntrig_report_version() Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 396/568] NFSD: free copynotify stateid in nfs4_free_ol_stateid() Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 397/568] gcov: add support for GCC 15 Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 398/568] ksmbd: close accepted socket when per-IP limit rejects connection Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 399/568] strparser: Fix signed/unsigned mismatch bug Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 400/568] dma-mapping: benchmark: Restore padding to ensure uABI remained consistent Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 401/568] LoongArch: Let {pte,pmd}_modify() record the status of _PAGE_DIRTY Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 402/568] ipv4: route: Prevent rt_bind_exception() from rebinding stale fnhe Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 403/568] wifi: mac80211: reject address change while connecting Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 404/568] fs/proc: fix uaf in proc_readdir_de() Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 405/568] mmc: sdhci-of-dwcmshc: Change DLL_STRBIN_TAPNUM_DEFAULT to 0x4 Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 406/568] ALSA: usb-audio: Fix potential overflow of PCM transfer buffer Greg Kroah-Hartman
2025-12-03 16:48   ` Takashi Iwai
2025-12-03 15:26 ` [PATCH 6.1 407/568] spi: Try to get ACPI GPIO IRQ earlier Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 408/568] LoongArch: Use physical addresses for CSR_MERRENTRY/CSR_TLBRENTRY Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 409/568] EDAC/altera: Handle OCRAM ECC enable after warm reset Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 410/568] EDAC/altera: Use INTTEST register for Ethernet and USB SBE injection Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 411/568] btrfs: do not update last_log_commit when logging inode due to a new name Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 412/568] selftests: mptcp: connect: trunc: read all recv data Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 413/568] virtio-net: fix received length check in big packets Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 414/568] scsi: ufs: core: Add a quirk to suppress link_startup_again Greg Kroah-Hartman
2025-12-04 16:53   ` Barry K. Nathan
2025-12-06 21:11     ` Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 415/568] scsi: ufs: ufs-pci: Set UFSHCD_QUIRK_PERFORM_LINK_STARTUP_ONCE for Intel ADL Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 416/568] iommufd: Dont overflow during division for dirty tracking Greg Kroah-Hartman
2025-12-03 15:26 ` [PATCH 6.1 417/568] KVM: SVM: Mark VMCB_LBR dirty when MSR_IA32_DEBUGCTLMSR is updated Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 418/568] net: netpoll: fix incorrect refcount handling causing incorrect cleanup Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 419/568] eventpoll: Replace rwlock with spinlock Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 420/568] mm, percpu: do not consider sleepable allocations atomic Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 421/568] isdn: mISDN: hfcsusb: fix memory leak in hfcsusb_probe() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 422/568] asm-generic: partially revert "Unify uapi bitsperlong.h for arm64, riscv and loongarch" Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 423/568] net/mlx5: Fix memory leak in error flow of port set buffer Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 424/568] net/sched: act_connmark: handle errno on tcf_idr_check_alloc Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 425/568] net/mlx5e: Do not update SBCM when prio2buffer command is invalid Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 426/568] net/mlx5e: Preserve shared buffer capacity during headroom updates Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 427/568] timers: Fix NULL function pointer race in timer_shutdown_sync() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 428/568] HID: quirks: work around VID/PID conflict for 0x4c4a/0x4155 Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 429/568] mtd: rawnand: cadence: fix DMA device NULL pointer dereference Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 430/568] mtdchar: fix integer overflow in read/write ioctls Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 431/568] exfat: check return value of sb_min_blocksize in exfat_read_boot_sector Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 432/568] mptcp: Disallow MPTCP subflows from sockmap Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 433/568] ata: libata-scsi: Add missing scsi_device_put() in ata_scsi_dev_rescan() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 434/568] be2net: pass wrb_params in case of OS2BMC Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 435/568] net: dsa: microchip: lan937x: Fix RGMII delay tuning Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 436/568] Input: cros_ec_keyb - fix an invalid memory access Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 437/568] Input: imx_sc_key - fix memory corruption on unload Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 438/568] Input: pegasus-notetaker - fix potential out-of-bounds access Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 439/568] nvme: nvme-fc: Ensure ->ioerr_work is cancelled in nvme_fc_delete_ctrl() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 440/568] scsi: sg: Do not sleep in atomic context Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 441/568] scsi: target: tcm_loop: Fix segfault in tcm_loop_tpg_address_show() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 442/568] MIPS: Malta: Fix !EVA SOC-it PCI MMIO Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 443/568] LoongArch: Dont panic if no valid cache info for PCI Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 444/568] mptcp: fix race condition in mptcp_schedule_work() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 445/568] mptcp: fix ack generation for fallback msk Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 446/568] mptcp: fix premature close in case of fallback Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 447/568] mptcp: avoid unneeded subflow-level drops Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 448/568] mptcp: do not fallback when OoO is present Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 449/568] drm/tegra: dc: Fix reference leak in tegra_dc_couple() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 450/568] drm/amdgpu: Skip emit de meta data on gfx11 with rs64 enabled Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 451/568] xfrm: Determine inner GSO type from packet inner protocol Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 452/568] mlxsw: spectrum: Fix memory leak in mlxsw_sp_flower_stats() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 453/568] gpu: host1x: Select context device based on attached IOMMU Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 454/568] drm/tegra: Add call to put_pid() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 455/568] net: dsa: hellcreek: fix missing error handling in LED registration Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 456/568] net: mlxsw: linecards: fix missing error check in mlxsw_linecard_devlink_info_get() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 457/568] net: openvswitch: remove never-working support for setting nsh fields Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 458/568] nvme-multipath: fix lockdep WARN due to partition scan work Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 459/568] s390/ctcm: Fix double-kfree Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 460/568] platform/x86/intel/speed_select_if: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 461/568] kernel.h: Move ARRAY_SIZE() to a separate header Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 462/568] net: qlogic/qede: fix potential out-of-bounds read in qede_tpa_cont() and qede_tpa_end() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 463/568] vsock: Ignore signal/timeout on connect() if already established Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 464/568] bcma: dont register devices disabled in OF Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 465/568] cifs: fix typo in enable_gcm_256 module parameter Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 466/568] scsi: core: Fix a regression triggered by scsi_host_busy() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 467/568] selftests: net: use BASH for bareudp testing Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 468/568] net: tls: Cancel RX async resync request on rcd_delta overflow Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 469/568] kconfig/mconf: Initialize the default locale at startup Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 470/568] kconfig/nconf: " Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 471/568] mm/secretmem: fix use-after-free race in fault handler Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 472/568] mm/mm_init: fix hash table order logging in alloc_large_system_hash() Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 473/568] ALSA: usb-audio: fix uac2 clock source at terminal parser Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 474/568] net: ethernet: ti: netcp: Standardize knav_dma_open_channel to return NULL on error Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 475/568] tracing/tools: Fix incorrcet short option in usage text for --threads Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 476/568] uio_hv_generic: Set event for all channels on the device Greg Kroah-Hartman
2025-12-03 15:27 ` [PATCH 6.1 477/568] mm/truncate: unmap large folio on split failure Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 478/568] maple_tree: fix tracepoint string pointers Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 479/568] mptcp: decouple mptcp fastclose from tcp close Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 480/568] mptcp: fix a race in mptcp_pm_del_add_timer() Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 481/568] mm/mempool: replace kmap_atomic() with kmap_local_page() Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 482/568] mm/mempool: fix poisoning order>0 pages with HIGHMEM Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 483/568] dt-bindings: pinctrl: toshiba,visconti: Fix number of items in groups Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 484/568] ata: libata-scsi: Fix system suspend for a security locked drive Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 485/568] HID: amd_sfh: Stop sensor before starting Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 486/568] selftests: mptcp: join: rm: set backup flag Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 487/568] selftests: mptcp: connect: fix fallback note due to OoO Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 488/568] pmdomain: samsung: plug potential memleak during probe Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 489/568] pmdomain: arm: scmi: Fix genpd leak on provider registration failure Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 490/568] pmdomain: imx: Fix reference count leak in imx_gpc_remove Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 491/568] filemap: cap PTE range to be created to allowed zero fill in folio_map_range() Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 492/568] mm/memory: do not populate page table entries beyond i_size Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 493/568] can: kvaser_usb: leaf: Fix potential infinite loop in command parsers Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 494/568] can: gs_usb: gs_usb_xmit_callback(): fix handling of failed transmitted URBs Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 495/568] can: gs_usb: gs_usb_receive_bulk_callback(): check actual_length before accessing header Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 496/568] Bluetooth: SMP: Fix not generating mackey and ltk when repairing Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 497/568] platform/x86: intel: punit_ipc: fix memory corruption Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 498/568] net: aquantia: Add missing descriptor cache invalidation on ATL2 Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 499/568] net: lan966x: Fix the initialization of taprio Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 500/568] net/mlx5e: Fix validation logic in rate limiting Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 501/568] net: sxgbe: fix potential NULL dereference in sxgbe_rx() Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 502/568] drm/amdgpu: fix cyan_skillfish2 gpu info fw handling Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 503/568] net: dsa: sja1105: simplify static configuration reload Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 504/568] net: dsa: sja1105: fix SGMII linking at 10M or 100M but not passing traffic Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 505/568] net: atlantic: fix fragment overflow handling in RX path Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 506/568] mailbox: mailbox-test: Fix debugfs_create_dir error checking Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 507/568] mailbox: Allow direct registration to a channel Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 508/568] mailbox: pcc: Use mbox_bind_client Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 509/568] mailbox: pcc: Add support for platform notification handling Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 510/568] mailbox: pcc: Support shared interrupt for multiple subspaces Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 511/568] ACPI: PCC: Add PCC shared memory region command and status bitfields Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 512/568] mailbox: pcc: Check before sending MCTP PCC response ACK Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 513/568] mailbox: pcc: Refactor error handling in irq handler into separate function Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 514/568] mailbox: pcc: dont zero error register Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 515/568] spi: bcm63xx: fix premature CS deassertion on RX-only transactions Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 516/568] Revert "perf/x86: Always store regs->ip in perf_callchain_kernel()" Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 517/568] iio: imu: st_lsm6dsx: fix array size for st_lsm6dsx_settings fields Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 518/568] iio:common:ssp_sensors: Fix an error handling path ssp_probe() Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 519/568] iio: accel: bmc150: Fix irq assumption regression Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 520/568] iio: accel: fix ADXL355 startup race condition Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 521/568] iio: adc: ad7280a: fix ad7280_store_balance_timer() Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 522/568] MIPS: mm: Prevent a TLB shutdown on initial uniquification Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 523/568] MIPS: mm: kmalloc tlb_vpn array to avoid stack overflow Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 524/568] ALSA: usb-audio: Add DSD quirk for LEAK Stereo 230 Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 525/568] atm/fore200e: Fix possible data race in fore200e_open() Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 526/568] can: sja1000: fix max irq loop handling Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 527/568] can: sun4i_can: sun4i_can_interrupt(): " Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 528/568] dm-verity: fix unreliable memory allocation Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 529/568] drivers/usb/dwc3: fix PCI parent check Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 530/568] smb: client: fix memory leak in cifs_construct_tcon() Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 531/568] thunderbolt: Add support for Intel Wildcat Lake Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 532/568] slimbus: ngd: Fix reference count leak in qcom_slim_ngd_notify_slaves Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 533/568] firmware: stratix10-svc: fix bug in saving controller data Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 534/568] serial: amba-pl011: prefer dma_mapping_error() over explicit address checking Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 535/568] most: usb: fix double free on late probe failure Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 536/568] usb: cdns3: Fix double resource release in cdns3_pci_probe Greg Kroah-Hartman
2025-12-03 15:28 ` [PATCH 6.1 537/568] usb: gadget: f_eem: Fix memory leak in eem_unwrap Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 538/568] usb: storage: Fix memory leak in USB bulk transport Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 539/568] USB: storage: Remove subclass and protocol overrides from Novatek quirk Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 540/568] usb: storage: sddr55: Reject out-of-bound new_pba Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 541/568] usb: uas: fix urb unmapping issue when the uas device is remove during ongoing data transfer Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 542/568] usb: dwc3: Fix race condition between concurrent dwc3_remove_requests() call paths Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 543/568] xhci: dbgtty: Fix data corruption when transmitting data form DbC to host Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 544/568] xhci: dbgtty: fix device unregister Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 545/568] USB: serial: ftdi_sio: add support for u-blox EVK-M101 Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 546/568] USB: serial: option: add support for Rolling RW101R-GL Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 547/568] drm: sti: fix device leaks at component probe Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 548/568] drm/amd/display: Check NULL before accessing Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 549/568] net: dsa: microchip: common: Fix checks on irq_find_mapping() Greg Kroah-Hartman
2025-12-03 15:29 ` Greg Kroah-Hartman [this message]
2025-12-03 15:29 ` [PATCH 6.1 551/568] libceph: prevent potential out-of-bounds writes in handle_auth_session_key() Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 552/568] libceph: replace BUG_ON with bounds check for map->max_osd Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 553/568] nfsd: Replace clamp_t in nfsd4_get_drc_mem() Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 554/568] usb: renesas_usbhs: Convert to platform remove callback returning void Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 555/568] usb: renesas_usbhs: Fix synchronous external abort on unbind Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 556/568] iio: adc: rtq6056: Correct the sign bit index Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 557/568] net: macb: fix unregister_netdev call order in macb_remove() Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 558/568] selftests: mptcp: join: endpoints: longer transfer Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 559/568] mptcp: fix duplicate reset on fastclose Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 560/568] mptcp: Fix proto fallback detection with BPF Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 561/568] staging: rtl8712: Remove driver using deprecated API wext Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 562/568] ksmbd: fix use-after-free in session logoff Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 563/568] usb: typec: ucsi: psy: Set max current to zero when disconnected Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 564/568] usb: udc: Add trace event for usb_gadget_set_state Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 565/568] usb: gadget: udc: fix use-after-free in usb_gadget_state_work Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 566/568] scsi: pm80xx: Set phy->enable_completion only when we Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 567/568] i2c: xgene-slimpro: Migrate to use generic PCC shmem related macros Greg Kroah-Hartman
2025-12-03 15:29 ` [PATCH 6.1 568/568] HID: core: Harden s32ton() against conversion to 0 bits Greg Kroah-Hartman
2025-12-03 16:52 ` [PATCH 6.1 000/568] 6.1.159-rc1 review Pavel Machek
2025-12-03 18:01 ` Florian Fainelli
2025-12-03 23:10 ` Hardik Garg
2025-12-03 23:55 ` Shuah Khan
2025-12-04  5:59 ` Peter Schneider
2025-12-04 10:43 ` Naresh Kamboju
2025-12-04 13:54   ` Adrian Hunter
2025-12-04 16:22     ` Greg Kroah-Hartman
2025-12-04 16:24   ` Greg Kroah-Hartman
2025-12-04 12:06 ` Mark Brown
2025-12-04 13:51   ` Ron Economos
2025-12-04 16:28     ` Greg Kroah-Hartman
2025-12-04 14:28   ` Naresh Kamboju

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=20251203152500.855360784@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Slava.Dubeyko@ibm.com \
    --cc=dhowells@redhat.com \
    --cc=idryomov@gmail.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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