From patchwork Mon Jul 17 20:52:39 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anna Schumaker X-Patchwork-Id: 13316589 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 3C7A8EB64DC for ; Mon, 17 Jul 2023 20:53:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231281AbjGQUx1 (ORCPT ); Mon, 17 Jul 2023 16:53:27 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43680 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231301AbjGQUxY (ORCPT ); Mon, 17 Jul 2023 16:53:24 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 270DC10DC for ; Mon, 17 Jul 2023 13:53:17 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 661816127D for ; Mon, 17 Jul 2023 20:52:44 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6A886C433CA; Mon, 17 Jul 2023 20:52:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1689627163; bh=8rk4YsBhatHs6nw4dwWS9Cf8lXaWPzEbw/xq2Wsz6to=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rSqr9uxOwTeBiCqdDYB9dS4JQoQrTCWjnvC02wjmQd3+ugwE6+AL75ezLHM4iaHTm 2Fr+ar0tHyfV7jrkaHSKPg7Sw8tWAOnfFvrCMOh0oihYDutCbv1fxSO0+mbcCHPoRP LeqxripUHwAd1VbQ91nZFgzs5lKsz7M+3yYZdVno20MY5kFYgR1mTCXJKqlu/mme/Q NxraHiuhWD03vxbTUs91NPu6hlQxAATjEGjhg77tOsXjdGLJ5dE8A2+T+olch2AFfb Pf8W66lEfi0tSJ8MQobHknc6oDqaIoT2y6tCJfNkXqcpC+RKcWj5Pos8/Q7wEt8yip JMAzXl5f1EplA== From: Anna Schumaker To: linux-nfs@vger.kernel.org, trond.myklebust@hammerspace.com Cc: anna@kernel.org, krzysztof.kozlowski@linaro.org Subject: [PATCH v5 5/5] NFS: Enable the READ_PLUS operation by default Date: Mon, 17 Jul 2023 16:52:39 -0400 Message-ID: <20230717205239.921002-6-anna@kernel.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230717205239.921002-1-anna@kernel.org> References: <20230717205239.921002-1-anna@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org From: Anna Schumaker Now that the remaining issues have been worked out, including some unexpected 32 bit issues, we can safely enable the feature by default. Signed-off-by: Anna Schumaker --- fs/nfs/Kconfig | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/fs/nfs/Kconfig b/fs/nfs/Kconfig index b6fc169be1b1..7df2503cef6c 100644 --- a/fs/nfs/Kconfig +++ b/fs/nfs/Kconfig @@ -209,8 +209,6 @@ config NFS_DISABLE_UDP_SUPPORT config NFS_V4_2_READ_PLUS bool "NFS: Enable support for the NFSv4.2 READ_PLUS operation" depends on NFS_V4_2 - default n + default y help - This is intended for developers only. The READ_PLUS operation has - been shown to have issues under specific conditions and should not - be used in production. + Choose Y here to enable use of the NFS v4.2 READ_PLUS operation.