From patchwork Wed May 22 20:50:29 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Corbet X-Patchwork-Id: 164899 Delivered-To: patch@linaro.org Received: by 2002:a92:9e1a:0:0:0:0:0 with SMTP id q26csp1328524ili; Wed, 22 May 2019 13:51:23 -0700 (PDT) X-Google-Smtp-Source: APXvYqylMqL5p8Be1sBdsmOe4xcUNBN/3bMDdLjjMs9gAWJ5i2rHfjuywmJVyI5gZh9q5wDP3wS5 X-Received: by 2002:a17:902:3343:: with SMTP id a61mr92196766plc.90.1558558283401; Wed, 22 May 2019 13:51:23 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1558558283; cv=none; d=google.com; s=arc-20160816; b=a8bJgK+/1JE3trQE6+op5AE/gXCtFmoZR56uNVpoR5PeCgGu9StLPDFh+yOUU6vl/i HyLdLDxlkJCbsNvsGPexzlMxbziU1axF2LYoHMpRBGqu3CqskYBS84d4o8OUydnajth5 3HMqQAWg1rY0dbr7yS4bjJhZAmosJcgL0gIhL84j/nOX2aSOuXAVcVQksdktWeIrU33w VHAffRAZctiR4KKcfnmZr5dJp4jQ48ahfqVBsT2WVhKOMAzZ9c2djHqsN/3JRJyhApbK xepbglNg7X3wljZcRBwZ2xT0hzh2WCJDK/Tgehv+MyyAoq2PMpRTiAgDNvUBmJ7sYH7m GzVA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=6L4QxulFAF1wGTlg7UugW3f0X7wQimFu4JY2QjLZMt4=; b=KZU8fZCOV5XPMTEobjsQNvG5JQsgwvYzsXu0/Bz81pH5070rEFK/hBJP10JzfqvklB gJzI0uG+12so7XeMWVK5WAdQBOBXnYa/497DDznpEkJtwKHTc9nL4sszd7gLIHBVSsD7 EmWWdIPK6+H2hktDMFcuq+69lF/Lhj0DAuRjoWEsFjHaS/DeaIGpAKB4g3qaw1Vfw1M4 FxFd1O3uwpdAkXsoasEOxK/uboct1o6b4UYDnM1miOut+ihEJS+bnHemFT4lHdTG1XGr 7P9b1WfoqTDnoPBhG+V/zc7eGVBXBTLBZLvB38GM+eRn41S7G/xcg8vV5FeDjJHulnXN zSAw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id q89si2818623pfa.155.2019.05.22.13.51.23; Wed, 22 May 2019 13:51:23 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730491AbfEVUvW (ORCPT + 30 others); Wed, 22 May 2019 16:51:22 -0400 Received: from ms.lwn.net ([45.79.88.28]:49340 "EHLO ms.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730247AbfEVUu6 (ORCPT ); Wed, 22 May 2019 16:50:58 -0400 Received: from meer.lwn.net (localhost [127.0.0.1]) by ms.lwn.net (Postfix) with ESMTPA id 54C0BAB5; Wed, 22 May 2019 20:50:57 +0000 (UTC) From: Jonathan Corbet To: linux-doc@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Jani Nikula , Markus Heiser , Mauro Carvalho Chehab , Oleksandr Natalenko , Jonathan Corbet , Keith Busch , Mike Rapoport Subject: [PATCH 3/8] docs: fix numaperf.rst and add it to the doc tree Date: Wed, 22 May 2019 14:50:29 -0600 Message-Id: <20190522205034.25724-4-corbet@lwn.net> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190522205034.25724-1-corbet@lwn.net> References: <20190522205034.25724-1-corbet@lwn.net> MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit 13bac55ef7ae ("doc/mm: New documentation for memory performance") added numaperf.rst, but did not add it to the TOC tree. There was also an incorrectly marked literal block leading to this warning sequence: numaperf.rst:24: WARNING: Unexpected indentation. numaperf.rst:24: WARNING: Inline substitution_reference start-string without end-string. numaperf.rst:25: WARNING: Block quote ends without a blank line; unexpected unindent. Fix the block and add the file to the document tree. Fixes: 13bac55ef7ae ("doc/mm: New documentation for memory performance") Cc: Keith Busch Cc: Mike Rapoport Signed-off-by: Jonathan Corbet --- Documentation/admin-guide/mm/index.rst | 1 + Documentation/admin-guide/mm/numaperf.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) -- 2.21.0 Reviewed-by: Mike Rapoport diff --git a/Documentation/admin-guide/mm/index.rst b/Documentation/admin-guide/mm/index.rst index 8edb35f11317..ddf8d8d33377 100644 --- a/Documentation/admin-guide/mm/index.rst +++ b/Documentation/admin-guide/mm/index.rst @@ -31,6 +31,7 @@ the Linux memory management. ksm memory-hotplug numa_memory_policy + numaperf pagemap soft-dirty transhuge diff --git a/Documentation/admin-guide/mm/numaperf.rst b/Documentation/admin-guide/mm/numaperf.rst index b79f70c04397..c067ed145158 100644 --- a/Documentation/admin-guide/mm/numaperf.rst +++ b/Documentation/admin-guide/mm/numaperf.rst @@ -15,7 +15,7 @@ characteristics. Some memory may share the same node as a CPU, and others are provided as memory only nodes. While memory only nodes do not provide CPUs, they may still be local to one or more compute nodes relative to other nodes. The following diagram shows one such example of two compute -nodes with local memory and a memory only node for each of compute node: +nodes with local memory and a memory only node for each of compute node:: +------------------+ +------------------+ | Compute Node 0 +-----+ Compute Node 1 |