diff options
| author | Anand Avati <avati@gluster.com> | 2012-01-13 23:17:07 +0530 | 
|---|---|---|
| committer | Anand Avati <avati@gluster.com> | 2012-01-20 05:06:15 -0800 | 
| commit | bb1e07b7f42e7db415527852e98fcc1cbf2e1285 (patch) | |
| tree | a434a1ff9983636e563bd1b8a16a5b11b8fd2347 /xlators/nfs/server/src/mount3.c | |
| parent | 7e1f8e3bac201f88e2d9ef62fc69a044716dfced (diff) | |
nfs: changes for using nameless lookup and anonymous FDs
- Use gfid to create filehandle instead of encoding path components
- Utilize nameless lookups of GFID for deep resolution instead of
  crawling the namespace with component hints
- Use anonymous FDs for file based operations
- Do away with fdcaching code for files and dirs
Change-Id: Ic48fb23370b25d183f7e1fc1cc5dffa9d5bab3fb
BUG: 781318
Reviewed-on: http://review.gluster.com/2645
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@gluster.com>
Diffstat (limited to 'xlators/nfs/server/src/mount3.c')
| -rw-r--r-- | xlators/nfs/server/src/mount3.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/nfs/server/src/mount3.c b/xlators/nfs/server/src/mount3.c index b1e563987..41698058e 100644 --- a/xlators/nfs/server/src/mount3.c +++ b/xlators/nfs/server/src/mount3.c @@ -350,7 +350,7 @@ mnt3svc_mount_inode (rpcsvc_request_t *req, struct mount3_state *ms,          if ((!req) || (!xl) || (!ms) || (!exportinode))                  return ret; -        ret = nfs_inode_loc_fill (exportinode, &exportloc); +        ret = nfs_inode_loc_fill (exportinode, &exportloc, NFS_RESOLVE_EXIST);          if (ret < 0) {                  gf_log (GF_MNT, GF_LOG_ERROR, "Loc fill failed for export inode"                          ": gfid %s, volume: %s",  | 
