public inbox for stable@vger.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, David Heidelberg <david@ixit.cz>,
	stable <stable@kernel.org>, Kuen-Han Tsai <khtsai@google.com>
Subject: [PATCH 6.19 170/378] Revert "usb: gadget: f_ncm: align net_device lifecycle with bind/unbind"
Date: Tue, 17 Mar 2026 17:32:07 +0100	[thread overview]
Message-ID: <20260317163013.264582950@linuxfoundation.org> (raw)
In-Reply-To: <20260317163006.959177102@linuxfoundation.org>

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

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

From: Kuen-Han Tsai <khtsai@google.com>

commit 37893bc5de2460c543ec1aa8250c37a305234054 upstream.

This reverts commit 56a512a9b4107079f68701e7d55da8507eb963d9.

This commit is being reverted as part of a series-wide revert.

By deferring the net_device allocation to the bind() phase, a single
function instance will spawn multiple network devices if it is symlinked
to multiple USB configurations.

This causes regressions for userspace tools (like the postmarketOS DHCP
daemon) that rely on reading the interface name (e.g., "usb0") from
configfs. Currently, configfs returns the template "usb%d", causing the
userspace network setup to fail.

Crucially, because this patch breaks the 1:1 mapping between the
function instance and the network device, this naming issue cannot
simply be patched. Configfs only exposes a single 'ifname' attribute per
instance, making it impossible to accurately report the actual interface
name when multiple underlying network devices can exist for that single
instance.

All configurations tied to the same function instance are meant to share
a single network device. Revert this change to restore the 1:1 mapping
by allocating the network device at the instance level (alloc_inst).

Reported-by: David Heidelberg <david@ixit.cz>
Closes: https://lore.kernel.org/linux-usb/70b558ea-a12e-4170-9b8e-c951131249af@ixit.cz/
Fixes: 56a512a9b410 ("usb: gadget: f_ncm: align net_device lifecycle with bind/unbind")
Cc: stable <stable@kernel.org>
Signed-off-by: Kuen-Han Tsai <khtsai@google.com>
Link: https://patch.msgid.link/20260309-f-ncm-revert-v2-3-ea2afbc7d9b2@google.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/usb/gadget/function/f_ncm.c |  128 ++++++++++++++++++------------------
 drivers/usb/gadget/function/u_ncm.h |    4 -
 2 files changed, 66 insertions(+), 66 deletions(-)

--- a/drivers/usb/gadget/function/f_ncm.c
+++ b/drivers/usb/gadget/function/f_ncm.c
@@ -83,11 +83,6 @@ static inline struct f_ncm *func_to_ncm(
 	return container_of(f, struct f_ncm, port.func);
 }
 
-static inline struct f_ncm_opts *func_to_ncm_opts(struct usb_function *f)
-{
-	return container_of(f->fi, struct f_ncm_opts, func_inst);
-}
-
 /*-------------------------------------------------------------------------*/
 
 /*
@@ -864,7 +859,6 @@ invalid:
 static int ncm_set_alt(struct usb_function *f, unsigned intf, unsigned alt)
 {
 	struct f_ncm		*ncm = func_to_ncm(f);
-	struct f_ncm_opts	*opts = func_to_ncm_opts(f);
 	struct usb_composite_dev *cdev = f->config->cdev;
 
 	/* Control interface has only altsetting 0 */
