From patchwork Mon Oct 19 17:53:29 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Trond Myklebust X-Patchwork-Id: 11844893 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 8B10115E6 for ; Mon, 19 Oct 2020 17:55:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 629D7222EC for ; Mon, 19 Oct 2020 17:55:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603130151; bh=1v3Q2sMjc8fujTF7npWDORM8e/P0fREP6LClJvLihwc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=UEQFOXoFvWddHpycy5nYSVP2/W3rNSh7+21IVhvptwTLmyUnFHpxKHhoVgp9X3syc O8q7YeuRKCzo7WTULmLAOoaAHH+p0joKH3IY8hcft9GbZvGogtCcviz33OpYvYHJ9T 7zi1gkp6D6kaUXww7hbbsJZoq+HH5TKzDRWPTRdw= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728429AbgJSRzu (ORCPT ); Mon, 19 Oct 2020 13:55:50 -0400 Received: from mail.kernel.org ([198.145.29.99]:52408 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726005AbgJSRzu (ORCPT ); Mon, 19 Oct 2020 13:55:50 -0400 Received: from localhost.localdomain (c-68-36-133-222.hsd1.mi.comcast.net [68.36.133.222]) (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 D12EE2225F; Mon, 19 Oct 2020 17:55:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603130150; bh=1v3Q2sMjc8fujTF7npWDORM8e/P0fREP6LClJvLihwc=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WU3s9+Fgpe8LdHodbsEtCjtHeHRw88JQs5b4FplTPKphKcNzhLeFbm+sKAq9ggZ4E gNMfQf3r+R6BS7nRh5o2FOqc/vAvf7FVcTeIIVI3Xpah1+AilodfXwIuJJFAWo2xSp DusZdHvMmoqXZjwdH4eQmmzYAIn1BMsCdKfJs9JI= From: trondmy@kernel.org To: Daire Byrne Cc: linux-nfs@vger.kernel.org Subject: [PATCH 1/2] NFSv3: Refactor nfs3_proc_lookup() to split out the dentry Date: Mon, 19 Oct 2020 13:53:29 -0400 Message-Id: <20201019175330.595894-2-trondmy@kernel.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20201019175330.595894-1-trondmy@kernel.org> References: <279389889.68934777.1603124383614.JavaMail.zimbra@dneg.com> <20201019175330.595894-1-trondmy@kernel.org> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org From: Trond Myklebust We want to reuse the lookup code in NFSv3 in order to emulate the NFSv4 lookupp operation. Signed-off-by: Trond Myklebust --- fs/nfs/nfs3proc.c | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/fs/nfs/nfs3proc.c b/fs/nfs/nfs3proc.c index 2397ceedba8a..a6a222435e9b 100644 --- a/fs/nfs/nfs3proc.c +++ b/fs/nfs/nfs3proc.c @@ -154,14 +154,13 @@ nfs3_proc_setattr(struct dentry *dentry, struct nfs_fattr *fattr, } static int -nfs3_proc_lookup(struct inode *dir, struct dentry *dentry, - struct nfs_fh *fhandle, struct nfs_fattr *fattr, - struct nfs4_label *label) +__nfs3_proc_lookup(struct inode *dir, const char *name, size_t len, + struct nfs_fh *fhandle, struct nfs_fattr *fattr) { struct nfs3_diropargs arg = { .fh = NFS_FH(dir), - .name = dentry->d_name.name, - .len = dentry->d_name.len + .name = name, + .len = len }; struct nfs3_diropres res = { .fh = fhandle, @@ -175,15 +174,10 @@ nfs3_proc_lookup(struct inode *dir, struct dentry *dentry, int status; unsigned short task_flags = 0; - /* Is this is an attribute revalidation, subject to softreval? */ - if (nfs_lookup_is_soft_revalidate(dentry)) - task_flags |= RPC_TASK_TIMEOUT; - res.dir_attr = nfs_alloc_fattr(); if (res.dir_attr == NULL) return -ENOMEM; - dprintk("NFS call lookup %pd2\n", dentry); nfs_fattr_init(fattr); status = rpc_call_sync(NFS_CLIENT(dir), &msg, task_flags); nfs_refresh_inode(dir, res.dir_attr); @@ -198,6 +192,20 @@ nfs3_proc_lookup(struct inode *dir, struct dentry *dentry, return status; } +static int +nfs3_proc_lookup(struct inode *dir, struct dentry *dentry, + struct nfs_fh *fhandle, struct nfs_fattr *fattr, + struct nfs4_label *label) +{ + /* Is this is an attribute revalidation, subject to softreval? */ + if (nfs_lookup_is_soft_revalidate(dentry)) + task_flags |= RPC_TASK_TIMEOUT; + + dprintk("NFS call lookup %pd2\n", dentry); + return __nfs3_proc_lookup(dir, dentry->d_name.name, + dentry->d_name.len, fhandle, fattr); +} + static int nfs3_proc_access(struct inode *inode, struct nfs_access_entry *entry) { struct nfs3_accessargs arg = {