cephfs-mirror: ignore parent directory snapshots when building snap map

Signed-off-by: Venky Shankar <vshankar@redhat.com>
This commit is contained in:
Venky Shankar 2021-04-21 05:32:22 -04:00
parent a67d1cf2a7
commit b6069f45b3

View File

@ -426,7 +426,7 @@ int PeerReplayer::build_snap_map(const std::string &dir_path,
while (entry != NULL) {
auto d_name = std::string(entry->d_name);
dout(20) << ": entry=" << d_name << dendl;
if (d_name != "." && d_name != "..") {
if (d_name != "." && d_name != ".." && d_name.rfind("_", 0) != 0) {
snaps.emplace(d_name);
}