@@ -887,13 +881,12 @@ static int ncm_set_alt(struct usb_functi
 		if (alt > 1)
 			goto fail;
 
-		scoped_guard(mutex, &opts->lock)
-			if (opts->net) {
-				DBG(cdev, "reset ncm\n");
-				opts->net = NULL;
-				gether_disconnect(&ncm->port);
-				ncm_reset_values(ncm);
-			}
+		if (ncm->netdev) {
+			DBG(cdev, "reset ncm\n");
+			ncm->netdev = NULL;
+			gether_disconnect(&ncm->port);
+			ncm_reset_values(ncm);
+		}
 
 		/*
 		 * CDC Network only sends data in non-default altsettings.
@@ -926,8 +919,7 @@ static int ncm_set_alt(struct usb_functi
 			net = gether_connect(&ncm->port);
 			if (IS_ERR(net))
 				return PTR_ERR(net);
-			scoped_guard(mutex, &opts->lock)
-				opts->net = net;
+			ncm->netdev = net;
 		}
 
 		spin_lock(&ncm->lock);
@@ -1374,16 +1366,14 @@ err:
 static void ncm_disable(struct usb_function *f)
 {
 	struct f_ncm		*ncm = func_to_ncm(f);
-	struct f_ncm_opts	*opts = func_to_ncm_opts(f);
 	struct usb_composite_dev *cdev = f->config->cdev;
 
 	DBG(cdev, "ncm deactivated\n");
 
-	scoped_guard(mutex, &opts->lock)
-		if (opts->net) {
-			opts->net = NULL;
-			gether_disconnect(&ncm->port);
-		}
+	if (ncm->netdev) {
+		ncm->netdev = NULL;
+		gether_disconnect(&ncm->port);
+	}
 
 	if (ncm->notify->enabled) {
 		usb_ep_disable(ncm->notify);
@@ -1443,44 +1433,39 @@ static int ncm_bind(struct usb_configura
 {
 	struct usb_composite_dev *cdev = c->cdev;
 	struct f_ncm		*ncm = func_to_ncm(f);
-	struct f_ncm_opts	*ncm_opts = func_to_ncm_opts(f);
 	struct usb_string	*us;
 	int			status = 0;
 	struct usb_ep		*ep;
+	struct f_ncm_opts	*ncm_opts;
 
 	struct usb_os_desc_table	*os_desc_table __free(kfree) = NULL;
-	struct net_device		*netdev __free(free_gether_netdev) = NULL;
 	struct usb_request		*request __free(free_usb_request) = NULL;
 
 	if (!can_support_ecm(cdev->gadget))
 		return -EINVAL;
 
+	ncm_opts = container_of(f->fi, struct f_ncm_opts, func_inst);
+
 	if (cdev->use_os_string) {
 		os_desc_table = kzalloc(sizeof(*os_desc_table), GFP_KERNEL);
 		if (!os_desc_table)
 			return -ENOMEM;
 	}
 
-	netdev = gether_setup_default();
-	if (IS_ERR(netdev))
-		return -ENOMEM;
-
-	scoped_guard(mutex, &ncm_opts->lock) {
-		gether_apply_opts(netdev, &ncm_opts->net_opts);
-		netdev->mtu = ncm_opts->max_segment_size - ETH_HLEN;
+	mutex_lock(&ncm_opts->lock);
+	gether_set_gadget(ncm_opts->net, cdev->gadget);
+	if (!ncm_opts->bound) {
+		ncm_opts->net->mtu = (ncm_opts->max_segment_size - ETH_HLEN);
+		status = gether_register_netdev(ncm_opts->net);
 	}
+	mutex_unlock(&ncm_opts->lock);
 
-	gether_set_gadget(netdev, cdev->gadget);
-	status = gether_register_netdev(netdev);
 	if (status)
 		return status;
 
-	/* export host's Ethernet address in CDC format */
-	status = gether_get_host_addr_cdc(netdev, ncm->ethaddr,
-					  sizeof(ncm->ethaddr));
-	if (status < 12)
-		return -EINVAL;
-	ncm_string_defs[STRING_MAC_IDX].s = ncm->ethaddr;
+	ncm_opts->bound = true;
+
+	ncm_string_defs[1].s = ncm->ethaddr;
 
 	us = usb_gstrings_attach(cdev, ncm_strings,
 				 ARRAY_SIZE(ncm_string_defs));
@@ -1578,8 +1563,6 @@ static int ncm_bind(struct usb_configura
 		f->os_desc_n = 1;
 	}
 	ncm->notify_req = no_free_ptr(request);
-	ncm->netdev = no_free_ptr(netdev);
-	ncm->port.ioport = netdev_priv(ncm->netdev);
 
 	DBG(cdev, "CDC Network: IN/%s OUT/%s NOTIFY/%s\n",
 			ncm->port.in_ep->name, ncm->port.out_ep->name,
@@ -1594,19 +1577,19 @@ static inline struct f_ncm_opts *to_f_nc
 }
 
 /* f_ncm_item_ops */
-USB_ETHER_OPTS_ITEM(ncm);
+USB_ETHERNET_CONFIGFS_ITEM(ncm);
 
 /* f_ncm_opts_dev_addr */
-USB_ETHER_OPTS_ATTR_DEV_ADDR(ncm);
+USB_ETHERNET_CONFIGFS_ITEM_ATTR_DEV_ADDR(ncm);
 
 /* f_ncm_opts_host_addr */
-USB_ETHER_OPTS_ATTR_HOST_ADDR(ncm);
+USB_ETHERNET_CONFIGFS_ITEM_ATTR_HOST_ADDR(ncm);
 
 /* f_ncm_opts_qmult */
-USB_ETHER_OPTS_ATTR_QMULT(ncm);
+USB_ETHERNET_CONFIGFS_ITEM_ATTR_QMULT(ncm);
 
 /* f_ncm_opts_ifname */
-USB_ETHER_OPTS_ATTR_IFNAME(ncm);
+USB_ETHERNET_CONFIGFS_ITEM_ATTR_IFNAME(ncm);
 
 static ssize_t ncm_opts_max_segment_size_show(struct config_item *item,
 					      char *page)
@@ -1672,27 +1655,34 @@ static void ncm_free_inst(struct usb_fun
 	struct f_ncm_opts *opts;
 
 	opts = container_of(f, struct f_ncm_opts, func_inst);
+	if (opts->bound)
+		gether_cleanup(netdev_priv(opts->net));
+	else
+		free_netdev(opts->net);
 	kfree(opts->ncm_interf_group);
 	kfree(opts);
 }
 
 static struct usb_function_instance *ncm_alloc_inst(void)
 {
-	struct usb_function_instance *ret;
+	struct f_ncm_opts *opts;
 	struct usb_os_desc *descs[1];
 	char *names[1];
 	struct config_group *ncm_interf_group;
 
-	struct f_ncm_opts *opts __free(kfree) = kzalloc(sizeof(*opts), GFP_KERNEL);
+	opts = kzalloc(sizeof(*opts), GFP_KERNEL);
 	if (!opts)
 		return ERR_PTR(-ENOMEM);
-
-	opts->net = NULL;
 	opts->ncm_os_desc.ext_compat_id = opts->ncm_ext_compat_id;
-	gether_setup_opts_default(&opts->net_opts, "usb");
 
 	mutex_init(&opts->lock);
 	opts->func_inst.free_func_inst = ncm_free_inst;
+	opts->net = gether_setup_default();
+	if (IS_ERR(opts->net)) {
+		struct net_device *net = opts->net;
+		kfree(opts);
+		return ERR_CAST(net);
+	}
 	opts->max_segment_size = ETH_FRAME_LEN;
 	INIT_LIST_HEAD(&opts->ncm_os_desc.ext_prop);
 
@@ -1703,22 +1693,26 @@ static struct usb_function_instance *ncm
 	ncm_interf_group =
 		usb_os_desc_prepare_interf_dir(&opts->func_inst.group, 1, descs,
 					       names, THIS_MODULE);
-	if (IS_ERR(ncm_interf_group))
+	if (IS_ERR(ncm_interf_group)) {
+		ncm_free_inst(&opts->func_inst);
 		return ERR_CAST(ncm_interf_group);
+	}
 	opts->ncm_interf_group = ncm_interf_group;
 
-	ret = &opts->func_inst;
-	retain_and_null_ptr(opts);
-	return ret;
+	return &opts->func_inst;
 }
 
 static void ncm_free(struct usb_function *f)
 {
-	struct f_ncm_opts *opts = func_to_ncm_opts(f);
+	struct f_ncm *ncm;
+	struct f_ncm_opts *opts;
 
-	scoped_guard(mutex, &opts->lock)
-		opts->refcnt--;
-	kfree(func_to_ncm(f));
+	ncm = func_to_ncm(f);
+	opts = container_of(f->fi, struct f_ncm_opts, func_inst);
+	kfree(ncm);
+	mutex_lock(&opts->lock);
+	opts->refcnt--;
+	mutex_unlock(&opts->lock);
 }
 
 static void ncm_unbind(struct usb_configuration *c, struct usb_function *f)
@@ -1742,15 +1736,13 @@ static void ncm_unbind(struct usb_config
 
 	kfree(ncm->notify_req->buf);
 	usb_ep_free_request(ncm->notify, ncm->notify_req);
-
-	ncm->port.ioport = NULL;
-	gether_cleanup(netdev_priv(ncm->netdev));
 }
 
 static struct usb_function *ncm_alloc(struct usb_function_instance *fi)
 {
 	struct f_ncm		*ncm;
 	struct f_ncm_opts	*opts;
+	int status;
 
 	/* allocate and initialize one new instance */
 	ncm = kzalloc(sizeof(*ncm), GFP_KERNEL);
@@ -1758,12 +1750,22 @@ static struct usb_function *ncm_alloc(st
 		return ERR_PTR(-ENOMEM);
 
 	opts = container_of(fi, struct f_ncm_opts, func_inst);
+	mutex_lock(&opts->lock);
+	opts->refcnt++;
 
-	scoped_guard(mutex, &opts->lock)
-		opts->refcnt++;
+	/* export host's Ethernet address in CDC format */
+	status = gether_get_host_addr_cdc(opts->net, ncm->ethaddr,
+				      sizeof(ncm->ethaddr));
+	if (status < 12) { /* strlen("01234567890a") */
+		kfree(ncm);
+		mutex_unlock(&opts->lock);
+		return ERR_PTR(-EINVAL);
+	}
 
 	spin_lock_init(&ncm->lock);
 	ncm_reset_values(ncm);
+	ncm->port.ioport = netdev_priv(opts->net);
+	mutex_unlock(&opts->lock);
 	ncm->port.is_fixed = true;
 	ncm->port.supports_multi_frame = true;
 
--- a/drivers/usb/gadget/function/u_ncm.h
+++ b/drivers/usb/gadget/function/u_ncm.h
@@ -15,13 +15,11 @@
 
 #include <linux/usb/composite.h>
 
-#include "u_ether.h"
-
 struct f_ncm_opts {
 	struct usb_function_instance	func_inst;
 	struct net_device		*net;
+	bool				bound;
 
-	struct gether_opts		net_opts;
 	struct config_group		*ncm_interf_group;
 	struct usb_os_desc		ncm_os_desc;
 	char				ncm_ext_compat_id[16];



  parent reply	other threads:[~2026-03-17 16:50 UTC|newest]

Thread overview: 396+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-17 16:29 [PATCH 6.19 000/378] 6.19.9-rc1 review Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 001/378] remoteproc: qcom_wcnss: Fix reserved region mapping failure Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 002/378] powerpc/uaccess: Fix inline assembly for clang build on PPC32 Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 003/378] powerpc/kexec/core: use big-endian types for crash variables Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 004/378] powerpc/crash: adjust the elfcorehdr size Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 005/378] remoteproc: sysmon: Correct subsys_name_len type in QMI request Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 006/378] remoteproc: mediatek: Unprepare SCP clock during system suspend Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 007/378] powerpc: 83xx: km83xx: Fix keymile vendor prefix Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 008/378] smb/server: Fix another refcount leak in smb2_open() Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 009/378] scsi: storvsc: Fix scheduling while atomic on PREEMPT_RT Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 010/378] ACPI: PM: Save NVS memory on Lenovo G70-35 Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 011/378] scsi: ufs: core: Reset urgent_bkops_lvl to allow runtime PM power mode Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 012/378] fs: init flags_valid before calling vfs_fileattr_get Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 013/378] scsi: mpi3mr: Add NULL checks when resetting request and reply queues Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 014/378] ALSA: hda/realtek: Fix speaker pop on Star Labs StarFighter Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 015/378] unshare: fix unshare_fs() handling Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 016/378] wifi: mac80211: set default WMM parameters on all links Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 017/378] ACPI: OSI: Add DMI quirk for Acer Aspire One D255 Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 018/378] scsi: ses: Fix devices attaching to different hosts Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 019/378] ASoC: amd: yc: Add ASUS EXPERTBOOK BM1503CDA to quirk table Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 020/378] ASoC: cs42l43: Report insert for exotic peripherals Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 021/378] scsi: ufs: core: Fix possible NULL pointer dereference in ufshcd_add_command_trace() Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 022/378] scsi: ufs: core: Fix shift out of bounds when MAXQ=32 Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 023/378] ALSA: usb-audio: Avoid implicit feedback mode on DIYINHK USB Audio 2.0 Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 024/378] drm/amdgpu/vcn5: Add SMU dpm interface type Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 025/378] ALSA: usb-audio: Check max frame size for implicit feedback mode, too Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 026/378] nfs: return EISDIR on nfs3_proc_create if d_alias is a dir Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 027/378] drm/msm/dpu: Fix LM size on a number of platforms Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 028/378] drm/msm/dsi: fix hdisplay calculation when programming dsi registers Greg Kroah-Hartman
2026-03-17 16:44   ` Pengyu Luo
2026-03-17 16:29 ` [PATCH 6.19 029/378] xprtrdma: Decrement re_receiving on the early exit paths Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 030/378] btrfs: hold space_info->lock when clearing periodic reclaim ready Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 031/378] drm/msm/a6xx: Fix the bogus protect error on X2-85 Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 032/378] workqueue: Use POOL_BH instead of WQ_BH when checking pool flags Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 033/378] perf disasm: Fix off-by-one bug in outside check Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 034/378] drm/msm/a8xx: Fix ubwc config related to swizzling Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 035/378] dt-bindings: display/msm: qcom,sm8750-mdss: Fix model typo Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 036/378] net: dsa: realtek: rtl8365mb: remove ifOutDiscards from rx_packets Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 037/378] drm/msm/dsi: fix pclk rate calculation for bonded dsi Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 038/378] drm/amd/pm: add missing od setting PP_OD_FEATURE_ZERO_FAN_BIT for smu v13 Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 039/378] drm/amd/pm: add missing od setting PP_OD_FEATURE_ZERO_FAN_BIT for smu v14 Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 040/378] drm/amdgpu: Fix kernel-doc comments for some LUT properties Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 041/378] bonding: do not set usable_slaves for broadcast mode Greg Kroah-Hartman
2026-03-17 16:29 ` [PATCH 6.19 042/378] bonding: handle BOND_LINK_FAIL, BOND_LINK_BACK as valid link states Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 043/378] net/mlx5: Fix deadlock between devlink lock and esw->wq Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 044/378] net/mlx5: Fix crash when moving to switchdev mode Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 045/378] net/mlx5: Fix peer miss rules host disabled checks Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 046/378] net/mlx5e: Fix DMA FIFO desync on error CQE SQ recovery Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 047/378] net/mlx5e: RX, Fix XDP multi-buf frag counting for striding RQ Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 048/378] net/mlx5e: RX, Fix XDP multi-buf frag counting for legacy RQ Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 049/378] net/sched: teql: fix NULL pointer dereference in iptunnel_xmit on TEQL slave xmit Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 050/378] rxrpc, afs: Fix missing error pointer check after rxrpc_kernel_lookup_peer() Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 051/378] net: spacemit: Fix error handling in emac_alloc_rx_desc_buffers() Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 052/378] net: spacemit: Fix error handling in emac_tx_mem_map() Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 053/378] drm/sitronix/st7586: fix bad pixel data due to byte swap Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 054/378] firmware: cs_dsp: Fix fragmentation regression in firmware download Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 055/378] spi: amlogic: spifc-a4: Fix DMA mapping error handling Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 056/378] spi: rockchip-sfc: Fix double-free in remove() callback Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 057/378] ASoC: soc-core: drop delayed_work_pending() check before flush Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 058/378] ASoC: soc-core: flush delayed work before removing DAIs and widgets Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 059/378] ASoC: simple-card-utils: fix graph_util_is_ports0() for DT overlays Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 060/378] net: sfp: improve Huawei MA5671a fixup Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 061/378] serial: caif: hold tty->link reference in ldisc_open and ser_release Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 062/378] bnxt_en: Fix RSS table size check when changing ethtool channels Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 063/378] drm/i915/dp: Read ALPM caps after DPCD init Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 064/378] net: enetc: fix incorrect fallback PHY address handling Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 065/378] net: enetc: do not skip setting LaBCR[MDIO_PHYAD_PRTAD] for addr 0 Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 066/378] mctp: i2c: fix skb memory leak in receive path Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 067/378] can: hi311x: hi3110_open(): add check for hi3110_power_enable() return value Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 068/378] bonding: fix type confusion in bond_setup_by_slave() Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 069/378] mctp: route: hold key->lock in mctp_flow_prepare_output() Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 070/378] amd-xgbe: fix link status handling in xgbe_rx_adaptation Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 071/378] amd-xgbe: prevent CRC errors during RX adaptation with AN disabled Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 072/378] amd-xgbe: reset PHY settings before starting PHY Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 073/378] net: add xmit recursion limit to tunnel xmit functions Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 074/378] netfilter: nf_tables: Fix for duplicate device in netdev hooks Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 075/378] netfilter: nf_tables: always walk all pending catchall elements Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 076/378] netfilter: nft_set_pipapo: fix stack out-of-bounds read in pipapo_drop() Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 077/378] netfilter: x_tables: guard option walkers against 1-byte tail reads Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 078/378] netfilter: nfnetlink_queue: fix entry leak in bridge verdict error path Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 079/378] netfilter: nfnetlink_cthelper: fix OOB read in nfnl_cthelper_dump_table() Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 080/378] netfilter: xt_IDLETIMER: reject rev0 reuse of ALARM timer labels Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 081/378] perf annotate: Fix hashmap__new() error checking Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 082/378] regulator: pca9450: Correct interrupt type Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 083/378] regulator: pca9450: Correct probed name for PCA9452 Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 084/378] perf ftrace: Fix hashmap__new() error checking Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 085/378] sched: idle: Make skipping governor callbacks more consistent Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 086/378] nvme-pci: Fix slab-out-of-bounds in nvme_dbbuf_set Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 087/378] nvme-pci: Fix race bug in nvme_poll_irqdisable() Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 088/378] drivers: net: ice: fix devlink parameters get without irdma Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 089/378] iavf: fix PTP use-after-free during reset Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 090/378] iavf: fix incorrect reset handling in callbacks Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 091/378] accel/amdxdna: Fix runtime suspend deadlock when there is pending job Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 092/378] ASoC: codecs: rt1011: Use component to get the dapm context in spk_mode_put Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 093/378] i40e: fix src IP mask checks and memcpy argument names in cloud filter Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 094/378] e1000/e1000e: Fix leak in DMA error cleanup Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 095/378] page_pool: store detach_time as ktime_t to avoid false-negatives Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 096/378] net: bcmgenet: fix broken EEE by converting to phylib-managed state Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 097/378] ACPI: OSL: fix __iomem type on return from acpi_os_map_generic_address() Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 098/378] ASoC: amd: acp3x-rt5682-max9836: Add missing error check for clock acquisition Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 099/378] ASoC: detect empty DMI strings Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 100/378] drm/amdkfd: Unreserve bo if queue update failed Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 101/378] ASoC: amd: acp-mach-common: Add missing error check for clock acquisition Greg Kroah-Hartman
2026-03-17 16:30 ` [PATCH 6.19 102/378] io_uring: fix physical SQE bounds check for SQE_MIXED 128-byte ops Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 103/378] perf synthetic-events: Fix stale build ID in module MMAP2 records Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 104/378] net: bonding: Fix nd_tbl NULL dereference when IPv6 is disabled Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 105/378] net: dsa: realtek: Fix LED group port bit for non-zero LED group Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 106/378] neighbour: restore protocol != 0 check in pneigh update Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 107/378] net/mana: Null service_wq on setup error to prevent double destroy Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 108/378] net: ethernet: ti: am65-cpsw-nuss: Fix rx_filter value for PTP support Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 109/378] octeontx2-af: devlink: fix NIX RAS reporter recovery condition Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 110/378] octeontx2-af: devlink: fix NIX RAS reporter to use RAS interrupt status Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 111/378] net: prevent NULL deref in ip[6]tunnel_xmit() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 112/378] iio: imu: inv-mpu9150: fix irq ack preventing irq storms Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 113/378] usb: gadget: f_mass_storage: Fix potential integer overflow in check_command_size_in_blocks() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 114/378] drm/amdgpu: ensure no_hw_access is visible before MMIO Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 115/378] cgroup: fix race between task migration and iteration Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 116/378] sched_ext: Remove redundant css_put() in scx_cgroup_init() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 117/378] cgroup: Dont expose dead tasks in cgroup Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 118/378] ALSA: pcm: fix use-after-free on linked stream runtime in snd_pcm_drain() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 119/378] ALSA: usb-audio: Check endpoint numbers at parsing Scarlett2 mixer interfaces Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 120/378] can: gs_usb: gs_can_open(): always configure bitrates before starting device Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 121/378] net: usb: lan78xx: fix silent drop of packets with checksum errors Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 122/378] net: usb: lan78xx: fix TX byte statistics for small packets Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 123/378] net: usb: lan78xx: fix WARN in __netif_napi_del_locked on disconnect Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 124/378] net: usb: lan78xx: skip LTM configuration for LAN7850 Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 125/378] gpib: lpvo_usb: fix unintended binding of FTDI 8U232AM devices Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 126/378] rust_binder: fix oneway spam detection Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 127/378] rust_binder: check ownership before using vma Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 128/378] rust_binder: avoid reading the written value in offsets array Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 129/378] rust_binder: call set_notification_done() without proc lock Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 130/378] rust: kbuild: allow `unused_features` Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 131/378] rust: kbuild: emit dep-info into $(depfile) directly Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 132/378] rust: str: make NullTerminatedFormatter public Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 133/378] ata: libata-core: Add BRIDGE_OK quirk for QEMU drives Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 134/378] ASoC: amd: yc: Add DMI quirk for ASUS EXPERTBOOK PM1503CDA Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 135/378] KVM: arm64: Fix protected mode handling of pages larger than 4kB Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 136/378] KVM: x86: Introduce KVM_X86_QUIRK_VMCS12_ALLOW_FREEZE_IN_SMM Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 137/378] KVM: SVM: Initialize AVIC VMCB fields if AVIC is enabled with in-kernel APIC Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 138/378] KVM: SVM: Set/clear CR8 write interception when AVIC is (de)activated Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 139/378] KVM: arm64: pkvm: Fallback to level-3 mapping on host stage-2 fault Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 140/378] KVM: arm64: vgic: Pick EOIcount deactivations from AP-list tail Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 141/378] KVM: arm64: pkvm: Dont reprobe for ICH_VTR_EL2.TDS on CPU hotplug Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 142/378] USB: add QUIRK_NO_BOS for video capture several devices Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 143/378] usb/core/quirks: Add Huawei ME906S-device to wakeup quirk Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 144/378] USB: ezcap401 needs USB_QUIRK_NO_BOS to function on 10gbs usb speed Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 145/378] usb: xhci: Fix memory leak in xhci_disable_slot() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 146/378] usb: xhci: Prevent interrupt storm on host controller error (HCE) Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 147/378] xhci: Fix NULL pointer dereference when reading portli debugfs files Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 148/378] usb: yurex: fix race in probe Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 149/378] usb: dwc3: pci: add support for the Intel Nova Lake -H Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 150/378] usb: misc: uss720: properly clean up reference in uss720_probe() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 151/378] usb: core: dont power off roothub PHYs if phy_set_mode() fails Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 152/378] usb: cdc-acm: Restore CAP_BRK functionnality to CH343 Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 153/378] usb: roles: get usb role switch from parent only for usb-b-connector Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 154/378] usb: typec: altmode/displayport: set displayport signaling rate in configure message Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 155/378] USB: usbcore: Introduce usb_bulk_msg_killable() Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 156/378] USB: usbtmc: Use usb_bulk_msg_killable() with user-specified timeouts Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 157/378] USB: core: Limit the length of unkillable synchronous timeouts Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 158/378] usb: class: cdc-wdm: fix reordering issue in read code path Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 159/378] usb: renesas_usbhs: fix use-after-free in ISR during device removal Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 160/378] usb: gadget: f_hid: fix SuperSpeed descriptors Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 161/378] usb: mdc800: handle signal and read racing Greg Kroah-Hartman
2026-03-17 16:31 ` [PATCH 6.19 162/378] usb: gadget: uvc: fix interval_duration calculation Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 163/378] usb: image: mdc800: kill download URB on timeout Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 164/378] usb: gadget: f_tcm: Fix NULL pointer dereferences in nexus handling Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 165/378] usb: gadget: f_ncm: Fix atomic context locking issue Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 166/378] usb: legacy: ncm: Fix NPE in gncm_bind Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 167/378] Revert "usb: gadget: f_ncm: Fix atomic context locking issue" Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 168/378] Revert "usb: legacy: ncm: Fix NPE in gncm_bind" Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 169/378] Revert "usb: gadget: u_ether: Add auto-cleanup helper for freeing net_device" Greg Kroah-Hartman
2026-03-17 16:32 ` Greg Kroah-Hartman [this message]
2026-03-17 16:32 ` [PATCH 6.19 171/378] Revert "usb: gadget: u_ether: add gether_opts for config caching" Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 172/378] usb: gadget: f_ncm: Fix net_device lifecycle with device_move Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 173/378] mm/tracing: rss_stat: ensure curr is false from kthread context Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 174/378] ceph: fix i_nlink underrun during async unlink Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 175/378] ceph: do not skip the first folio of the next object in writeback Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 176/378] ceph: fix memory leaks in ceph_mdsc_build_path() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 177/378] ALSA: usb-audio: Improve Focusrite sample rate filtering Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 178/378] objtool/klp: Fix detection of corrupt static branch/call entries Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 179/378] objtool: Fix data alignment in elf_add_data() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 180/378] objtool: Fix another stack overflow in validate_branch() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 181/378] irqchip/riscv-aplic: Preserve APLIC states across suspend/resume Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 182/378] irqchip/riscv-aplic: Do not clear ACPI dependencies on probe failure Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 183/378] irqchip/riscv-aplic: Register syscore operations only once Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 184/378] time/jiffies: Mark jiffies_64_to_clock_t() notrace Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 185/378] sched/mmcid: Prevent CID stalls due to concurrent forks Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 186/378] sched/mmcid: Handle vfork()/CLONE_VM correctly Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 187/378] sched/mmcid: Remove pointless preempt guard Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 188/378] sched/mmcid: Avoid full tasklist walks Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 189/378] i3c: dw-i3c-master: Set SIR_REJECT in DAT on device attach and reattach Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 190/378] powerpc, perf: Check that current->mm is alive before getting user callchain Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 191/378] scsi: ufs: core: Fix SError in ufshcd_rtc_work() during UFS suspend Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 192/378] scsi: qla2xxx: Completely fix fcport double free Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 193/378] scsi: hisi_sas: Fix NULL pointer exception during user_scan() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 194/378] mm/kfence: fix KASAN hardware tag faults during late enablement Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 195/378] mmc: mmci: Fix device_node reference leak in of_get_dml_pipe_index() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 196/378] mm/kfence: disable KFENCE upon KASAN HW tags enablement Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 197/378] mmc: sdhci-brcmstb: use correct register offset for V1 pin_sel restore Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 198/378] mmc: dw_mmc-rockchip: Fix runtime PM support for internal phase support Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 199/378] mmc: core: Avoid bitfield RMW for claim/retune flags Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 200/378] ASoC: qcom: qdsp6: Fix q6apm remove ordering during ADSP stop and start Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 201/378] tipc: fix divide-by-zero in tipc_sk_filter_connect() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 202/378] firmware: stratix10-rsu: Fix NULL pointer dereference when RSU is disabled Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 203/378] kprobes: avoid crash when rmmod/insmod after ftrace killed Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 204/378] ceph: add a bunch of missing ceph_path_info initializers Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 205/378] libceph: Fix potential out-of-bounds access in ceph_handle_auth_reply() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 206/378] libceph: reject preamble if control segment is empty Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 207/378] libceph: prevent potential out-of-bounds reads in process_message_header() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 208/378] libceph: Use u32 for non-negative values in ceph_monmap_decode() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 209/378] libceph: admit message frames only in CEPH_CON_S_OPEN state Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 210/378] Revert "tcpm: allow looking for role_sw device in the main node" Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 211/378] Revert "ptdesc: remove references to folios from __pagetable_ctor() and pagetable_dtor()" Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 212/378] mm: Fix a hmm_range_fault() livelock / starvation problem Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 213/378] nsfs: tighten permission checks for ns iteration ioctls Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 214/378] liveupdate: luo_file: remember retrieve() status Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 215/378] kthread: consolidate kthread exit paths to prevent use-after-free Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 216/378] cpufreq: intel_pstate: Fix NULL pointer dereference in update_cpu_qos_request() Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 217/378] drm/amdgpu: add upper bound check on user inputs in signal ioctl Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 218/378] drm/amdgpu/userq: Fix reference leak in amdgpu_userq_wait_ioctl Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 219/378] drm/amdgpu: add upper bound check on user inputs in wait ioctl Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 220/378] drm/amd: Disable MES LR compute W/A Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 221/378] ipmi:si: Dont block module unload if the BMC is messed up Greg Kroah-Hartman
2026-03-17 16:32 ` [PATCH 6.19 222/378] ipmi:si: Use a long timeout when the BMC is misbehaving Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 223/378] drm/bridge: samsung-dsim: Fix memory leak in error path Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 224/378] drm/bridge: ti-sn65dsi86: Enable HPD polling if IRQ is not used Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 225/378] ipmi:si: Handle waiting messages when BMC failure detected Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 226/378] nouveau/gsp: drop WARN_ON in ACPI probes Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 227/378] drm/i915/alpm: ALPM disable fixes Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 228/378] gpiolib: normalize the return value of gc->get() on behalf of buggy drivers Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 229/378] ipmi:si: Fix check for a misbehaving BMC Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 230/378] drm/xe/sync: Fix user fence leak on alloc failure Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 231/378] drm/xe/sync: Cleanup partially initialized sync on parse failure Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 232/378] s390/pfault: Fix virtual vs physical address confusion Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 233/378] bpf: Fix kprobe_multi cookies access in show_fdinfo callback Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 234/378] arm64: gcs: Honour mprotect(PROT_NONE) on shadow stack mappings Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 235/378] nfsd: Fix cred ref leak in nfsd_nl_listener_set_doit() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 236/378] device property: Allow secondary lookup in fwnode_get_next_child_node() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 237/378] irqchip/gic-v3-its: Limit number of per-device MSIs to the range the ITS supports Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 238/378] btrfs: fix chunk map leak in btrfs_map_block() after btrfs_chunk_map_num_copies() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 239/378] sched_ext: Disable preemption between scx_claim_exit() and kicking helper work Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 240/378] sched_ext: Fix starvation of scx_enable() under fair-class saturation Greg Kroah-Hartman
2026-03-19  7:11   ` Jiri Slaby
2026-03-19  9:29     ` Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 241/378] iomap: dont mark folio uptodate if read IO has bytes pending Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 242/378] iomap: reject delalloc mappings during writeback Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 243/378] nsfs: tighten permission checks for handle opening Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 244/378] nstree: tighten permission checks for listing Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 245/378] ice: reintroduce retry mechanism for indirect AQ Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 246/378] kunit: irq: Ensure timer doesnt fire too frequently Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 247/378] ixgbevf: fix link setup issue Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 248/378] mm: memfd_luo: always make all folios uptodate Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 249/378] mm: memfd_luo: always dirty all folios Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 250/378] mm/huge_memory: fix a folio_split() race condition with folio_try_get() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 251/378] mm/damon/core: clear walk_control on inactive context in damos_walk() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 252/378] mm/slab: fix an incorrect check in obj_exts_alloc_size() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 253/378] staging: sm750fb: add missing pci_release_region on error and removal Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 254/378] staging: rtl8723bs: properly validate the data in rtw_get_ie_ex() Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 255/378] staging: rtl8723bs: fix potential out-of-bounds read in rtw_restruct_wmm_ie Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 256/378] pinctrl: cy8c95x0: Dont miss reading the last bank registers Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 257/378] selftests: fix mntns iteration selftests Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 258/378] media: dvb-net: fix OOB access in ULE extension header tables Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 259/378] net: mana: Ring doorbell at 4 CQ wraparounds Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 260/378] net: Fix rcu_tasks stall in threaded busypoll Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 261/378] ice: fix retry for AQ command 0x06EE Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 262/378] fgraph: Fix thresh_return clear per-task notrace Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 263/378] tracing: Fix syscall events activation by ensuring refcount hits zero Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 264/378] net/tcp-ao: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 265/378] fgraph: Fix thresh_return nosleeptime double-adjust Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 266/378] net/tcp-md5: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 267/378] batman-adv: Avoid double-rtnl_lock ELP metric worker Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 268/378] drm/xe/xe2_hpg: Correct implementation of Wa_16025250150 Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 269/378] pmdomain: rockchip: Fix PD_VCODEC for RK3588 Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 270/378] parisc: Increase initial mapping to 64 MB with KALLSYMS Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 271/378] nouveau/dpcd: return EBUSY for aux xfer if the device is asleep Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 272/378] arm64: mm: Add PTE_DIRTY back to PAGE_KERNEL* to fix kexec/hibernation Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 273/378] hwmon: (pmbus/q54sj108a2) fix stack overflow in debugfs read Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 274/378] io_uring/zcrx: use READ_ONCE with user shared RQEs Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 275/378] parisc: Fix initial page table creation for boot Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 276/378] arm64: contpte: fix set_access_flags() no-op check for SMMU/ATS faults Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 277/378] parisc: Check kernel mapping earlier at bootup Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 278/378] io_uring/net: reject SEND_VECTORIZED when unsupported Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 279/378] regulator: pf9453: Respect IRQ trigger settings from firmware Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 280/378] pmdomain: bcm: bcm2835-power: Fix broken reset status read Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 281/378] drm/ttm: Fix ttm_pool_beneficial_order() return type Greg Kroah-Hartman
2026-03-17 16:33 ` [PATCH 6.19 282/378] crypto: ccp - allow callers to use HV-Fixed page API when SEV is disabled Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 283/378] s390/stackleak: Fix __stackleak_poison() inline assembly constraint Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 284/378] ata: libata-core: Disable LPM on ST1000DM010-2EP102 Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 285/378] s390/xor: Fix xor_xc_2() inline assembly constraints Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 286/378] drm/amd/display: Fallback to boot snapshot for dispclk Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 287/378] s390/xor: Fix xor_xc_5() inline assembly Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 288/378] slab: distinguish lock and trylock for sheaf_flush_main() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 289/378] memcg: fix slab accounting in refill_obj_stock() trylock path Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 290/378] ksmbd: fix use-after-free in smb_lazy_parent_lease_break_close() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 291/378] smb: server: fix use-after-free in smb2_open() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 292/378] ksmbd: Dont log keys in SMB3 signing and encryption key generation Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 293/378] ksmbd: fix use-after-free by using call_rcu() for oplock_info Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 294/378] net: mctp: fix device leak on probe failure Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 295/378] net: nexthop: fix percpu use-after-free in remove_nh_grp_entry Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 296/378] net: ncsi: fix skb leak in error paths Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 297/378] net: ethernet: arc: emac: quiesce interrupts before requesting IRQ Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 298/378] net: dsa: microchip: Fix error path in PTP IRQ setup Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 299/378] net: macb: Shuffle the tx ring before enabling tx Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 300/378] drm/amd/pm: remove invalid gpu_metrics.energy_accumulator on smu v13.0.x Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 301/378] drm/amdgpu: Fix use-after-free race in VM acquire Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 302/378] drm/amd: Set num IP blocks to 0 if discovery fails Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 303/378] drm/amd: Fix NULL pointer dereference in device cleanup Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 304/378] drm/bridge: ti-sn65dsi83: fix CHA_DSI_CLK_RANGE rounding Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 305/378] drm/bridge: ti-sn65dsi83: halve horizontal syncs for dual LVDS output Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 306/378] drm/i915: Fix potential overflow of shmem scatterlist length Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 307/378] drm/i915/psr: Repeat Selective Update area alignment Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 308/378] drm/msm: Fix dma_free_attrs() buffer size Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 309/378] drm/amd: Fix a few more NULL pointer dereference in device cleanup Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 310/378] drm/msm/dpu: Correct the SA8775P intr_underrun/intr_underrun index Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 311/378] drm/i915/vrr: Configure VRR timings after enabling TRANS_DDI_FUNC_CTL Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 312/378] tracing: Fix enabling multiple events on the kernel command line and bootconfig Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 313/378] tracing: Fix trace_buf_size= cmdline parameter with sizes >= 2G Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 314/378] net-shapers: dont free reply skb after genlmsg_reply() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 315/378] qmi_wwan: allow max_mtu above hard_mtu to control rx_urb_size Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 316/378] can: dev: keep the max bitrate error at 5% Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 317/378] io_uring/kbuf: check if target buffer list is still legacy on recycle Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 318/378] cifs: make default value of retrans as zero Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 319/378] xfs: fix integer overflow in bmap intent sort comparator Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 320/378] xfs: fix returned valued from xfs_defer_can_append Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 321/378] xfs: fix undersized l_iclog_roundoff values Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 322/378] xfs: ensure dquot item is deleted from AIL only after log shutdown Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 323/378] sched_ext: Fix enqueue_task_scx() truncation of upper enqueue flags Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 324/378] s390/zcrypt: Enable AUTOSEL_DOM for CCA serialnr sysfs attribute Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 325/378] dt-bindings: display: msm: Fix reg ranges and clocks on Glymur Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 326/378] ublk: fix NULL pointer dereference in ublk_ctrl_set_size() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 327/378] s390/dasd: Move quiesce state with pprc swap Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 328/378] s390/dasd: Copy detected format information to secondary device Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 329/378] powerpc/pseries: Correct MSI allocation tracking Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 330/378] powerpc64/bpf: fix kfunc call support Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 331/378] powerpc64/bpf: fix the address returned by bpf_get_func_ip Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 332/378] lib/bootconfig: fix off-by-one in xbc_verify_tree() unclosed brace error Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 333/378] scsi: core: Fix error handling for scsi_alloc_sdev() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 334/378] x86/apic: Disable x2apic on resume if the kernel expects so Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 335/378] kprobes: Remove unneeded warnings from __arm_kprobe_ftrace() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 336/378] lib/bootconfig: fix snprintf truncation check in xbc_node_compose_key_after() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 337/378] lib/bootconfig: check bounds before writing in __xbc_open_brace() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 338/378] smb: client: fix atomic open with O_DIRECT & O_SYNC Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 339/378] smb: client: fix in-place encryption corruption in SMB2_write() Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 340/378] smb: client: fix iface port assignment in parse_server_interfaces Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 341/378] btrfs: fix transaction abort when snapshotting received subvolumes Greg Kroah-Hartman
2026-03-17 16:34 ` [PATCH 6.19 342/378] btrfs: fix transaction abort on file creation due to name hash collision Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 343/378] btrfs: fix transaction abort on set received ioctl due to item overflow Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 344/378] btrfs: add missing RCU unlock in error path in try_release_subpage_extent_buffer() Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 345/378] btrfs: abort transaction on failure to update root in the received subvol ioctl Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 346/378] iio: dac: ds4424: reject -128 RAW value Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 347/378] iio: frequency: adf4377: Fix duplicated soft reset mask Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 348/378] iio: chemical: sps30_serial: fix buffer size in sps30_serial_read_meas() Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 349/378] iio: chemical: sps30_i2c: fix buffer size in sps30_i2c_read_meas() Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 350/378] iio: magnetometer: tlv493d: remove erroneous shift in X-axis data Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 351/378] iio: potentiometer: mcp4131: fix double application of wiper shift Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 352/378] iio: chemical: bme680: Fix measurement wait duration calculation Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 353/378] iio: buffer: Fix wait_queue not being removed Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 354/378] iio: gyro: mpu3050-core: fix pm_runtime error handling Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 355/378] iio: imu: adis: Fix NULL pointer dereference in adis_init Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 356/378] iio: gyro: mpu3050-i2c: fix pm_runtime error handling Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 357/378] iio: imu: inv_icm45600: fix regulator put warning when probe fails Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 358/378] iio: light: bh1780: fix PM runtime leak on error path Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 359/378] iio: imu: inv_icm45600: fix INT1 drive bit inverted Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 360/378] iio: imu: inv_icm42600: fix odr switch to the same value Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 361/378] iio: imu: inv_icm42600: fix odr switch when turning buffer off Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 362/378] iio: proximity: hx9023s: fix assignment order for __counted_by Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 363/378] iio: proximity: hx9023s: Protect against division by zero in set_samp_freq Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 364/378] i3c: mipi-i3c-hci: Use ETIMEDOUT instead of ETIME for timeout errors Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 365/378] i3c: mipi-i3c-hci: Factor out DMA mapping from queuing path Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 366/378] i3c: mipi-i3c-hci: Consolidate spinlocks Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 367/378] i3c: mipi-i3c-hci: Restart DMA ring correctly after dequeue abort Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 368/378] i3c: mipi-i3c-hci: Add missing TID field to no-op command descriptor Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 369/378] i3c: mipi-i3c-hci: Fix race in DMA ring dequeue Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 370/378] i3c: mipi-i3c-hci: Correct RING_CTRL_ABORT handling in DMA dequeue Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 371/378] mm/damon: rename DAMON_MIN_REGION to DAMON_MIN_REGION_SZ Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 372/378] mm/damon: rename min_sz_region of damon_ctx to min_region_sz Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 373/378] mm/damon/core: disallow non-power of two min_region_sz Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 374/378] KVM: arm64: gic: Set vgic_model before initing private IRQs Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 375/378] KVM: arm64: Eagerly init vgic dist/redist on vgic creation Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 376/378] io_uring: ensure ctx->rings is stable for task work flags manipulation Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 377/378] io_uring/eventfd: use ctx->rings_rcu for flags checking Greg Kroah-Hartman
2026-03-17 16:35 ` [PATCH 6.19 378/378] cxl/acpi: Fix CXL_ACPI and CXL_PMEM Kconfig tristate mismatch Greg Kroah-Hartman
2026-03-24 16:45   ` Keith Busch
2026-03-24 16:49     ` Dave Jiang
2026-03-25  8:56       ` Greg Kroah-Hartman
2026-03-25 15:00         ` Dave Jiang
2026-03-17 17:47 ` [PATCH 6.19 000/378] 6.19.9-rc1 review Ronald Warsow
2026-03-17 20:12   ` Peter Schneider
2026-03-18 11:54   ` Greg Kroah-Hartman
2026-03-17 20:18 ` Brett A C Sheffield
2026-03-18  0:50 ` Miguel Ojeda
2026-03-18  7:16 ` Shung-Hsi Yu
2026-03-18  8:17 ` Jon Hunter
2026-03-18  9:02 ` Ron Economos
2026-03-18 10:22   ` Luna Jernberg
2026-03-18 11:47 ` Takeshi Ogasawara

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=20260317163013.264582950@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=david@ixit.cz \
    --cc=khtsai@google.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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