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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id EA44EC6FD1F for ; Tue, 14 Mar 2023 18:48:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230229AbjCNSsd (ORCPT ); Tue, 14 Mar 2023 14:48:33 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52278 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230174AbjCNSsc (ORCPT ); Tue, 14 Mar 2023 14:48:32 -0400 Received: from ms.lwn.net (ms.lwn.net [IPv6:2600:3c01:e000:3a1::42]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 330CD4680; Tue, 14 Mar 2023 11:47:59 -0700 (PDT) Received: from localhost (unknown [IPv6:2601:281:8300:73::5f6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id B64F044A; Tue, 14 Mar 2023 18:47:00 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net B64F044A DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1678819620; bh=sA+YLYPr09cFZAdNXkCmHbvNl4qDsJMXs9WA5SzWBvc=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=KAc3oVnuRCy0qrK6ynpO+5haELILgdyVwkzTO/fHRR2hf2uWoROMhlKiwSpYfPUFc r6k1ivvqEuPMBi5UwHVt5Vg+EcORg+dz95CbZBlzkOOSbK4gOU8Qd7b9SJ6V0dLLEF sn6fsFEd1U56NPqW4Y7YP6HGwGqpf2cjPOSJ+ZP/6PdFe3klebLiXTRwk/++kAS4jR DYAdm/bthWip50SlhYtGmbaqzU0doXyMOTlKDzBg8zPQm5g7ZGSFZg4/wNc1aPZhwy kSo/IlvMfmLdqr5ho+KBQBmbXpphk5NsTLvvk74nR8i+/1ZVe1Y4k0dNVErRFpMRDv Uuc3IHtz8H0Lw== From: Jonathan Corbet To: Randy Dunlap , linux-kernel@vger.kernel.org Cc: Randy Dunlap , linux-doc@vger.kernel.org, Trond Myklebust , Anna Schumaker , Chuck Lever , Jeff Layton , linux-nfs@vger.kernel.org Subject: Re: [PATCH] Documentation: kernel-parameters: sort NFS parameters In-Reply-To: <20230227025816.1083-1-rdunlap@infradead.org> References: <20230227025816.1083-1-rdunlap@infradead.org> Date: Tue, 14 Mar 2023 12:46:59 -0600 Message-ID: <871qlrrx0c.fsf@meer.lwn.net> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org Randy Dunlap writes: > Sort the NFS kernel command line parameters. This is done in 4 groups > so as to not have them intermingled: 'nfs' module parameters, 'nfs4' > module parameters, 'nfsd' module parameters, and nfs "global" (__setup, > no module) parameters. > > There were 5 parameters which were listed with a space between the > parameter name and the following '=' sign. The space has been > removed since module parameters expect 'parameter=' with no intervening > space. > > Signed-off-by: Randy Dunlap > Cc: Jonathan Corbet > Cc: linux-doc@vger.kernel.org > Cc: Trond Myklebust > Cc: Anna Schumaker > Cc: Chuck Lever > Cc: Jeff Layton > Cc: linux-nfs@vger.kernel.org > --- > Documentation/admin-guide/kernel-parameters.txt | 74 +++++++------- > 1 file changed, 37 insertions(+), 37 deletions(-) Applied, thanks. jon