From nobody Tue Sep 16 18:08:33 2025 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A7508C3DA7D for ; Fri, 30 Dec 2022 17:28:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235347AbiL3R17 (ORCPT ); Fri, 30 Dec 2022 12:27:59 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35004 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231143AbiL3R14 (ORCPT ); Fri, 30 Dec 2022 12:27:56 -0500 Received: from mx.kolabnow.com (mx.kolabnow.com [212.103.80.153]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id CD2F5113B; Fri, 30 Dec 2022 09:27:55 -0800 (PST) Received: from localhost (unknown [127.0.0.1]) by mx.kolabnow.com (Postfix) with ESMTP id 6F4051B3C; Fri, 30 Dec 2022 18:20:56 +0100 (CET) Authentication-Results: ext-mx-out001.mykolab.com (amavisd-new); dkim=pass (4096-bit key) reason="pass (just generated, assumed good)" header.d=kolabnow.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kolabnow.com; h= content-transfer-encoding:mime-version:message-id:date:date :subject:subject:from:from:received:received:received; s= dkim20160331; t=1672420853; x=1674235254; bh=99ByR2tq5JLhQR4+MTv Sm3Sw418P1F9GiyP9tDZjzi8=; b=DLo/055cOipsDakQEGTmNlmF/IhKun4L7TX y0AUE+3PKDaSJrxF4aYe9Kc1MyFdW1zuFmsuM/VAqCj8eKF5NmsxHT2KdCxLUuh2 t2LoeBHkG8mpVUHq+8/ramKshSqH3uPWyS7m36tcnKsNz5KkgrrE5ZRe0U+GCycn VwgNUe0uINh0ft0fOYudUutJBoddr2FJoB+pcvWaig75DqmZF+8nl9uIMJ1kOA7f 9b24GlS1NDlP8DMkvbeq/5HWdMPC+0DKcMBe1sbDtIjIMumCRD5jFkXovXhvXA9w FvZBdwVgZwBEE87d8b9UcnN54Y6fR75H2b64UIvJgwmeTlHswBb2TK2biakktM7D kQQHYRl2oZqwcCDTtkOYjYq7wzI5JqRRevJYseNkEZ3D1X1o5z5FRA2b54/VZXyX eQysVg9x0nTI43kfpIZUYqHdAlHw3TmksdUrwBiDa6i/fnTBixsOe6yjG0GFubhw 4M/eZ7NF+unrclsrdCH+czjJhnVjdtk5OsBw9F1r6+pkgksuQad6ElpSmqE48ROb Df8VGN/Ghe1yPa0lF1iVFNU9XcJ4yvdTIOzhR/2rT52y/C6kxZTM+E7B3AJpLo0E RPfhGQX0DsZsGFK6EcTcxMjrTJ8ZyF6Ih7DcsV7zeBE24TTfvdkPuBSwi2IX1Jxz hUk1IjIc= X-Virus-Scanned: amavisd-new at mykolab.com Received: from mx.kolabnow.com ([127.0.0.1]) by localhost (ext-mx-out001.mykolab.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xLYFPb-k0vU6; Fri, 30 Dec 2022 18:20:53 +0100 (CET) Received: from int-mx001.mykolab.com (unknown [10.9.13.1]) by mx.kolabnow.com (Postfix) with ESMTPS id BBE911B36; Fri, 30 Dec 2022 18:20:52 +0100 (CET) Received: from ext-subm003.mykolab.com (unknown [10.9.6.3]) by int-mx001.mykolab.com (Postfix) with ESMTPS id 341D0BC4; Fri, 30 Dec 2022 18:20:52 +0100 (CET) From: Federico Vaga To: Jonathan Corbet Cc: Federico Vaga , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] doc: fix typos in botching up ioctls Date: Fri, 30 Dec 2022 18:20:24 +0100 Message-Id: <20221230172024.58372-1-federico.vaga@vaga.pv.it> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" The type contained a type `uintprt` -> `uintptr` Signed-off-by: Federico Vaga --- Documentation/process/botching-up-ioctls.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/process/botching-up-ioctls.rst b/Documentation/p= rocess/botching-up-ioctls.rst index ba4667ab396b..9739b88463a5 100644 --- a/Documentation/process/botching-up-ioctls.rst +++ b/Documentation/process/botching-up-ioctls.rst @@ -41,7 +41,7 @@ will need to add a 32-bit compat layer: structures to the kernel, or if the kernel checks the structure size, w= hich e.g. the drm core does. =20 - * Pointers are __u64, cast from/to a uintprt_t on the userspace side and + * Pointers are __u64, cast from/to a uintptr_t on the userspace side and from/to a void __user * in the kernel. Try really hard not to delay this conversion or worse, fiddle the raw __u64 through your code since that diminishes the checking tools like sparse can provide. The macro --=20 2.30.2