Merge "Record use of metadata encryption in property"

This commit is contained in:
Treehugger Robot 2020-06-02 19:04:12 +00:00 committed by Gerrit Code Review
commit f20a16575f

View file

@ -337,6 +337,11 @@ bool fscrypt_mount_metadata_encrypted(const std::string& blk_device, const std::
LOG(DEBUG) << "Mounting metadata-encrypted filesystem:" << mount_point;
mount_via_fs_mgr(mount_point.c_str(), crypto_blkdev.c_str());
// Record that there's at least one fstab entry with metadata encryption
if (!android::base::SetProperty("ro.crypto.metadata.enabled", "true")) {
LOG(WARNING) << "failed to set ro.crypto.metadata.enabled"; // This isn't fatal
}
return true;
}