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, Ma Ke <make24@iscas.ac.cn>,
	Jonas Gorski <jonas.gorski@gmail.com>,
	Vladimir Oltean <vladimir.oltean@nxp.com>,
	Paolo Abeni <pabeni@redhat.com>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.18 035/312] net: dsa: properly keep track of conduit reference
Date: Tue,  6 Jan 2026 18:01:49 +0100	[thread overview]
Message-ID: <20260106170549.126631898@linuxfoundation.org> (raw)
In-Reply-To: <20260106170547.832845344@linuxfoundation.org>

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

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

From: Vladimir Oltean <vladimir.oltean@nxp.com>

[ Upstream commit 06e219f6a706c367c93051f408ac61417643d2f9 ]

Problem description
-------------------

DSA has a mumbo-jumbo of reference handling of the conduit net device
and its kobject which, sadly, is just wrong and doesn't make sense.

There are two distinct problems.

1. The OF path, which uses of_find_net_device_by_node(), never releases
   the elevated refcount on the conduit's kobject. Nominally, the OF and
   non-OF paths should result in objects having identical reference
   counts taken, and it is already suspicious that
   dsa_dev_to_net_device() has a put_device() call which is missing in
   dsa_port_parse_of(), but we can actually even verify that an issue
   exists. With CONFIG_DEBUG_KOBJECT_RELEASE=y, if we run this command
   "before" and "after" applying this patch:

(unbind the conduit driver for net device eno2)
echo 0000:00:00.2 > /sys/bus/pci/drivers/fsl_enetc/unbind

we see these lines in the output diff which appear only with the patch
applied:

kobject: 'eno2' (ffff002009a3a6b8): kobject_release, parent 0000000000000000 (delayed 1000)
kobject: '109' (ffff0020099d59a0): kobject_release, parent 0000000000000000 (delayed 1000)

2. After we find the conduit interface one way (OF) or another (non-OF),
   it can get unregistered at any time, and DSA remains with a long-lived,
   but in this case stale, cpu_dp->conduit pointer. Holding the net
   device's underlying kobject isn't actually of much help, it just
   prevents it from being freed (but we never need that kobject
   directly). What helps us to prevent the net device from being
   unregistered is the parallel netdev reference mechanism (dev_hold()
   and dev_put()).

