If the inode is valid and the page has been read in, then we can follow a link in RCU-walk. Signed-off-by: NeilBrown <neilb@xxxxxxx> --- fs/nfs/inode.c | 22 ++++++++++++++++++++++ fs/nfs/symlink.c | 19 +++++++++++++++++-- include/linux/nfs_fs.h | 1 + 3 files changed, 40 insertions(+), 2 deletions(-) diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 83107be3dd01..80f192405102 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c @@ -1123,6 +1123,28 @@ out: return ret; } +int nfs_revalidate_mapping_rcu(struct inode *inode) +{ + struct nfs_inode *nfsi = NFS_I(inode); + unsigned long *bitlock = &nfsi->flags; + int ret = 0; + + if (IS_SWAPFILE(inode)) + goto out; + if (nfs_mapping_need_revalidate_inode(inode)) { + ret = -ECHILD; + goto out; + } + spin_lock(&inode->i_lock); + if (test_bit(NFS_INO_INVALIDATING, bitlock) || + (nfsi->cache_validity & NFS_INO_INVALID_DATA)) + ret = -ECHILD; + spin_unlock(&inode->i_lock); +out: + return ret; +} + + static unsigned long nfs_wcc_update_inode(struct inode *inode, struct nfs_fattr *fattr) { struct nfs_inode *nfsi = NFS_I(inode); diff --git a/fs/nfs/symlink.c b/fs/nfs/symlink.c index c9a2d3cc4619..3cd295b7e094 100644 --- a/fs/nfs/symlink.c +++ b/fs/nfs/symlink.c @@ -49,8 +49,23 @@ static void *nfs_follow_link(struct dentry *dentry, struct nameidata *nd) struct page *page; void *err; - if (nd_is_rcu(nd)) - return ERR_PTR(-ECHILD); + if (nd_is_rcu(nd)) { + err = ERR_PTR(nfs_revalidate_mapping_rcu(inode)); + if (err) + goto read_failed; + page = find_get_page(inode->i_mapping, 0); + if (page && + (!PageUptodate(page) || PageHighMem(page))) { + put_page(page); + page = NULL; + } + if (!page) { + err = ERR_PTR(-ECHILD); + goto read_failed; + } + nd_set_link(nd, page_address(page)); + return page; + } err = ERR_PTR(nfs_revalidate_mapping(inode, inode->i_mapping)); if (err) goto read_failed; diff --git a/include/linux/nfs_fs.h b/include/linux/nfs_fs.h index 2f77e0c651c8..78c2f812eaeb 100644 --- a/include/linux/nfs_fs.h +++ b/include/linux/nfs_fs.h @@ -355,6 +355,7 @@ extern int nfs_revalidate_inode(struct nfs_server *server, struct inode *inode); extern int nfs_revalidate_inode_rcu(struct nfs_server *server, struct inode *inode); extern int __nfs_revalidate_inode(struct nfs_server *, struct inode *); extern int nfs_revalidate_mapping(struct inode *inode, struct address_space *mapping); +extern int nfs_revalidate_mapping_rcu(struct inode *inode); extern int nfs_setattr(struct dentry *, struct iattr *); extern void nfs_setattr_update_inode(struct inode *inode, struct iattr *attr); extern void nfs_setsecurity(struct inode *inode, struct nfs_fattr *fattr, -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html