diff options
author | Anand Avati <avati@gluster.com> | 2011-08-06 18:00:49 +0530 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-08-06 05:52:13 -0700 |
commit | 196499e60d80fd9c696d816cc27c27b33e0c3bbf (patch) | |
tree | 2494349783ad5071edef2c8c8df15ba78efd4c51 /xlators | |
parent | 0c01d96a065deb992a8c3a0b24c74a70ab99ea86 (diff) |
cluster/dht: clear local->cached_subvol when switching to do_fresh_lookup
The presence of local->cached_subvol makes dht_lookup_everywhere_done behave
as though it was a lookup on a file where linkfile needs to be recreated. In
a fresh lookup, local->cached_subvol should be NULL.
Change-Id: Ie6bd6ad536def03d970526d51e20c6daeb00922b
BUG: 3317
Reviewed-on: http://review.gluster.com/185
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@gluster.com>
Diffstat (limited to 'xlators')
-rw-r--r-- | xlators/cluster/dht/src/dht-common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xlators/cluster/dht/src/dht-common.c b/xlators/cluster/dht/src/dht-common.c index de9772876..07eec9261 100644 --- a/xlators/cluster/dht/src/dht-common.c +++ b/xlators/cluster/dht/src/dht-common.c @@ -938,6 +938,7 @@ dht_lookup (call_frame_t *frame, xlator_t *this, dht_layout_unref (this, local->layout); local->layout = NULL; + local->cached_subvol = NULL; goto do_fresh_lookup; } |