diff options
author | Anand Avati <avati@redhat.com> | 2013-04-14 02:58:34 -0700 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2013-04-19 04:41:35 -0700 |
commit | a1db18cf7a6cde96f2e5b920ffbbf88e72a21fd4 (patch) | |
tree | 0c0ee87231c345b7619bf97c1bdc13eaafa6b83a /api/src/glfs-internal.h | |
parent | 1fc9b98a4eb6eda8db30940a8bb07d206e2fa049 (diff) |
gfapi: support for chdir() and family
Add support for chdir, fchdir, getcwd, realpath equivalents in
GFAPI. These are required for the Samba VFS plugin.
Change-Id: I91d2db9146994403c98961c489c7640c51d5add2
BUG: 953694
Signed-off-by: Anand Avati <avati@redhat.com>
Reviewed-on: http://review.gluster.org/4853
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'api/src/glfs-internal.h')
-rw-r--r-- | api/src/glfs-internal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/api/src/glfs-internal.h b/api/src/glfs-internal.h index c2fc0ecc1ea..082b8fa5c9a 100644 --- a/api/src/glfs-internal.h +++ b/api/src/glfs-internal.h @@ -36,9 +36,12 @@ struct glfs { char *oldvolfile; ssize_t oldvollen; + + inode_t *cwd; }; struct glfs_fd { + struct glfs *fs; off_t offset; fd_t *fd; struct list_head entries; @@ -75,6 +78,8 @@ __glfs_entry_fd (struct glfs_fd *fd) void glfs_fd_destroy (struct glfs_fd *glfd); +struct glfs_fd *glfs_fd_new (struct glfs *fs); + xlator_t * glfs_fd_subvol (struct glfs_fd *glfd); xlator_t * glfs_active_subvol (struct glfs *fs); |