From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 12CA3C352AA for ; Tue, 1 Oct 2019 14:55:34 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id DAD5E20815 for ; Tue, 1 Oct 2019 14:55:33 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org DAD5E20815 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=lwn.net Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 5E7118E0007; Tue, 1 Oct 2019 10:55:33 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 56DCC8E0001; Tue, 1 Oct 2019 10:55:33 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 45CBA8E0007; Tue, 1 Oct 2019 10:55:33 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0029.hostedemail.com [216.40.44.29]) by kanga.kvack.org (Postfix) with ESMTP id 1E1B98E0001 for ; Tue, 1 Oct 2019 10:55:33 -0400 (EDT) Received: from smtpin12.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay03.hostedemail.com (Postfix) with SMTP id AF859824CA13 for ; Tue, 1 Oct 2019 14:55:32 +0000 (UTC) X-FDA: 75995514504.12.cream59_6a8e449df9849 X-HE-Tag: cream59_6a8e449df9849 X-Filterd-Recvd-Size: 1849 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) by imf20.hostedemail.com (Postfix) with ESMTP for ; Tue, 1 Oct 2019 14:55:32 +0000 (UTC) Received: from lwn.net (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id BA13A316; Tue, 1 Oct 2019 14:55:30 +0000 (UTC) Date: Tue, 1 Oct 2019 08:55:29 -0600 From: Jonathan Corbet To: linux-mm@kvack.org Cc: Christoph Hellwig Subject: [PATCH] docs: Catch up with the new location of get_user_pages_fast() Message-ID: <20191001085529.17a2ba64@lwn.net> Organization: LWN.net MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: Commit 050a9adc6438 ("mm: consolidate the get_user_pages* implementations= ") moved get_user_pages_fast() from mm/util.c to mm/gup.c, but didn't update the documentation, leading to this build warning: ./mm/util.c:1: warning: 'get_user_pages_fast' not found Update the docs to match the new reality. Fixes: 050a9adc6438 ("mm: consolidate the get_user_pages* implementations= ") Signed-off-by: Jonathan Corbet --- I'll just apply this to docs-next unless somebody screams. Documentation/core-api/mm-api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/core-api/mm-api.rst b/Documentation/core-api/m= m-api.rst index 128e8a721c1e..be726986ff75 100644 --- a/Documentation/core-api/mm-api.rst +++ b/Documentation/core-api/mm-api.rst @@ -11,7 +11,7 @@ User Space Memory Access .. kernel-doc:: arch/x86/lib/usercopy_32.c :export: =20 -.. kernel-doc:: mm/util.c +.. kernel-doc:: mm/gup.c :functions: get_user_pages_fast =20 .. _mm-api-gfp-flags: --=20 2.21.0