summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2009-12-01 13:50:05 -0800
committerSage Weil <sage@newdream.net>2009-12-01 15:00:56 -0800
commit5c0be5d28cf4b5370e94671093fd0abf013b90ae (patch)
treec6994b76a7081c233574a90ac7ad26304491643f
parent8dd0991ea564b746a902071c287917deaf29f336 (diff)
downloadceph-5c0be5d28cf4b5370e94671093fd0abf013b90ae.tar.gz
mds: pass do_eval through to adjsut_subtreeauth
-rw-r--r--src/mds/MDCache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds/MDCache.h b/src/mds/MDCache.h
index ee2842d88d2..b2b6e60eb5e 100644
--- a/src/mds/MDCache.h
+++ b/src/mds/MDCache.h
@@ -510,7 +510,7 @@ public:
void list_subtrees(list<CDir*>& ls);
void adjust_subtree_auth(CDir *root, pair<int,int> auth, bool do_eval=true);
void adjust_subtree_auth(CDir *root, int a, int b=CDIR_AUTH_UNKNOWN, bool do_eval=true) {
- adjust_subtree_auth(root, pair<int,int>(a,b));
+ adjust_subtree_auth(root, pair<int,int>(a,b), do_eval);
}
void adjust_bounded_subtree_auth(CDir *dir, set<CDir*>& bounds, pair<int,int> auth);
void adjust_bounded_subtree_auth(CDir *dir, set<CDir*>& bounds, int a) {