diff options
author | Mohammed Rafi KC <rkavunga@redhat.com> | 2015-05-11 12:36:33 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2015-06-04 04:49:03 -0700 |
commit | f1c20897cc18fb3b257880e7a098c05eae28fd0f (patch) | |
tree | 603ced2c559867786c4dd6e70085e8f6aa2140fc /xlators/features/snapview-client/src/snapview-client.c | |
parent | a615f6c078c76791318c2a58efcc8baef18c25db (diff) | |
download | glusterfs-f1c20897cc18fb3b257880e7a098c05eae28fd0f.tar.gz glusterfs-f1c20897cc18fb3b257880e7a098c05eae28fd0f.tar.xz glusterfs-f1c20897cc18fb3b257880e7a098c05eae28fd0f.zip |
uss: Take ref on root inode
If we recieve a statfs call on snap directory, we will redirect
the call into the root, by creating a new root loc. So it is better to
take a ref on the root inode.
(http://review.gluster.org/#/c/10358/5/xlators/features/
snapview-client/src/snapview-client.c)
Change-Id: I5649addac442d391b2550346b115dec58fed5b86
Signed-off-by: Mohammed Rafi KC <rkavunga@redhat.com>
Reviewed-on: http://review.gluster.org/10750
Tested-by: NetBSD Build System <jenkins@build.gluster.org>
Reviewed-by: Raghavendra Bhat <raghavendra@redhat.com>
Diffstat (limited to 'xlators/features/snapview-client/src/snapview-client.c')
-rw-r--r-- | xlators/features/snapview-client/src/snapview-client.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/xlators/features/snapview-client/src/snapview-client.c b/xlators/features/snapview-client/src/snapview-client.c index 5f325af3b3..c575975d8d 100644 --- a/xlators/features/snapview-client/src/snapview-client.c +++ b/xlators/features/snapview-client/src/snapview-client.c @@ -534,14 +534,15 @@ svc_statfs (call_frame_t *frame, xlator_t *this, loc_t *loc, root_loc.path = "/"; gf_uuid_clear(root_loc.gfid); root_loc.gfid[15] = 1; - root_loc.inode = loc->inode->table->root; - root_loc.inode->ia_type = IA_IFDIR; + root_loc.inode = inode_ref (loc->inode->table->root); temp_loc = &root_loc; } } STACK_WIND_TAIL (frame, subvolume, subvolume->fops->statfs, temp_loc, xdata); + if (temp_loc) + loc_wipe (temp_loc); wind = _gf_true; out: |