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 7599d47 commit 4b4cb54Copy full SHA for 4b4cb54
src/tools/cephfs/JournalTool.cc
@@ -890,6 +890,14 @@ int JournalTool::recover_dentries(
890
if ((other_pool || write_dentry) && !dry_run) {
891
dout(4) << "writing I dentry " << key << " into frag "
892
<< frag_oid.name << dendl;
893
+ dout(20) << " dnfirst = " << fb.dnfirst << dendl;
894
+ if (!fb.alternate_name.empty()) {
895
+ bufferlist bl, b64;
896
+ bl.append(fb.alternate_name);
897
+ bl.encode_base64(b64);
898
+ auto encoded = std::string_view(b64.c_str(), b64.length());
899
+ dout(20) << " alternate_name = b64:" << encoded << dendl;
900
+ }
901
902
// Compose: Dentry format is dnfirst, [I|L], InodeStore(bare=true)
903
bufferlist dentry_bl;
0 commit comments