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 48653C4332F for ; Thu, 30 Sep 2021 14:41:43 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id D4B0C61A0A for ; Thu, 30 Sep 2021 14:41:42 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org D4B0C61A0A Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=kvack.org Received: by kanga.kvack.org (Postfix) id 5E1839400B2; Thu, 30 Sep 2021 10:41:42 -0400 (EDT) Received: by kanga.kvack.org (Postfix, from userid 40) id 5918194003A; Thu, 30 Sep 2021 10:41:42 -0400 (EDT) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 480009400B2; Thu, 30 Sep 2021 10:41:42 -0400 (EDT) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0102.hostedemail.com [216.40.44.102]) by kanga.kvack.org (Postfix) with ESMTP id 36CCF94003A for ; Thu, 30 Sep 2021 10:41:42 -0400 (EDT) Received: from smtpin39.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay01.hostedemail.com (Postfix) with ESMTP id E045318448E4F for ; Thu, 30 Sep 2021 14:41:41 +0000 (UTC) X-FDA: 78644503602.39.1DFFD14 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by imf21.hostedemail.com (Postfix) with ESMTP id 8AE12D033E75 for ; Thu, 30 Sep 2021 14:41:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1633012901; 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; bh=M683Nfwi+Qwa+QeYmYLqVJwdqSP0cOrdel4JB8DY0Zg=; b=V320J+/UuZkbES8zO9nF8WZ2li6LmcDkoaRc4Wbe3tP1ZFCSwQDXLXzct2dDf65ks8qJUL EkeywmYGtIwB29zQqGMw3GI5oGh/a78jYvqWXoBO6KQIrcq+7ajySFP8mDKZV8ohWhXZ6d guLrcluVAuzpl6edt16/4tGhkMbyuBI= 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-590-adjHt0RpPLWLEb7zehUeKg-1; Thu, 30 Sep 2021 10:41:37 -0400 X-MC-Unique: adjHt0RpPLWLEb7zehUeKg-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 9F1585721F; Thu, 30 Sep 2021 14:41:35 +0000 (UTC) Received: from t480s.redhat.com (unknown [10.39.194.155]) by smtp.corp.redhat.com (Postfix) with ESMTP id 75BF25F4E1; Thu, 30 Sep 2021 14:41:18 +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 v1 0/3] memory-hotplug.rst: document the "auto-movable" online policy Date: Thu, 30 Sep 2021 16:41:14 +0200 Message-Id: <20210930144117.23641-1-david@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Rspamd-Server: rspam03 X-Rspamd-Queue-Id: 8AE12D033E75 X-Stat-Signature: 3qqjxwzsn9qgb35t3q5fkbi4gjh669yy Authentication-Results: imf21.hostedemail.com; dkim=pass header.d=redhat.com header.s=mimecast20190719 header.b="V320J+/U"; dmarc=pass (policy=none) header.from=redhat.com; spf=none (imf21.hostedemail.com: domain of david@redhat.com has no SPF policy when checking 170.10.133.124) smtp.mailfrom=david@redhat.com X-HE-Tag: 1633012901-697201 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: As promised, now that the memory-hotplug.rst overhaul is upstream, proper documentation for the "auto-movable" online policy, documenting all new toggles and options. Along, two fixes for the original overhaul. Cc: Andrew Morton Cc: Jonathan Corbet Cc: Michal Hocko Cc: Oscar Salvador Cc: Mike Rapoport Cc: linux-doc@vger.kernel.org Cc: linux-mm@kvack.org David Hildenbrand (3): memory-hotplug.rst: fix two instances of "movablecore" that should be "movable_node" memory-hotplug.rst: fix wrong /sys/module/memory_hotplug/parameters/ path memory-hotplug.rst: document the "auto-movable" online policy .../admin-guide/mm/memory-hotplug.rst | 130 +++++++++++++++--- 1 file changed, 109 insertions(+), 21 deletions(-) --=20 2.31.1