We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4b2767 commit ac30518Copy full SHA for ac30518
src/mds/MDCache.cc
@@ -12753,13 +12753,11 @@ void MDCache::show_subtrees(int dbl, bool force_print)
12753
seen.insert(dir);
12754
12755
// nested items?
12756
- if (!subtrees[dir].empty()) {
12757
- for (set<CDir*>::iterator p = subtrees[dir].begin();
12758
- p != subtrees[dir].end();
12759
- ++p) {
12760
- //dout(25) << " saw sub " << **p << dendl;
12761
- q.push_front(pair<CDir*,int>(*p, d+1));
12762
- }
+ for (set<CDir*>::iterator p = subtrees[dir].begin();
+ p != subtrees[dir].end();
+ ++p) {
+ //dout(25) << " saw sub " << **p << dendl;
+ q.push_front(pair<CDir*,int>(*p, d+1));
12763
}
12764
12765
0 commit comments