Actually we actually use that netdev tracker mechanism implicitly on
user ports since commit 2f1e8ea726e9 ("net: dsa: link interfaces with
the DSA master to get rid of lockdep warnings"), via netdev_upper_dev_link().
But time still passes at DSA switch probe time between the initial
of_find_net_device_by_node() code and the user port creation time, time
during which the conduit could unregister itself and DSA wouldn't know
about it.

So we have to run of_find_net_device_by_node() under rtnl_lock() to
prevent that from happening, and release the lock only with the netdev
tracker having acquired the reference.

Do we need to keep the reference until dsa_unregister_switch() /
dsa_switch_shutdown()?
1: Maybe yes. A switch device will still be registered even if all user
   ports failed to probe, see commit 86f8b1c01a0a ("net: dsa: Do not
   make user port errors fatal"), and the cpu_dp->conduit pointers
   remain valid.  I haven't audited all call paths to see whether they
   will actually use the conduit in lack of any user port, but if they
   do, it seems safer to not rely on user ports for that reference.
2. Definitely yes. We support changing the conduit which a user port is
   associated to, and we can get into a situation where we've moved all
   user ports away from a conduit, thus no longer hold any reference to
   it via the net device tracker. But we shouldn't let it go nonetheless
   - see the next change in relation to dsa_tree_find_first_conduit()
   and LAG conduits which disappear.
   We have to be prepared to return to the physical conduit, so the CPU
   port must explicitly keep another reference to it. This is also to
   say: the user ports and their CPU ports may not always keep a
   reference to the same conduit net device, and both are needed.

As for the conduit's kobject for the /sys/class/net/ entry, we don't
care about it, we can release it as soon as we hold the net device
object itself.

History and blame attribution
-----------------------------

The code has been refactored so many times, it is very difficult to
follow and properly attribute a blame, but I'll try to make a short
history which I hope to be correct.

We have two distinct probing paths:
- one for OF, introduced in 2016 in commit 83c0afaec7b7 ("net: dsa: Add
  new binding implementation")
- one for non-OF, introduced in 2017 in commit 71e0bbde0d88 ("net: dsa:
  Add support for platform data")

These are both complete rewrites of the original probing paths (which
used struct dsa_switch_driver and other weird stuff, instead of regular
devices on their respective buses for register access, like MDIO, SPI,
I2C etc):
- one for OF, introduced in 2013 in commit 5e95329b701c ("dsa: add
  device tree bindings to register DSA switches")
- one for non-OF, introduced in 2008 in commit 91da11f870f0 ("net:
  Distributed Switch Architecture protocol support")

except for tiny bits and pieces like dsa_dev_to_net_device() which were
seemingly carried over since the original commit, and used to this day.

The point is that the original probing paths received a fix in 2015 in
the form of commit 679fb46c5785 ("net: dsa: Add missing master netdev
dev_put() calls"), but the fix never made it into the "new" (dsa2)
probing paths that can still be traced to today, and the fixed probing
path was later deleted in 2019 in commit 93e86b3bc842 ("net: dsa: Remove
legacy probing support").

That is to say, the new probing paths were never quite correct in this
area.

The existence of the legacy probing support which was deleted in 2019
explains why dsa_dev_to_net_device() returns a conduit with elevated
refcount (because it was supposed to be released during
dsa_remove_dst()). After the removal of the legacy code, the only user
of dsa_dev_to_net_device() calls dev_put(conduit) immediately after this
function returns. This pattern makes no sense today, and can only be
interpreted historically to understand why dev_hold() was there in the
first place.

Change details
--------------

Today we have a better netdev tracking infrastructure which we should
use. Logically netdev_hold() belongs in common code
(dsa_port_parse_cpu(), where dp->conduit is assigned), but there is a
tradeoff to be made with the rtnl_lock() section which would become a
bit too long if we did that - dsa_port_parse_cpu() also calls
request_module(). So we duplicate a bit of logic in order for the
callers of dsa_port_parse_cpu() to be the ones responsible of holding
the conduit reference and releasing it on error. This shortens the
rtnl_lock() section significantly.

In the dsa_switch_probe() error path, dsa_switch_release_ports() will be
called in a number of situations, one being where dsa_port_parse_cpu()
maybe didn't get the chance to run at all (a different port failed
earlier, etc). So we have to test for the conduit being NULL prior to
calling netdev_put().

There have still been so many transformations to the code since the
blamed commits (rename master -> conduit, commit 0650bf52b31f ("net:
dsa: be compatible with masters which unregister on shutdown")), that it
only makes sense to fix the code using the best methods available today
and see how it can be backported to stable later. I suspect the fix
cannot even be backported to kernels which lack dsa_switch_shutdown(),
and I suspect this is also maybe why the long-lived conduit reference
didn't make it into the new DSA probing paths at the time (problems
during shutdown).

Because dsa_dev_to_net_device() has a single call site and has to be
changed anyway, the logic was just absorbed into the non-OF
dsa_port_parse().

Tested on the ocelot/felix switch and on dsa_loop, both on the NXP
LS1028A with CONFIG_DEBUG_KOBJECT_RELEASE=y.

Reported-by: Ma Ke <make24@iscas.ac.cn>
Closes: https://lore.kernel.org/netdev/20251214131204.4684-1-make24@iscas.ac.cn/
Fixes: 83c0afaec7b7 ("net: dsa: Add new binding implementation")
Fixes: 71e0bbde0d88 ("net: dsa: Add support for platform data")
Reviewed-by: Jonas Gorski <jonas.gorski@gmail.com>
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Link: https://patch.msgid.link/20251215150236.3931670-1-vladimir.oltean@nxp.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 include/net/dsa.h |  1 +
 net/dsa/dsa.c     | 59 +++++++++++++++++++++++++++--------------------
 2 files changed, 35 insertions(+), 25 deletions(-)

diff --git a/include/net/dsa.h b/include/net/dsa.h
index d73ea0880066..5cb456bf4639 100644
--- a/include/net/dsa.h
+++ b/include/net/dsa.h
@@ -298,6 +298,7 @@ struct dsa_port {
 	struct devlink_port	devlink_port;
 	struct phylink		*pl;
 	struct phylink_config	pl_config;
+	netdevice_tracker	conduit_tracker;
 	struct dsa_lag		*lag;
 	struct net_device	*hsr_dev;
 
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c
index 5b01a0e43ebe..d466d0234087 100644
--- a/net/dsa/dsa.c
+++ b/net/dsa/dsa.c
@@ -1252,14 +1252,25 @@ static int dsa_port_parse_of(struct dsa_port *dp, struct device_node *dn)
 	if (ethernet) {
 		struct net_device *conduit;
 		const char *user_protocol;
+		int err;
 
+		rtnl_lock();
 		conduit = of_find_net_device_by_node(ethernet);
 		of_node_put(ethernet);
-		if (!conduit)
+		if (!conduit) {
+			rtnl_unlock();
 			return -EPROBE_DEFER;
+		}
+
+		netdev_hold(conduit, &dp->conduit_tracker, GFP_KERNEL);
+		put_device(&conduit->dev);
+		rtnl_unlock();
 
 		user_protocol = of_get_property(dn, "dsa-tag-protocol", NULL);
-		return dsa_port_parse_cpu(dp, conduit, user_protocol);
+		err = dsa_port_parse_cpu(dp, conduit, user_protocol);
+		if (err)
+			netdev_put(conduit, &dp->conduit_tracker);
+		return err;
 	}
 
 	if (link)
@@ -1392,37 +1403,30 @@ static struct device *dev_find_class(struct device *parent, char *class)
 	return device_find_child(parent, class, dev_is_class);
 }
 
-static struct net_device *dsa_dev_to_net_device(struct device *dev)
-{
-	struct device *d;
-
-	d = dev_find_class(dev, "net");
-	if (d != NULL) {
-		struct net_device *nd;
-
-		nd = to_net_dev(d);
-		dev_hold(nd);
-		put_device(d);
-
-		return nd;
-	}
-
-	return NULL;
-}
-
 static int dsa_port_parse(struct dsa_port *dp, const char *name,
 			  struct device *dev)
 {
 	if (!strcmp(name, "cpu")) {
 		struct net_device *conduit;
+		struct device *d;
+		int err;
 
-		conduit = dsa_dev_to_net_device(dev);
-		if (!conduit)
+		rtnl_lock();
+		d = dev_find_class(dev, "net");
+		if (!d) {
+			rtnl_unlock();
 			return -EPROBE_DEFER;
+		}
 
-		dev_put(conduit);
+		conduit = to_net_dev(d);
+		netdev_hold(conduit, &dp->conduit_tracker, GFP_KERNEL);
+		put_device(d);
+		rtnl_unlock();
 
-		return dsa_port_parse_cpu(dp, conduit, NULL);
+		err = dsa_port_parse_cpu(dp, conduit, NULL);
+		if (err)
+			netdev_put(conduit, &dp->conduit_tracker);
+		return err;
 	}
 
 	if (!strcmp(name, "dsa"))
@@ -1490,6 +1494,9 @@ static void dsa_switch_release_ports(struct dsa_switch *ds)
 	struct dsa_vlan *v, *n;
 
 	dsa_switch_for_each_port_safe(dp, next, ds) {
+		if (dsa_port_is_cpu(dp) && dp->conduit)
+			netdev_put(dp->conduit, &dp->conduit_tracker);
+
 		/* These are either entries that upper layers lost track of
 		 * (probably due to bugs), or installed through interfaces
 		 * where one does not necessarily have to remove them, like
@@ -1634,8 +1641,10 @@ void dsa_switch_shutdown(struct dsa_switch *ds)
 	/* Disconnect from further netdevice notifiers on the conduit,
 	 * since netdev_uses_dsa() will now return false.
 	 */
-	dsa_switch_for_each_cpu_port(dp, ds)
+	dsa_switch_for_each_cpu_port(dp, ds) {
 		dp->conduit->dsa_ptr = NULL;
+		netdev_put(dp->conduit, &dp->conduit_tracker);
+	}
 
 	rtnl_unlock();
 out:
-- 
2.51.0




  parent reply	other threads:[~2026-01-06 17:47 UTC|newest]

Thread overview: 328+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-06 17:01 [PATCH 6.18 000/312] 6.18.4-rc1 review Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 001/312] sched/proxy: Yield the donor task Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 002/312] drm: nova: depend on CONFIG_64BIT Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 003/312] x86/microcode/AMD: Select which microcode patch to load Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 004/312] sched/core: Add comment explaining force-idle vruntime snapshots Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 005/312] sched/eevdf: Fix min_vruntime vs avg_vruntime Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 006/312] sched_ext: Fix incorrect sched_class settings for per-cpu migration tasks Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 007/312] mm/huge_memory: merge uniform_split_supported() and non_uniform_split_supported() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 008/312] KVM: s390: Fix gmap_helper_zap_one_page() again Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 009/312] drm/edid: add DRM_EDID_IDENT_INIT() to initialize struct drm_edid_ident Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 010/312] drm/displayid: add quirk to ignore DisplayID checksum errors Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 011/312] drm/amdgpu: dont attach the tlb fence for SI Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 012/312] wifi: rtw88: limit indirect IO under powered off for RTL8822CS Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 013/312] wifi: rtlwifi: 8192cu: fix tid out of range in rtl92cu_tx_fill_desc() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 014/312] wifi: cfg80211: sme: store capped length in __cfg80211_connect_result() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 015/312] wifi: mac80211: do not use old MBSSID elements Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 016/312] sched_ext: fix uninitialized ret on alloc_percpu() failure Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 017/312] i40e: fix scheduling in set_rx_mode Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 018/312] i40e: validate ring_len parameter against hardware-specific values Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 019/312] iavf: fix off-by-one issues in iavf_config_rss_reg() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 020/312] idpf: fix LAN memory regions command on some NVMs Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 021/312] idpf: reduce mbx_task schedule delay to 300us Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 022/312] cpuset: fix warning when disabling remote partition Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 023/312] crypto: seqiv - Do not use req->iv after crypto_aead_encrypt Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 024/312] Bluetooth: MGMT: report BIS capability flags in supported settings Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 025/312] Bluetooth: btusb: revert use of devm_kzalloc in btusb Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 026/312] net: mdio: aspeed: add dummy read to avoid read-after-write issue Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 027/312] net: openvswitch: Avoid needlessly taking the RTNL on vport destroy Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 028/312] ip6_gre: make ip6gre_header() robust Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 029/312] powerpc/tools: drop `-o pipefail` in gcc check scripts Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 030/312] platform/mellanox: mlxbf-pmc: Remove trailing whitespaces from event names Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 031/312] platform/x86: msi-laptop: add missing sysfs_remove_group() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 032/312] platform/x86: ibm_rtl: fix EBDA signature search pointer arithmetic Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 033/312] team: fix check for port enabled in team_queue_override_port_prio_changed() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 034/312] net: airoha: Move net_devs registration in a dedicated routine Greg Kroah-Hartman
2026-01-06 17:01 ` Greg Kroah-Hartman [this message]
2026-01-06 17:01 ` [PATCH 6.18 036/312] net: dsa: fix missing put_device() in dsa_tree_find_first_conduit() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 037/312] amd-xgbe: reset retries and mode on RX adapt failures Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 038/312] selftests: drv-net: psp: fix templated test names in psp_ip_ver_test_builder() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 039/312] selftests: drv-net: psp: fix test names in ipver_test_builder() Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 040/312] net: usb: rtl8150: fix memory leak on usb_submit_urb() failure Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 041/312] selftests: net: fix "buffer overflow detected" for tap.c Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 042/312] net: wangxun: move PHYLINK dependency Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 043/312] platform/x86/intel/pmt: Fix kobject memory leak on init failure Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 044/312] smc91x: fix broken irq-context in PREEMPT_RT Greg Kroah-Hartman
2026-01-06 17:01 ` [PATCH 6.18 045/312] genalloc.h: fix htmldocs warning Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 046/312] firewire: nosy: Fix dma_free_coherent() size Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 047/312] bng_en: update module description Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 048/312] net: dsa: b53: skip multicast entries for fdb_dump() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 049/312] kbuild: fix compilation of dtb specified on command-line without make rule Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 050/312] mcb: Add missing modpost build support Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 051/312] net: mdio: rtl9300: use scoped for loops Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 052/312] net: usb: asix: validate PHY address before use Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 053/312] net: bridge: Describe @tunnel_hash member in net_bridge_vlan_group struct Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 054/312] tools/sched_ext: fix scx_show_state.py for scx_root change Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 055/312] vfio/pds: Fix memory leak in pds_vfio_dirty_enable() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 056/312] platform/x86: hp-bioscfg: Fix out-of-bounds array access in ACPI package parsing Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 057/312] platform/x86/intel/pmt/discovery: use valid device pointer in dev_err_probe Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 058/312] octeontx2-pf: fix "UBSAN: shift-out-of-bounds error" Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 059/312] net: stmmac: fix the crash issue for zero copy XDP_TX action Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 060/312] ipv6: BUG() in pskb_expand_head() as part of calipso_skbuff_setattr() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 061/312] ipv4: Fix reference count leak when using error routes with nexthop objects Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 062/312] net: fib: restore ECMP balance from loopback Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 063/312] net: rose: fix invalid array index in rose_kill_by_device() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 064/312] ipv6: fix a BUG in rt6_get_pcpu_route() under PREEMPT_RT Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 065/312] RDMA/ucma: Fix rdma_ucm_query_ib_service_resp struct padding Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 066/312] RDMA/irdma: Fix irdma_alloc_ucontext_resp padding Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 067/312] RDMA/mana_ib: check cqe length for kernel CQs Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 068/312] RDMA/irdma: avoid invalid read in irdma_net_event Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 069/312] RDMA/efa: Remove possible negative shift Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 070/312] RDMA/core: Fix logic error in ib_get_gids_from_rdma_hdr() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 071/312] RDMA/bnxt_re: Fix incorrect BAR check in bnxt_qplib_map_creq_db() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 072/312] RDMA/core: always drop device refcount in ib_del_sub_device_and_put() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 073/312] drm/gem-shmem: Fix the MODULE_LICENSE() string Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 074/312] RDMA/bnxt_re: Fix IB_SEND_IP_CSUM handling in post_send Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 075/312] RDMA/bnxt_re: Fix OOB write in bnxt_re_copy_err_stats() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 076/312] kunit: Enforce task execution in {soft,hard}irq contexts Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 077/312] RDMA/bnxt_re: Fix to use correct page size for PDE table Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 078/312] md: Fix static checker warning in analyze_sbs Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 079/312] md/raid5: fix possible null-pointer dereferences in raid5_store_group_thread_cnt() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 080/312] ublk: implement NUMA-aware memory allocation Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 081/312] ublk: scan partition in async way Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 082/312] drm/xe/guc: READ/WRITE_ONCE g2h_fence->done Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 083/312] ksmbd: Fix memory leak in get_file_all_info() Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 084/312] IB/rxe: Fix missing umem_odp->umem_mutex unlock on error path Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 085/312] RDMA/rtrs: Fix clt_path::max_pages_per_mr calculation Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 086/312] RDMA/bnxt_re: fix dma_free_coherent() pointer Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 087/312] blk-mq: skip CPU offline notify on unmapped hctx Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 088/312] selftests/ftrace: traceonoff_triggers: strip off names Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 089/312] block: handle zone management operations completions Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 090/312] ntfs: Do not overwrite uptodate pages Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 091/312] ASoC: codecs: wcd939x: fix regmap leak on probe failure Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 092/312] ASoC: stm32: sai: fix device leak on probe Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 093/312] ASoC: stm32: sai: fix clk prepare imbalance on probe failure Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 094/312] ASoC: stm32: sai: fix OF node leak on probe Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 095/312] ASoC: renesas: rz-ssi: Fix channel swap issue in full duplex mode Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 096/312] ASoC: renesas: rz-ssi: Fix rz_ssi_priv::hw_params_cache::sample_width Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 097/312] ASoC: codecs: wcd937x: Fix error handling in wcd937x codec driver Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 098/312] ASoC: codecs: pm4125: Fix potential conflict when probing two devices Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 099/312] ASoC: codecs: pm4125: Remove irq_chip on component unbind Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 100/312] ASoC: codecs: lpass-tx-macro: fix SM6115 support Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 101/312] ASoC: qcom: sdw: fix memory leak for sdw_stream_runtime Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 102/312] ASoC: cs35l41: Always return 0 when a subsystem ID is found Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 103/312] ASoC: codecs: Fix error handling in pm4125 audio codec driver Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 104/312] ASoC: qcom: q6apm-dai: set flags to reflect correct operation of appl_ptr Greg Kroah-Hartman
2026-01-06 17:02 ` [PATCH 6.18 105/312] ASoC: qcom: q6asm-dai: perform correct state check before closing Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 106/312] ASoC: qcom: q6adm: the the copp device only during last instance Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 107/312] ASoC: qcom: qdsp6: q6asm-dai: set 10 ms period and buffer alignment Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 108/312] iommu/amd: Fix pci_segment memleak in alloc_pci_segment() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 109/312] iommu/amd: Propagate the error code returned by __modify_irte_ga() in modify_irte_ga() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 110/312] iommu/apple-dart: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 111/312] iommu/exynos: " Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 112/312] iommu/ipmmu-vmsa: " Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 113/312] iommu/mediatek-v1: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 114/312] iommu/mediatek-v1: fix device leaks on probe() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 115/312] iommu/mediatek: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 116/312] iommu/omap: fix device leaks on probe_device() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 117/312] iommu/qcom: fix device leak on of_xlate() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 118/312] iommu/sun50i: " Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 119/312] iommu/tegra: fix device leak on probe_device() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 120/312] iommu: disable SVA when CONFIG_X86 is set Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 121/312] hwmon: (dell-smm) Fix off-by-one error in dell_smm_is_visible() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 122/312] HID: logitech-dj: Remove duplicate error logging Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 123/312] hisi_acc_vfio_pci: Add .match_token_uuid callback in hisi_acc_vfio_pci_migrn_ops Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 124/312] fgraph: Initialize ftrace_ops->private for function graph ops Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 125/312] fgraph: Check ftrace_pids_enabled on registration for early filtering Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 126/312] PCI/PM: Reinstate clearing state_saved in legacy and !PM codepaths Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 127/312] arm64: dts: ti: k3-j721e-sk: Fix pinmux for pin Y1 used by power regulator Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 128/312] powerpc, mm: Fix mprotect on book3s 32-bit Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 129/312] powerpc/64s/slb: Fix SLB multihit issue during SLB preload Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 130/312] mm, swap: do not perform synchronous discard during allocation Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 131/312] leds: leds-cros_ec: Skip LEDs without color components Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 132/312] leds: leds-lp50xx: Allow LED 0 to be added to module bank Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 133/312] leds: leds-lp50xx: LP5009 supports 3 modules for a total of 9 LEDs Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 134/312] leds: leds-lp50xx: Enable chip before any communication Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 135/312] block: Clear BLK_ZONE_WPLUG_PLUGGED when aborting plugged BIOs Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 136/312] clk: samsung: exynos-clkout: Assign .num before accessing .hws Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 137/312] clk: qcom: mmcc-sdm660: Add missing MDSS reset Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 138/312] clk: qcom: Fix SM_VIDEOCC_6350 dependencies Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 139/312] clk: qcom: Fix dependencies of QCS_{DISP,GPU,VIDEO}CC_615 Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 140/312] mfd: altera-sysmgr: Fix device leak on sysmgr regmap lookup Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 141/312] mfd: max77620: Fix potential IRQ chip conflict when probing two devices Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 142/312] media: rc: st_rc: Fix reset control resource leak Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 143/312] media: verisilicon: Fix CPU stalls on G2 bus error Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 144/312] arm64: dts: ti: k3-am62d2-evm: Fix regulator properties Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 145/312] arm64: dts: ti: k3-am62d2-evm: Fix PMIC padconfig Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 146/312] arm64: dts: st: Add memory-region-names property for stm32mp257f-ev1 Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 147/312] arm64: dts: qcom: sm6350: Fix wrong order of freq-table-hz for UFS Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 148/312] mtd: mtdpart: ignore error -ENOENT from parsers on subpartitions Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 149/312] mtd: spi-nor: winbond: Add support for W25Q01NWxxIQ chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 150/312] mtd: spi-nor: winbond: Add support for W25Q01NWxxIM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 151/312] mtd: spi-nor: winbond: Add support for W25Q02NWxxIM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 152/312] mtd: spi-nor: winbond: Add support for W25H512NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 153/312] mtd: spi-nor: winbond: Add support for W25H01NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 154/312] mtd: spi-nor: winbond: Add support for W25H02NWxxAM chips Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 155/312] NFSD: Make FILE_SYNC WRITEs comply with spec Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 156/312] nvmet: pci-epf: move DMA initialization to EPC init callback Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 157/312] parisc: entry.S: fix space adjustment on interruption for 64-bit userspace Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 158/312] parisc: entry: set W bit for !compat tasks in syscall_restore_rfi() Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 159/312] PCI: brcmstb: Fix disabling L0s capability Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 160/312] PCI: meson: Fix parsing the DBI register region Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 161/312] perf/x86/amd/uncore: Fix the return value of amd_uncore_df_event_init() on error Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 162/312] power: supply: max77705: Fix potential IRQ chip conflict when probing two devices Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 163/312] powerpc/pseries/cmm: adjust BALLOON_MIGRATE when migrating pages Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 164/312] powerpc/pseries/cmm: call balloon_devinfo_init() also without CONFIG_BALLOON_COMPACTION Greg Kroah-Hartman
2026-01-06 17:03 ` [PATCH 6.18 165/312] media: adv7842: Avoid possible out-of-bounds array accesses in adv7842_cp_log_status() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 166/312] firmware: stratix10-svc: Add mutex in stratix10 memory management Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 167/312] dm-ebs: Mark full buffer dirty even on partial write Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 168/312] dm-bufio: align write boundary on physical block size Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 169/312] dm pcache: fix cache info indexing Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 170/312] dm pcache: fix segment " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 171/312] fbdev: gbefb: fix to use physical address instead of dma address Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 172/312] fbdev: pxafb: Fix multiple clamped values in pxafb_adjust_timing Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 173/312] fbdev: tcx.c fix mem_map to correct smem_start offset Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 174/312] media: cec: Fix debugfs leak on bus_register() failure Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 175/312] media: iris: Refine internal buffer reconfiguration logic for resolution change Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 176/312] media: msp3400: Avoid possible out-of-bounds array accesses in msp3400c_thread() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 177/312] media: platform: mtk-mdp3: fix device leaks at probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 178/312] media: renesas: rcar_drif: fix device node reference leak in rcar_drif_bond_enabled Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 179/312] media: samsung: exynos4-is: fix potential ABBA deadlock on init Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 180/312] media: TDA1997x: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 181/312] media: verisilicon: Protect G2 HEVC decoder against invalid DPB index Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 182/312] media: videobuf2: Fix device reference leak in vb2_dc_alloc error path Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 183/312] media: vpif_capture: fix section mismatch Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 184/312] media: vpif_display: " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 185/312] media: amphion: Remove vpu_vb_is_codecconfig Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 186/312] media: amphion: Cancel message work before releasing the VPU core Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 187/312] media: i2c: ADV7604: Remove redundant cancel_delayed_work in probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 188/312] media: i2c: adv7842: " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 189/312] media: i2c: imx219: Fix 1920x1080 mode to use 1:1 pixel aspect ratio Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 190/312] media: mediatek: vcodec: Use spinlock for context list protection lock Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 191/312] media: mediatek: vcodec: Fix a reference leak in mtk_vcodec_fw_vpu_init() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 192/312] LoongArch: Add new PCI ID for pci_fixup_vgadev() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 193/312] LoongArch: Correct the calculation logic of thread_count Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 194/312] LoongArch: Fix arch_dup_task_struct() for CONFIG_RANDSTRUCT Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 195/312] LoongArch: Fix build errors " Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 196/312] LoongArch: Use __pmd()/__pte() for swap entry conversions Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 197/312] LoongArch: Use unsigned long for _end and _text Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 198/312] mm/damon/tests/sysfs-kunit: handle alloc failures on damon_sysfs_test_add_targets() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 199/312] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_do_test_apply_three_regions() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 200/312] mm/damon/tests/vaddr-kunit: handle alloc failures in damon_test_split_evenly_fail() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 201/312] mm/damon/tests/vaddr-kunit: handle alloc failures on damon_test_split_evenly_succ() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 202/312] mm/damon/tests/core-kunit: fix memory leak in damon_test_set_filters_default_reject() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 203/312] mm/damon/tests/core-kunit: handle alloc failres in damon_test_new_filter() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 204/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_at() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 205/312] mm/damon/tests/core-kunit: handle allocation failures in damon_test_regions() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 206/312] mm/damon/tests/core-kunit: handle memory failure from damon_test_target() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 207/312] mm/damon/tests/core-kunit: handle memory alloc failure from damon_test_aggregate() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 208/312] mm/damon/tests/core-kunit: handle alloc failures on dasmon_test_merge_regions_of() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 209/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_merge_two() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 210/312] mm/damon/tests/core-kunit: handle alloc failures in damon_test_set_regions() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 211/312] mm/damon/tests/core-kunit: handle alloc failures in damon_test_update_monitoring_result() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 212/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_set_filters_default_reject() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 213/312] mm/damon/tests/core-kunit: handle alloc failures on damos_test_filter_out() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 214/312] mm/damon/tests/core-kunit: handle alloc failures in damon_test_ops_registration() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 215/312] mm/damon/tests/core-kunit: handle alloc failure on damon_test_set_attrs() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 216/312] mm/damon/tests/core-kunit: handle alloc failure on damos_test_commit_filter() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 217/312] pmdomain: mtk-pm-domains: Fix spinlock recursion fix in probe Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 218/312] pmdomain: imx: Fix reference count leak in imx_gpc_probe() Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 219/312] af_unix: dont post cmsg for SO_INQ unless explicitly asked for Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 220/312] compiler_types.h: add "auto" as a macro for "__auto_type" Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 221/312] mptcp: fallback earlier on simult connection Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 222/312] mm/kasan: fix incorrect unpoisoning in vrealloc for KASAN Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 223/312] kasan: refactor pcpu kasan vmalloc unpoison Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 224/312] kasan: unpoison vms[area] addresses with a common tag Greg Kroah-Hartman
2026-01-06 17:04 ` [PATCH 6.18 225/312] kernel/kexec: change the prototype of kimage_map_segment() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 226/312] kernel/kexec: fix IMA when allocation happens in CMA area Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 227/312] lockd: fix vfs_test_lock() calls Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 228/312] idr: fix idr_alloc() returning an ID out of range Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 229/312] mm/page_alloc: change all pageblocks migrate type on coalescing Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 230/312] mm/page_owner: fix memory leak in page_owner_stack_fops->release() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 231/312] mm: consider non-anon swap cache folios in folio_expected_ref_count() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 232/312] x86/microcode/AMD: Fix Entrysign revision check for Zen5/Strix Halo Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 233/312] tools/mm/page_owner_sort: fix timestamp comparison for stable sorting Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 234/312] selftests/mm: fix thread state check in uffd-unit-tests Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 235/312] samples/ftrace: Adjust LoongArch register restore order in direct calls Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 236/312] rust: maple_tree: rcu_read_lock() in destructor to silence lockdep Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 237/312] RDMA/core: Check for the presence of LS_NLA_TYPE_DGID correctly Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 238/312] RDMA/cm: Fix leaking the multicast GID table reference Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 239/312] wifi: iwlwifi: Fix firmware version handling Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 240/312] wifi: mac80211: Discard Beacon frames to non-broadcast address Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 241/312] e1000: fix OOB in e1000_tbi_should_accept() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 242/312] erspan: Initialize options_len before referencing options Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 243/312] fjes: Add missing iounmap in fjes_hw_init() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 244/312] gve: defer interrupt enabling until NAPI registration Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 245/312] LoongArch: Refactor register restoration in ftrace_common_return Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 246/312] LoongArch: BPF: Zero-extend bpf_tail_call() index Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 247/312] LoongArch: BPF: Sign extend kfunc call arguments Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 248/312] LoongArch: BPF: Save return address register ra to t0 before trampoline Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 249/312] LoongArch: BPF: Enable trampoline-based tracing for module functions Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 250/312] LoongArch: BPF: Adjust the jump offset of tail calls Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 251/312] nfsd: fix nfsd_file reference leak in nfsd4_add_rdaccess_to_wrdeleg() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 252/312] nfsd: use ATTR_DELEG in nfsd4_finalize_deleg_timestamps() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 253/312] nfsd: Drop the client reference in client_states_open() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 254/312] net: usb: sr9700: fix incorrect command used to write single register Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 255/312] net: phy: mediatek: fix nvmem cell reference leak in mt798x_phy_calibration Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 256/312] net: nfc: fix deadlock between nfc_unregister_device and rfkill_fop_write Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 257/312] net: macb: Relocate mog_init_rings() callback from macb_mac_link_up() to macb_open() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 258/312] platform/x86: samsung-galaxybook: Fix problematic pointer cast Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 259/312] platform/x86: alienware-wmi-wmax: Add support for new Area-51 laptops Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 260/312] platform/x86: alienware-wmi-wmax: Add AWCC support for Alienware x16 Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 261/312] platform/x86: alienware-wmi-wmax: Add support for Alienware 16X Aurora Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 262/312] Revert "drm/amd: Skip power ungate during suspend for VPE" Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 263/312] drm/amdgpu/gmc12: add amdgpu_vm_handle_fault() handling Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 264/312] drm/amdgpu: Forward VMID reservation errors Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 265/312] drm/amdgpu: add missing lock to amdgpu_ttm_access_memory_sdma Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 266/312] drm/amdgpu/sdma6: Update SDMA 6.0.3 FW version to include UMQ protected-fence fix Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 267/312] drm/amdgpu/gmc11: add amdgpu_vm_handle_fault() handling Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 268/312] drm/msm/a6xx: Fix out of bound IO access in a6xx_get_gmu_registers Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 269/312] drm/buddy: Optimize free block management with RB tree Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 270/312] drm/buddy: Separate clear and dirty free block trees Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 271/312] drm/gma500: Remove unused helper psb_fbdev_fb_setcolreg() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 272/312] drm/xe/oa: Fix potential UAF in xe_oa_add_config_ioctl() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 273/312] drm/rockchip: Set VOP for the DRM DMA device Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 274/312] drm/mediatek: Fix device node reference leak in mtk_dp_dt_parse() Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 275/312] drm/mediatek: Fix probe resource leaks Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 276/312] drm/mediatek: Fix probe memory leak Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 277/312] drm/mediatek: Fix probe device leaks Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 278/312] drm/mediatek: mtk_hdmi: " Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 279/312] drm/mediatek: ovl_adaptor: " Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 280/312] drm/amd: Fix unbind/rebind for VCN 4.0.5 Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 281/312] drm/rockchip: vop2: Use OVL_LAYER_SEL configuration instead of use win_mask calculate used layers Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 282/312] drm/bridge: ti-sn65dsi83: ignore PLL_UNLOCK errors Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 283/312] drm/nouveau/gsp: Allocate fwsec-sb at boot Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 284/312] drm/amdkfd: Export the cwsr_size and ctl_stack_size to userspace Greg Kroah-Hartman
2026-01-06 17:05 ` [PATCH 6.18 285/312] drm/amdkfd: bump minimum vgpr size for gfx1151 Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 286/312] drm/amdkfd: Trap handler support for expert scheduling mode Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 287/312] drm/i915: Fix format string truncation warning Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 288/312] drm/tilcdc: Fix removal actions in case of failed probe Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 289/312] drm/ttm: Avoid NULL pointer deref for evicted BOs Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 290/312] drm/mgag200: Fix big-endian support Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 291/312] drm: Fix object leak in DRM_IOCTL_GEM_CHANGE_HANDLE Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 292/312] drm/xe/bo: Dont include the CCS metadata in the dma-buf sg-table Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 293/312] drm/xe/oa: Disallow 0 OA property values Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 294/312] drm/xe/eustall: Disallow 0 EU stall " Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 295/312] drm/xe: Adjust long-running workload timeslices to reasonable values Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 296/312] drm/xe: Use usleep_range for accurate long-running workload timeslicing Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 297/312] drm/xe: Drop preempt-fences when destroying imported dma-bufs Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 298/312] drm/msm/dpu: Add missing NULL pointer check for pingpong interface Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 299/312] drm/msm: add PERFCTR_CNTL to ifpc_reglist Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 300/312] drm/i915/gem: Zero-initialize the eb.vma array in i915_gem_do_execbuffer Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 301/312] drm/xe/svm: Fix a debug printout Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 302/312] drm/pagemap, drm/xe: Ensure that the devmem allocation is idle before use Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 303/312] drm/nouveau/dispnv50: Dont call drm_atomic_get_crtc_state() in prepare_fb Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 304/312] drm/imagination: Disallow exporting of PM/FW protected objects Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 305/312] erofs: fix unexpected EIO under memory pressure Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 306/312] block: fix NULL pointer dereference in blk_zone_reset_all_bio_endio() Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 307/312] powercap: intel_rapl: Add support for Wildcat Lake platform Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 308/312] powercap: intel_rapl: Add support for Nova Lake processors Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 309/312] LoongArch: BPF: Enhance the bpf_arch_text_poke() function Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 310/312] vfio/pci: Disable qword access to the PCI ROM bar Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 311/312] mm/damon/tests/core-kunit: handle alloc failures on damon_test_split_regions_of() Greg Kroah-Hartman
2026-01-06 17:06 ` [PATCH 6.18 312/312] [PATCH v2] Revert "gpio: swnode: dont use the swnodes name as the key for GPIO lookup" Greg Kroah-Hartman
2026-01-06 19:22 ` [PATCH 6.18 000/312] 6.18.4-rc1 review Brett A C Sheffield
2026-01-06 19:24 ` Ronald Warsow
2026-01-06 22:28 ` Peter Schneider
2026-01-06 22:55 ` Shuah Khan
2026-01-06 23:43 ` Justin Forbes
2026-01-07  0:45 ` Florian Fainelli
2026-01-07  0:51 ` Christian Heusel
2026-01-07 10:20 ` Ron Economos
2026-01-07 11:49 ` Mark Brown
2026-01-07 12:06 ` Jeffrin Thalakkottoor
2026-01-07 12:19 ` Takeshi Ogasawara
2026-01-07 15:25 ` Miguel Ojeda
2026-01-07 20:13 ` Jon Hunter
2026-01-07 20:45 ` Hardik Garg
2026-01-07 23:32 ` Brett Mastbergen

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=20260106170549.126631898@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jonas.gorski@gmail.com \
    --cc=make24@iscas.ac.cn \
    --cc=pabeni@redhat.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=vladimir.oltean@nxp.com \
    /path/to/YOUR_REPLY

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

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