From nobody Fri Apr 17 09:18:00 2026 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 328A612CDA5 for ; Sat, 21 Feb 2026 06:47:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771656425; cv=none; b=XN7i1cf+XXsLsBgWub5dXMD6NwERZmNKjQXTKdGXf/wZ4K9dk6rBHXEVcSsMGKQW0dtKQhRSyEtXylHzbkXug9zcR8RHsYahfYN1yu3fdaWuUc/js/5MiqeXUc2dYpNyDbNs7MJUGvUHtBVJ8wGCUiEla2D1x3iMTgFR4/BHI2w= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771656425; c=relaxed/simple; bh=8+H0buBqakjq3JK2ZolyO5Owd5PU/oUTFIUWrOFzHcU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=l1oZUgaWMAP0Xn5clGi3ATd1EytSspUnLhYCCe5tucLOnopXdbVdmIOxXsOU7UZ8P7xZY9n8DY95EzxI08jLo3yZDCtAsP/AkJc3nJUB81+5E94soIT1vaGguPbgTqem5pkb4Nuwehniui+lXGK94LlG44BNHx7WuzOZmOF0hro= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=USWfBL5G; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="USWfBL5G" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=WnDcqhPVOjqHwV/BtOLRy/zY5pNgqrIS1LfBsaGrPZM=; b=USWfBL5GZoRjwyYmm6UyrtLDww Y4f1Cxnpk80ZWVNtBvibK0Xb8+Ah67BfvWshGbam4nG0Yuvp5IkZrBAOLs4ccfp6osxJvaHXlNJct qsvHvwIsz947FPkOZ3tBF21z0zxXDK5qwEikNXGwvScGAzSKr1TTEEuVqmvWJrCPe3grRwpwVhSbz wEaL9uVW0m4L0NGhQ5FVmfJJC5UvVdxnJ6//NPWFAwGxjjdmXUPT3ruZz2yQtDEqzK2raSCQGssBk cByWkXhmHRUYCuWZ4SIkkcrJ08HmLRP3D7wj+nDTkRsoPgzYAyXr4ZOccVEf603gKwLbiwx3fU4a6 UOKcmO6g==; Received: from [50.53.43.113] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.98.2 #2 (Red Hat Linux)) id 1vtglZ-0000000Fsjg-0eRe; Sat, 21 Feb 2026 06:47:01 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Christian Brauner Subject: [PATCH] nstree: fix func. parameter kernel-doc warnings Date: Fri, 20 Feb 2026 22:46:59 -0800 Message-ID: <20260221064659.1480728-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.53.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Use the correct parameter name ("__ns") for function parameter kernel-doc to avoid 3 warnings: Warning: include/linux/nstree.h:68 function parameter '__ns' not described = in 'ns_tree_add_raw' Warning: include/linux/nstree.h:77 function parameter '__ns' not described = in 'ns_tree_add' Warning: include/linux/nstree.h:88 function parameter '__ns' not described = in 'ns_tree_remove' Signed-off-by: Randy Dunlap --- Cc: Christian Brauner include/linux/nstree.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- linux-next-20260218.orig/include/linux/nstree.h +++ linux-next-20260218/include/linux/nstree.h @@ -61,7 +61,7 @@ static inline void __ns_tree_add(struct =20 /** * ns_tree_add_raw - Add a namespace to a namespace - * @ns: Namespace to add + * @__ns: Namespace to add * * This function adds a namespace to the appropriate namespace tree * without assigning a id. @@ -70,7 +70,7 @@ static inline void __ns_tree_add(struct =20 /** * ns_tree_add - Add a namespace to a namespace tree - * @ns: Namespace to add + * @__ns: Namespace to add * * This function assigns a new id to the namespace and adds it to the * appropriate namespace tree and list. @@ -81,7 +81,7 @@ static inline void __ns_tree_add(struct =20 /** * ns_tree_remove - Remove a namespace from a namespace tree - * @ns: Namespace to remove + * @__ns: Namespace to remove * * This function removes a namespace from the appropriate namespace * tree and list.