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=-7.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=no 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 A333FC433E6 for ; Mon, 31 Aug 2020 04:53:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 7DE9E20738 for ; Mon, 31 Aug 2020 04:53:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1598849603; bh=zZlZOKBvQCa9q1swSMh6UKazBpijMwGQCUZNTNlXztU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=RAmcZcBWHSaOgrgVYHntcSXHigyvuyMuoONueLA7iiz98kifWaHgy8FEYK20p3Ut4 x/yt9lba6uUOhabM2BJBKS0C6KQHak+BLkO21mq3Fm40iz3gfjD7A6bnAvwuIZIvLc Ypo5NQGsCCndg+IIp7806NFZb6Mg4CkIjBoSVVX8= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725937AbgHaExS (ORCPT ); Mon, 31 Aug 2020 00:53:18 -0400 Received: from mail.kernel.org ([198.145.29.99]:50604 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725794AbgHaExR (ORCPT ); Mon, 31 Aug 2020 00:53:17 -0400 Received: from kernel.org (unknown [87.70.91.42]) (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 23D7D20719; Mon, 31 Aug 2020 04:53:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1598849597; bh=zZlZOKBvQCa9q1swSMh6UKazBpijMwGQCUZNTNlXztU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=sysjg2+1Cv9h8cmqonDwElO0pcD0zLnWB9hmNm9fLcAECJaliJXg14ddaG0Imyyi6 RZ5HBq+aGuzlq61pmu8RpIbg3R4k2JEJsVmeKxWMSjz4FWrXJmMSBM0mMtNzE5xtZ1 g3QUWuaIxKJdBDbg/TVQ1yM0zCJ38fgOQ5O3hbkU= Date: Mon, 31 Aug 2020 07:53:11 +0300 From: Mike Rapoport To: Randy Dunlap Cc: LKML , "linux-next@vger.kernel.org" , "linux-doc@vger.kernel.org" , Jonathan Corbet Subject: Re: [PATCH v2] Documentation: submit-checklist: add clean builds for new Documentation Message-ID: <20200831045311.GB432455@kernel.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: linux-next-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-next@vger.kernel.org On Sun, Aug 30, 2020 at 05:43:54PM -0700, Randy Dunlap wrote: > From: Randy Dunlap > > Add to Documentation/process/submit-checklist.rst that patch > submitters should run "make htmldocs" and verify that any > Documentation/ changes (patches) are clean (no new warnings/errors). > > Signed-off-by: Randy Dunlap > Cc: Mike Rapoport Reviewed-by: Mike Rapoport > --- > v2: insert "new" inside "without warnings/errors" (Mike) > > Documentation/process/submit-checklist.rst | 4 ++++ > 1 file changed, 4 insertions(+) > > --- linux-next-20200821.orig/Documentation/process/submit-checklist.rst > +++ linux-next-20200821/Documentation/process/submit-checklist.rst > @@ -24,6 +24,10 @@ and elsewhere regarding submitting Linux > > c) Builds successfully when using ``O=builddir`` > > + d) Any Documentation/ changes build successfully without new warnings/errors. > + Use ``make htmldocs`` or ``make pdfdocs`` to check the build and > + fix any issues. > + > 3) Builds on multiple CPU architectures by using local cross-compile tools > or some other build farm. > > -- Sincerely yours, Mike.