Received: by 2002:a25:824b:0:0:0:0:0 with SMTP id d11csp3907106ybn; Fri, 27 Sep 2019 13:09:18 -0700 (PDT) X-Google-Smtp-Source: APXvYqyCUGhI/DguY2jHoXvhuKB7f+hH7MoSJcYII5T4I0XQzr94rG9pnwjSREl6tP2aEh4Htq94 X-Received: by 2002:a50:fc0c:: with SMTP id i12mr6674584edr.82.1569614957907; Fri, 27 Sep 2019 13:09:17 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1569614957; cv=none; d=google.com; s=arc-20160816; b=gcyrWvT6vhK6Y2n3tWJOtSZm3SFalu2dfmSTEm4O1N3B5csUnugjBsvfF3holq/EF0 I3kTKKCFIjHOZ4Ffu+Q3zf091mSNMcH1zhTGnYmqNl84BKKUQ4Y5j9lOt6BFxfZPe0m6 qgrUdUL1Y4d20/oXqTd0mry2W05E7Mn6gDKgFbjD0hTeqPDJ6PoxUg2TTRXTEOINYIcP NnW3GAvRrs/lLoh7MHYOOppbkoGL6iPJFCAbPAPFyDQ0nxeuewnjIpt7SHqf92U3mAan 3qU0y8ixU029pDcdc9iBv2O0xXPEPJlBE4SG0UrGJEjrrlHUwxxezw9M0Nwd/AexL0QR W+uA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:from:user-agent:content-disposition :mime-version:message-id:subject:cc:to:date; bh=oIxXPr4uqBigEN92ec36MhuHNlhnxSU6mn4C3f5aL+o=; b=j4j1NF4p6kK+6kFGufY5eGaN6ydDY7ugA8x6/ciIelJHZHVF3udMArssrGuJ303u3F OBxl/nV62hI7MdaOSmyUwMkdsf+DsjEXeTZcHMIMPTikqaaak1RHaBvDQyAml5A/ny/I YEPYwGR9CA3pnoTyfq5jTIcCfjaANVfdrFTR+ds/+zgQ9JAEL5vP2+LlKPYrashiEDb9 uU7Nlm7jbtJY7OJwAWJlmw7GIDh704gZKMRavlRQdqHrZNnzL8isyvPBZ1Ywp4520bPm urhTjO1GWarrAXENBDSS+Y+S/JpMew75/7pqBAegGouiOHNPsxhiwDHCeqwFFExrMcAN 6eDA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-nfs-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-nfs-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id g11si3315349ejc.366.2019.09.27.13.08.40; Fri, 27 Sep 2019 13:09:17 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-nfs-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-nfs-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-nfs-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726036AbfI0UIj (ORCPT + 99 others); Fri, 27 Sep 2019 16:08:39 -0400 Received: from fieldses.org ([173.255.197.46]:35766 "EHLO fieldses.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725815AbfI0UIj (ORCPT ); Fri, 27 Sep 2019 16:08:39 -0400 Received: by fieldses.org (Postfix, from userid 2815) id 6356C1BE4; Fri, 27 Sep 2019 16:08:38 -0400 (EDT) Date: Fri, 27 Sep 2019 16:08:38 -0400 To: Linus Torvalds Cc: linux-nfs@vger.kernel.org, linux-kernel@vger.kernel.org, Chuck Lever Subject: [GIT PULL] nfsd changes for 5.4 Message-ID: <20190927200838.GA2618@fieldses.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) From: bfields@fieldses.org (J. Bruce Fields) Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org Please pull nfsd changes from: git://linux-nfs.org/~bfields/linux.git tags/nfsd-5.4 --b. ---------------------------------------------------------------- Highlights: - add a new knfsd file cache, so that we don't have to open and close on each (NFSv2/v3) READ or WRITE. This can speed up read and write in some cases. It also replaces our readahead cache. - Prevent silent data loss on write errors, by treating write errors like server reboots for the purposes of write caching, thus forcing clients to resend their writes. - Tweak the code that allocates sessions to be more forgiving, so that NFSv4.1 mounts are less likely to hang when a server already has a lot of clients. - Eliminate an arbitrary limit on NFSv4 ACL sizes; they should now be limited only by the backend filesystem and the maximum RPC size. - Allow the server to enforce use of the correct kerberos credentials when a client reclaims state after a reboot. And some miscellaneous smaller bugfixes and cleanup. ---------------------------------------------------------------- Dave Wysochanski (1): SUNRPC: Track writers of the 'channel' file to improve cache_listeners_exist include/linux/sunrpc/cache.h | 6 +++--- net/sunrpc/cache.c | 12 ++++++++---- 2 files changed, 11 insertions(+), 7 deletions(-)