diff options
author | Christoph Lameter <clameter@sgi.com> | 2008-02-15 08:48:28 -0800 |
---|---|---|
committer | Christoph Lameter <clameter@sgi.com> | 2008-02-15 08:48:28 -0800 |
commit | 6f157c1d268d5888ca44c589dccd01729c4172f6 (patch) | |
tree | e439df35a39c06df3665ec30b406406f08e82177 /fs/nfsd/nfs3xdr.c | |
parent | c5974932c1e8514d3478573bb52beebeb2c786dd (diff) | |
parent | 4ee29f6a52158cea526b16a44ae38643946103ec (diff) | |
download | op-kernel-dev-6f157c1d268d5888ca44c589dccd01729c4172f6.zip op-kernel-dev-6f157c1d268d5888ca44c589dccd01729c4172f6.tar.gz |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'fs/nfsd/nfs3xdr.c')
-rw-r--r-- | fs/nfsd/nfs3xdr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/nfs3xdr.c b/fs/nfsd/nfs3xdr.c index d7647f7..17d0dd9 100644 --- a/fs/nfsd/nfs3xdr.c +++ b/fs/nfsd/nfs3xdr.c @@ -218,7 +218,7 @@ encode_post_op_attr(struct svc_rqst *rqstp, __be32 *p, struct svc_fh *fhp) int err; struct kstat stat; - err = vfs_getattr(fhp->fh_export->ex_mnt, dentry, &stat); + err = vfs_getattr(fhp->fh_export->ex_path.mnt, dentry, &stat); if (!err) { *p++ = xdr_one; /* attributes follow */ lease_get_mtime(dentry->d_inode, &stat.mtime); @@ -270,7 +270,7 @@ void fill_post_wcc(struct svc_fh *fhp) if (fhp->fh_post_saved) printk("nfsd: inode locked twice during operation.\n"); - err = vfs_getattr(fhp->fh_export->ex_mnt, fhp->fh_dentry, + err = vfs_getattr(fhp->fh_export->ex_path.mnt, fhp->fh_dentry, &fhp->fh_post_attr); if (err) fhp->fh_post_saved = 0; |