From patchwork Tue Mar 3 14:40: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: 11418271 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 4A59D174A for ; Tue, 3 Mar 2020 14:40:13 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 2A28D208C3 for ; Tue, 3 Mar 2020 14:40:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583246413; bh=OLtvri7lhnPMBPe2kuKdN8A2xr5mHeejJQsjos9PaT4=; h=From:Cc:Subject:Date:To:List-ID:From; b=JoX+RT5UipYK+xOWK5ikVZW1Brrnq94VRph/r1lZBB18xGtCxi4Tgc6nxfwLkaZ3+ p8EKFcn6tFIre8khmtkmSp1VWHTUeMkEuJ0GfrcCRM/e8MU1yju+dNxpf7ubEjoPFW I0GCyEvg9Gb7SRngcc+eTkVHTHCaezzNnpU2P9Bs= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729060AbgCCOkM (ORCPT ); Tue, 3 Mar 2020 09:40:12 -0500 Received: from mail.kernel.org ([198.145.29.99]:35072 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729071AbgCCOkM (ORCPT ); Tue, 3 Mar 2020 09:40:12 -0500 Received: from mail.kernel.org (x2f7fa80.dyn.telefonica.de [2.247.250.128]) (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 CEEFF20842; Tue, 3 Mar 2020 14:40:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583246412; bh=OLtvri7lhnPMBPe2kuKdN8A2xr5mHeejJQsjos9PaT4=; h=From:To:Cc:Subject:Date:From; b=soQZS0PFPpb8dUqmzdhsEesrugGrP0eZXheu+g7uoWeoNg2UIVB3dqMjcrplvsndz E3XOO8IujDiOdMXpH1/DDyuNxlHg8FJpfI0tZ4+XdP0gBElXPpcyL1T098hAfIhD2S dK4kqE2pPhdGYZalpbUMK0EaCQSEG/KL3vjRySog= Received: from mchehab by mail.kernel.org with local (Exim 4.92.3) (envelope-from ) id 1j98iP-001Z0l-Eu; Tue, 03 Mar 2020 15:40:09 +0100 From: Mauro Carvalho Chehab Cc: Mauro Carvalho Chehab , Borislav Petkov , Tony Luck , James Morse , Robert Richter , Jonathan Corbet , linux-edac@vger.kernel.org, linux-doc@vger.kernel.org Subject: [PATCH 1/2] docs: ras: get rid of some warnings Date: Tue, 3 Mar 2020 15:40:07 +0100 Message-Id: <0008bd9f16d5d02148501f5a1ba873245af1cab7.1583246400.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 To: unlisted-recipients:; (no To-header on input) 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 Tue Mar 3 14:40: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: 11418269 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 1FD05924 for ; Tue, 3 Mar 2020 14:40:13 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id F2B5D2086A for ; Tue, 3 Mar 2020 14:40:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583246413; bh=fOlAZzT1uFFH2gmcV3PqAjmawyfv+6vChFB4f6HcX6Q=; h=From:Cc:Subject:Date:In-Reply-To:References:To:List-ID:From; b=OsmL0MFBCD6eAVyA4BRbrr//oCzYf1gUNhsRCEGOcwegC99MnhQ6WMWHyEZMMP+Q4 R8jX6rUQDbdQpTe2TdG1X2ECyqxIUfKaCew11yRvSC0G2tJQWbFdGox0D2YgY05kqg rzVldl5z0EWmzVzKv1pwtBF1TIejZds6XQtdXdak= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729286AbgCCOkM (ORCPT ); Tue, 3 Mar 2020 09:40:12 -0500 Received: from mail.kernel.org ([198.145.29.99]:35064 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729060AbgCCOkM (ORCPT ); Tue, 3 Mar 2020 09:40:12 -0500 Received: from mail.kernel.org (x2f7fa80.dyn.telefonica.de [2.247.250.128]) (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 CCFE52083E; Tue, 3 Mar 2020 14:40:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1583246412; bh=fOlAZzT1uFFH2gmcV3PqAjmawyfv+6vChFB4f6HcX6Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mWTOYxjnCu92lmoa9T9HTuAhtIZuaFFCkQIoH3cM4DzZr6FxHQWC+LA+wsyT2Es8n lhcSqQ+cOCtlQrg1/0alSe0fyRm/ZsiVMMROCNvmy0tw8Pfqmvk/TDh0uyK9LA+XF5 8zPNnRVAd5J1krFCGBXk3cYpUYmNp25o2ASOkPgU= Received: from mchehab by mail.kernel.org with local (Exim 4.92.3) (envelope-from ) id 1j98iP-001Z0o-Fy; Tue, 03 Mar 2020 15:40:09 +0100 From: Mauro Carvalho Chehab Cc: Mauro Carvalho Chehab , Tony Luck , Borislav Petkov , James Morse , Robert Richter , Jonathan Corbet , linux-edac@vger.kernel.org, linux-doc@vger.kernel.org Subject: [PATCH 2/2] docs: ras: don't need to repeat twice the same thing Date: Tue, 3 Mar 2020 15:40:08 +0100 Message-Id: X-Mailer: git-send-email 2.24.1 In-Reply-To: <0008bd9f16d5d02148501f5a1ba873245af1cab7.1583246400.git.mchehab+huawei@kernel.org> References: <0008bd9f16d5d02148501f5a1ba873245af1cab7.1583246400.git.mchehab+huawei@kernel.org> MIME-Version: 1.0 To: unlisted-recipients:; (no To-header on input) 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 -------