Merge PR #50692 into main

* refs/pull/50692/head:
	tools/cephfs: include lost+found in scan_links

Reviewed-by: Venky Shankar <vshankar@redhat.com>
This commit is contained in:
Patrick Donnelly 2023-03-29 23:01:33 -04:00
commit 3c434884ce
No known key found for this signature in database
GPG Key ID: BE69BB7D36E459B4

View File

@ -1040,7 +1040,8 @@ bool DataScan::valid_ino(inodeno_t ino) const
|| (MDS_INO_IS_STRAY(ino))
|| (MDS_INO_IS_MDSDIR(ino))
|| ino == CEPH_INO_ROOT
|| ino == CEPH_INO_CEPH;
|| ino == CEPH_INO_CEPH
|| ino == CEPH_INO_LOST_AND_FOUND;
}
int DataScan::scan_links()