From patchwork Wed Jan 3 15:19:30 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 13510200 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 06D561A726; Wed, 3 Jan 2024 15:19:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Kugt6KIA" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C822BC433C8; Wed, 3 Jan 2024 15:19:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1704295172; bh=vgFckl7sis6cgkqsmIhf+TxrHwPjTfuBkdunPtTkBz0=; h=Subject:From:To:Cc:Date:From; b=Kugt6KIA2BaOflKwArKk0JMHW9V7hRS9sNl98bb0qEWaupRf3DK29g1U9YkS1bQt5 0+Ymgnj535kF7E5Mo9sJkSnpX/3XEEuf9WiBnsrzOUOxhOABxeKub+gDqCzD+nH5+B 1sZQkLZXSrop8TLe+cpF6m2NVHg1a59JaaUv3tspb9tVCGiW4OD0DTDn/XBMA6kyl9 yjZalvXoPiqdbHn6msd2pA8FoDlFVrf2il7InIzihoi7m/m0A7bnLEb/dAQIhB64dC B6Q5qvm8XaoymiuQ3hLWENX1jVQFGAuZRSlArT8xE+0pjhdrCZdpIRuAU8RRBGMRls WhXe1C+CQkscQ== Subject: [PATCH v2 0/2] fix the fallback implementation of get_name From: Chuck Lever To: jlayton@redhat.com, amir73il@gmail.com Cc: Jeff Layton , Trond Myklebust , Chuck Lever , linux-fsdevel@vger.kernel.org, linux-nfs@vger.kernel.org, trondmy@hammerspace.com, viro@zeniv.linux.org.uk, brauner@kernel.org Date: Wed, 03 Jan 2024 10:19:30 -0500 Message-ID: <170429478711.50646.12675561629884992953.stgit@bazille.1015granger.net> User-Agent: StGit/1.5 Precedence: bulk X-Mailing-List: linux-nfs@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 I've set up a testing topic branch for exportfs in my kernel.org git repo: https://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git But IIRC, Christian wants exportfs changes to go through the VFS tree. Please correct me if I'm wrong. Changes since v1: - Fixes: was dropped from 1/2 - Added a patch to hoist is_dot_dotdot() into linux/fs.h --- Chuck Lever (1): fs: Create a generic is_dot_dotdot() utility Trond Myklebust (1): exportfs: fix the fallback implementation of the get_name export operation fs/crypto/fname.c | 8 +------- fs/ecryptfs/crypto.c | 10 ---------- fs/exportfs/expfs.c | 2 +- fs/f2fs/f2fs.h | 11 ----------- include/linux/fs.h | 9 +++++++++ 5 files changed, 11 insertions(+), 29 deletions(-) -- Chuck Lever