From nobody Thu Apr 16 07:10: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 5A83B21B905 for ; Mon, 2 Mar 2026 00:52:31 +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=1772412752; cv=none; b=muOPu4c3cXn49P2Rc9Np2E36QpT4N9hityCmVrLzdFNCZGeOCwP48df23goR+ibHrh7IzFZLvNkUOUvp2ZcaASB9NSj2P0C0QdBodPLW2XB4I3huE7jtX8LtQwlqMNDNhK+/neMiy2rdec3ZRofQxy3aS8sRWV0Cq6RAGOSk1Dk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772412752; c=relaxed/simple; bh=7e4XzA2GokYgZLuirqo4X91lxUlUhggGy8uGmVjpGRY=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=LGEf9g9BAQOb3w8R0rDJ8vv0K62mdogvOws6QB93K/KcQzwnbBzgjqq+pglbA/HEP8PZnKyM6ItAnPGyGoEkriJ3hZOiA5mJV1XUWFDdGLkGU4kZ0qxzRX7lIZ00KGc+Ap5JPoy63LXN5h6dy4JjgQU9l4E+ytBgCwfjYigjdUM= 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=TXw/38i4; 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="TXw/38i4" 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=wHynF5ZIjP9CXHajihRVlsGg2AdLOZj4sJljacvQCls=; b=TXw/38i4Oaze5//E0NwJrFpORM Sgm1L31nsff+ftRLY5grAYWwgqylpTzE37M4P+mon8Gn9z6X46hN1UJuClduRZBB0W2gWjv8VXfS3 HNU7+oVHc3MvUpOU1jCkhFLH1VqlnBzUgrjX5WbvDaQbROOI6uvVTiMpPi73uDCVdUR9FJPxcZGuY qFeu1gQZ8bUqpzGK2ccaGkN3BGwNbT7pm2DUvkVM6KL7fH3UxZYVYx26o/euiqdAhSvReplBmoPXK nfPfe0vYlZj2o7awv3/8foJqxFfpOB+r7qxUcfqS0L8kOH3BB9MrTw2oB1sBBpGnroCwxx/y2qZLx 0YPx/t6Q==; 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 1vwrWQ-0000000C28p-2qhm; Mon, 02 Mar 2026 00:52:30 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap , Andrew Morton Subject: [PATCH] uaccess: correct kernel-doc parameter format Date: Sun, 1 Mar 2026 16:52:29 -0800 Message-ID: <20260302005229.3471955-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 kernel-doc function parameter format to avoid kernel-doc warnings: Warning: include/linux/uaccess.h:814 function parameter 'uptr' not described in 'scoped_user_rw_access_size' Warning: include/linux/uaccess.h:826 function parameter 'uptr' not described in 'scoped_user_rw_access' Signed-off-by: Randy Dunlap Reviewed-by: SeongJae Park --- Cc: Andrew Morton include/linux/uaccess.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- linux-next-20260227.orig/include/linux/uaccess.h +++ linux-next-20260227/include/linux/uaccess.h @@ -806,7 +806,7 @@ for (bool done =3D false; !done; done =3D tr =20 /** * scoped_user_rw_access_size - Start a scoped user read/write access with= given size - * @uptr Pointer to the user space address to read from and write to + * @uptr: Pointer to the user space address to read from and write to * @size: Size of the access starting from @uptr * @elbl: Error label to goto when the access region is rejected * @@ -817,7 +817,7 @@ for (bool done =3D false; !done; done =3D tr =20 /** * scoped_user_rw_access - Start a scoped user read/write access - * @uptr Pointer to the user space address to read from and write to + * @uptr: Pointer to the user space address to read from and write to * @elbl: Error label to goto when the access region is rejected * * The size of the access starting from @uptr is determined via sizeof(*@u= ptr)).