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 X-Spam-Level: X-Spam-Status: No, score=-15.5 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 36C9CC433DB for ; Tue, 9 Feb 2021 04:07:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EE9F464EAA for ; Tue, 9 Feb 2021 04:07:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229611AbhBIEGR (ORCPT ); Mon, 8 Feb 2021 23:06:17 -0500 Received: from sandeen.net ([63.231.237.45]:48680 "EHLO sandeen.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229824AbhBIEDS (ORCPT ); Mon, 8 Feb 2021 23:03:18 -0500 Received: from liberator.sandeen.net (liberator.sandeen.net [10.0.0.146]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by sandeen.net (Postfix) with ESMTPSA id 041AE5A0A5; Mon, 8 Feb 2021 22:00:01 -0600 (CST) To: "Darrick J. Wong" , xfs References: <20210209021843.GP7193@magnolia> From: Eric Sandeen Subject: Re: [PATCH] xfs: fix rst syntax error in admin guide Message-ID: <1dea20c1-f261-e74a-fd6a-7c51974b3142@sandeen.net> Date: Mon, 8 Feb 2021 22:02:16 -0600 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:78.0) Gecko/20100101 Thunderbird/78.7.1 MIME-Version: 1.0 In-Reply-To: <20210209021843.GP7193@magnolia> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org On 2/8/21 8:18 PM, Darrick J. Wong wrote: > From: Darrick J. Wong > > Tables are supposed to have a matching line of "===" to signal the end > of a table. The rst compiler gets grouchy if it encounters EOF instead, > so fix this warning. > > Reported-by: Stephen Rothwell > Signed-off-by: Darrick J. Wong Reviewed-by: Eric Sandeen > --- > Documentation/admin-guide/xfs.rst | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/Documentation/admin-guide/xfs.rst b/Documentation/admin-guide/xfs.rst > index d2064a52811b..6178153d3320 100644 > --- a/Documentation/admin-guide/xfs.rst > +++ b/Documentation/admin-guide/xfs.rst > @@ -536,3 +536,4 @@ The interesting knobs for XFS workqueues are as follows: > cpumask CPUs upon which the threads are allowed to run. > nice Relative priority of scheduling the threads. These are the > same nice levels that can be applied to userspace processes. > +============ =========== >