Merge "recovery: add a way to enable metadata_csum for ext4" am: 5ac6163822 am: 9af39bf5c4

Change-Id: I7f7552d6b24eff0d91d68ed5d1bf6f59bb723815
This commit is contained in:
Automerger Merge Worker
2020-02-21 05:54:41 +00:00

View File

@@ -202,6 +202,15 @@ int format_volume(const std::string& volume, const std::string& directory) {
mke2fs_args.push_back("512");
}
if (v->fs_mgr_flags.ext_meta_csum) {
mke2fs_args.push_back("-O");
mke2fs_args.push_back("metadata_csum");
mke2fs_args.push_back("-O");
mke2fs_args.push_back("64bit");
mke2fs_args.push_back("-O");
mke2fs_args.push_back("extent");
}
int raid_stride = v->logical_blk_size / kBlockSize;
int raid_stripe_width = v->erase_blk_size / kBlockSize;
// stride should be the max of 8KB and logical block size