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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id F0BD1C61DA3 for ; Fri, 24 Feb 2023 10:04:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230043AbjBXKEi (ORCPT ); Fri, 24 Feb 2023 05:04:38 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43064 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230007AbjBXKED (ORCPT ); Fri, 24 Feb 2023 05:04:03 -0500 Received: from sin.source.kernel.org (sin.source.kernel.org [IPv6:2604:1380:40e1:4800::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 93279168A3; Fri, 24 Feb 2023 02:03:24 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 76149CE22D5; Fri, 24 Feb 2023 10:03:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 96115C433EF; Fri, 24 Feb 2023 10:03:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1677232998; bh=+IVRztdAGMoZDxrDulaf2DrIWp7EopXbsY/1jwlxfcM=; h=From:To:Cc:Subject:Date:From; b=UfyoQf2ZOJqG42jFJhb/apxaR80/ef3UrYYl26wt15avL2IVbfXj+oU4oHCA9Hhd5 lrPiBLI0jfuwIh1ZtDK8q5jytemsTWX4lVEkCk0mljjj6p5P6DWrqoRp8GSn+87vCK dmgLSaVzku5bqQt3HAw+3XgYEscL5u/Ud6Nz9WJt7AsCOweT7sfdo+baEBbJnw2xu/ 1pRRV8gPxoh/dJli4sVBIITSbR9zKM6epZ2+4qSsetLUWBCZkZ22Ctt/EHFfHBylBj wTZZQimnpYLIIvGUojzlklhd/ZYQnbPdbqYvJTTfDvc7WPZsPPF5+mmETyASOjaXgl ewXBPiwzAHtNA== From: Mike Rapoport To: Jonathan Corbet Cc: kernel test robot , Mike Rapoport , linux-mm@kvack.org, linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/2] docs/mm: Physical Memory: fix a reference to a file that doesn't exist Date: Fri, 24 Feb 2023 12:03:05 +0200 Message-Id: <20230224100306.2287696-1-rppt@kernel.org> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org From: "Mike Rapoport (IBM)" kbuild reports: >> Warning: Documentation/mm/physical_memory.rst references a file that doesn't exist: Documentation/admin-guide/mm/memory_hotplug.rst Fix the filename to be 'Documentation/admin-guide/mm/memory-hotplug.rst'. Reported-by: kernel test robot Link: https://lore.kernel.org/oe-kbuild-all/202302231311.567PAoS2-lkp@intel.com/ Fixes: 353c7dd636ed ("docs/mm: Physical Memory: remove useless markup") Signed-off-by: Mike Rapoport (IBM) --- Documentation/mm/physical_memory.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/mm/physical_memory.rst b/Documentation/mm/physical_memory.rst index f9d7ea4b9dca..1bc888d36ea1 100644 --- a/Documentation/mm/physical_memory.rst +++ b/Documentation/mm/physical_memory.rst @@ -66,7 +66,7 @@ one of the types described below. also populated on boot using one of ``kernelcore``, ``movablecore`` and ``movable_node`` kernel command line parameters. See Documentation/mm/page_migration.rst and - Documentation/admin-guide/mm/memory_hotplug.rst for additional details. + Documentation/admin-guide/mm/memory-hotplug.rst for additional details. * ``ZONE_DEVICE`` represents memory residing on devices such as PMEM and GPU. It has different characteristics than RAM zone types and it exists to provide -- 2.35.1