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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7B48AC433FE for ; Mon, 11 Oct 2021 08:22:02 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 6367960ED4 for ; Mon, 11 Oct 2021 08:22:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235085AbhJKIX7 (ORCPT ); Mon, 11 Oct 2021 04:23:59 -0400 Received: from us-smtp-delivery-124.mimecast.com ([170.10.129.124]:52119 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235040AbhJKIXT (ORCPT ); Mon, 11 Oct 2021 04:23:19 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1633940479; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=iUT00SFFMSyhOoEnBK2kV8REPmBQWV8bxInejpzsCM8=; b=HxvVFWUM0A+fkSPFqH8o75zV0R/DaOWuyigG1AwvG6JfNdfCjaF8RnaCkd3scUDzu//ajw F/0jLGK6kdJI6avbY8dRCuGep6ZsF8WKqeJtpdsSGyoXKCJFiDTwH/akcsgTpaK0ZFMiOB AJlcdeEsCndTNdIiNuE6Z7Ly8/VX1y4= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-3-I-rhEkf_MhatSmPAKr0lJQ-1; Mon, 11 Oct 2021 04:21:14 -0400 X-MC-Unique: I-rhEkf_MhatSmPAKr0lJQ-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 83E3C801A93; Mon, 11 Oct 2021 08:21:12 +0000 (UTC) Received: from t480s.redhat.com (unknown [10.39.192.99]) by smtp.corp.redhat.com (Postfix) with ESMTP id E6B095C232; Mon, 11 Oct 2021 08:21:07 +0000 (UTC) From: David Hildenbrand To: linux-kernel@vger.kernel.org Cc: David Hildenbrand , Andrew Morton , Jonathan Corbet , Michal Hocko , Oscar Salvador , Mike Rapoport , linux-doc@vger.kernel.org, linux-mm@kvack.org Subject: [PATCH v2 2/3] memory-hotplug.rst: fix wrong /sys/module/memory_hotplug/parameters/ path Date: Mon, 11 Oct 2021 10:20:57 +0200 Message-Id: <20211011082058.6076-3-david@redhat.com> In-Reply-To: <20211011082058.6076-1-david@redhat.com> References: <20211011082058.6076-1-david@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org We accidentially added a superfluous "s". Fixes: ac3332c44767 ("memory-hotplug.rst: complete admin-guide overhaul") Signed-off-by: David Hildenbrand --- Documentation/admin-guide/mm/memory-hotplug.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/admin-guide/mm/memory-hotplug.rst b/Documentation/admin-guide/mm/memory-hotplug.rst index 27d748cb6ee0..ee00b70dedde 100644 --- a/Documentation/admin-guide/mm/memory-hotplug.rst +++ b/Documentation/admin-guide/mm/memory-hotplug.rst @@ -410,7 +410,7 @@ them with ``memory_hotplug.`` such as:: and they can be observed (and some even modified at runtime) via:: - /sys/modules/memory_hotplug/parameters/ + /sys/module/memory_hotplug/parameters/ The following module parameters are currently defined: -- 2.31.1