--- /dev/null
+From 6c7ca6a02f8f9549a438a08a23c6327580ecf3d6 Mon Sep 17 00:00:00 2001
+From: Christian Brauner <brauner@kernel.org>
+Date: Mon, 29 Sep 2025 11:41:16 +0200
+Subject: mount: handle NULL values in mnt_ns_release()
+
+From: Christian Brauner <brauner@kernel.org>
+
+commit 6c7ca6a02f8f9549a438a08a23c6327580ecf3d6 upstream.
+
+When calling in listmount() mnt_ns_release() may be passed a NULL
+pointer. Handle that case gracefully.
+
+Signed-off-by: Christian Brauner <brauner@kernel.org>
+Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ fs/namespace.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+--- a/fs/namespace.c
++++ b/fs/namespace.c
+@@ -153,7 +153,7 @@ static void mnt_ns_release(struct mnt_na
+ lockdep_assert_not_held(&mnt_ns_tree_lock);
+
+ /* keep alive for {list,stat}mount() */
+- if (refcount_dec_and_test(&ns->passive)) {
++ if (ns && refcount_dec_and_test(&ns->passive)) {
+ put_user_ns(ns->user_ns);
+ kfree(ns);
+ }
nfsd-fix-__fh_verify-for-localio.patch
nfsd-fix-access-checking-for-nlm-under-xprtsec-policies.patch
asoc-sof-ipc4-pcm-fix-start-offset-calculation-for-chain-dma.patch
+mount-handle-null-values-in-mnt_ns_release.patch