From patchwork Wed Apr 8 15:46:07 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mauro Carvalho Chehab X-Patchwork-Id: 11480447 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5878617D4 for ; Wed, 8 Apr 2020 15:48:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 39D2F20769 for ; Wed, 8 Apr 2020 15:48:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1586360911; bh=YrKwSCyyL6nlO0cCOhfxnQbvUXb9v0CXNYMRM9FudAE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=UvSUb/yVca1gyhu0HJgFtGwysPUBdaAXw84PqAYGzyJkMVlkoA1/oaju7QBFwtVBf uxL9AR9XsqMtuFVqivHjC+uZjrPMkwq4XccGX1vEmBG41P56Ayfnhbzcu95ZPol1mi av698nWAn/NPAYFum25rTsTvn/vhKq31zQ50M4Y0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729749AbgDHPsa (ORCPT ); Wed, 8 Apr 2020 11:48:30 -0400 Received: from mail.kernel.org ([198.145.29.99]:49356 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729663AbgDHPqc (ORCPT ); Wed, 8 Apr 2020 11:46:32 -0400 Received: from mail.kernel.org (ip5f5ad4d8.dynamic.kabel-deutschland.de [95.90.212.216]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 720FD21744; Wed, 8 Apr 2020 15:46:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1586360791; bh=YrKwSCyyL6nlO0cCOhfxnQbvUXb9v0CXNYMRM9FudAE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=V2yl18RL6fQ8x84NU8RCm7vM++jqIRw3e3wNGTchAaAKSMi2CB5aLvyZKlZW/r+MJ w6tywCe8nxmFlztFY4P6rJUAGDTN6VbSHvpUJvgbvg79nSp3UBFIu9jxqd6NvrcoKU t7lL0pf/oAEuhBEdZerOagYAvXl3/8jjGtFq3EmM= Received: from mchehab by mail.kernel.org with local (Exim 4.92.3) (envelope-from ) id 1jMCuL-000cBS-KZ; Wed, 08 Apr 2020 17:46:29 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Jonathan Corbet , Tony Luck , Borislav Petkov , James Morse , Robert Richter , linux-edac@vger.kernel.org Subject: [PATCH 15/35] docs: ras: get rid of some warnings Date: Wed, 8 Apr 2020 17:46:07 +0200 Message-Id: X-Mailer: git-send-email 2.25.2 In-Reply-To: References: MIME-Version: 1.0 Sender: linux-edac-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-edac@vger.kernel.org Sphinx produce some warnings due to a bad table format: Documentation/admin-guide/ras.rst:358: WARNING: Definition list ends without a blank line; unexpected unindent. Documentation/admin-guide/ras.rst:358: WARNING: Definition list ends without a blank line; unexpected unindent. Documentation/admin-guide/ras.rst:363: WARNING: Definition list ends without a blank line; unexpected unindent. Documentation/admin-guide/ras.rst:363: WARNING: Definition list ends without a blank line; unexpected unindent. Rearrange the things there in order to supress the warnings while being precise at the Sphinx output about how ranks are mapped into csrows. Signed-off-by: Mauro Carvalho Chehab --- Documentation/admin-guide/ras.rst | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/Documentation/admin-guide/ras.rst b/Documentation/admin-guide/ras.rst index 0310db624964..22b31bc7e129 100644 --- a/Documentation/admin-guide/ras.rst +++ b/Documentation/admin-guide/ras.rst @@ -351,15 +351,17 @@ controllers. The following example will assume 2 channels: +------------+-----------+-----------+ | | ``ch0`` | ``ch1`` | +============+===========+===========+ - | ``csrow0`` | DIMM_A0 | DIMM_B0 | - | | rank0 | rank0 | - +------------+ - | - | + | |**DIMM_A0**|**DIMM_B0**| + +------------+-----------+-----------+ + | ``csrow0`` | rank0 | rank0 | + +------------+-----------+-----------+ | ``csrow1`` | rank1 | rank1 | +------------+-----------+-----------+ - | ``csrow2`` | DIMM_A1 | DIMM_B1 | - | | rank0 | rank0 | - +------------+ - | - | - | ``csrow3`` | rank1 | rank1 | + | |**DIMM_A1**|**DIMM_B1**| + +------------+-----------+-----------+ + | ``csrow2`` | rank0 | rank0 | + +------------+-----------+-----------+ + | ``csrow3`` | rank1 | rank1 | +------------+-----------+-----------+ In the above example, there are 4 physical slots on the motherboard From patchwork Wed Apr 8 15:46:08 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mauro Carvalho Chehab X-Patchwork-Id: 11480437 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id BF319112C for ; Wed, 8 Apr 2020 15:48:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9753620936 for ; Wed, 8 Apr 2020 15:48:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1586360902; bh=qbLirr5OJzkGy9BaDKpusPauYxAyPeK4aOYcI5WQ1pU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=NwbDDiv5Q3Lea2ZfASAnv2kd+I0b4+c0F9mScvvND0g7sutDosk3qea4uyZPiw/pE b+A9SUf/Mb9DjTQPNIg/v4VvnzGR4ayFVmln/vn7dl++4NpgHWP2mnPvYlaVV0TiPC ChmNwqufzGzVVeA6Z2Nv2rSAy0MLzYdUot5+6s1k= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729940AbgDHPr7 (ORCPT ); Wed, 8 Apr 2020 11:47:59 -0400 Received: from mail.kernel.org ([198.145.29.99]:49356 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729672AbgDHPqd (ORCPT ); Wed, 8 Apr 2020 11:46:33 -0400 Received: from mail.kernel.org (ip5f5ad4d8.dynamic.kabel-deutschland.de [95.90.212.216]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 90A1321927; Wed, 8 Apr 2020 15:46:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1586360791; bh=qbLirr5OJzkGy9BaDKpusPauYxAyPeK4aOYcI5WQ1pU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bMMcazz4AvVcJzJ3VI5y9jhVCwiFxY/Nihb4o/E/xiFYwgplIk6Sg4seV9oK1yQoQ JqNxA4nVZ/HR2JMukK3bHaSNOUIU8dTABP6qmdDtQ7FoZP+6vtgL9XcbtQJZazynLa 4fkgh1PWFRs1pfFR7K/+xc8CHXA2n3pjwLcrHxfI= Received: from mchehab by mail.kernel.org with local (Exim 4.92.3) (envelope-from ) id 1jMCuL-000cBX-Lm; Wed, 08 Apr 2020 17:46:29 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , linux-kernel@vger.kernel.org, Jonathan Corbet , Borislav Petkov , Tony Luck , James Morse , Robert Richter , linux-edac@vger.kernel.org Subject: [PATCH 16/35] docs: ras: don't need to repeat twice the same thing Date: Wed, 8 Apr 2020 17:46:08 +0200 Message-Id: <9d3a0429368077d51a8ff1a160f89ee0f67bf8d4.1586359676.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.25.2 In-Reply-To: References: MIME-Version: 1.0 Sender: linux-edac-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-edac@vger.kernel.org We don't need to say twice "for the first time" at the same paragraph. Signed-off-by: Mauro Carvalho Chehab --- Documentation/admin-guide/ras.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/admin-guide/ras.rst b/Documentation/admin-guide/ras.rst index 22b31bc7e129..6cbaab975ee5 100644 --- a/Documentation/admin-guide/ras.rst +++ b/Documentation/admin-guide/ras.rst @@ -212,7 +212,7 @@ EDAC - Error Detection And Correction purposes. When the subsystem was pushed upstream for the first time, on - Kernel 2.6.16, for the first time, it was renamed to ``EDAC``. + Kernel 2.6.16, it was renamed to ``EDAC``. Purpose -------