Merge changes I779184f1,I241ee11d into sc-qpr1-dev am: d6383199e8
Original change: https://googleplex-android-review.googlesource.com/c/platform/system/core/+/15825056 Change-Id: I1eb2a86623258bf10081f908bfc3b6187b244e93
This commit is contained in:
commit
c9a4c17a1a
|
@ -518,6 +518,13 @@ bool SnapshotManager::MapSnapshot(LockedFile* lock, const std::string& name,
|
|||
break;
|
||||
}
|
||||
|
||||
if (mode == SnapshotStorageMode::Persistent && status.state() == SnapshotState::MERGING) {
|
||||
LOG(ERROR) << "Snapshot: " << name
|
||||
<< " has snapshot status Merging but mode set to Persistent."
|
||||
<< " Changing mode to Snapshot-Merge.";
|
||||
mode = SnapshotStorageMode::Merge;
|
||||
}
|
||||
|
||||
DmTable table;
|
||||
table.Emplace<DmTargetSnapshot>(0, snapshot_sectors, base_device, cow_device, mode,
|
||||
kSnapshotChunkSize);
|
||||
|
@ -886,6 +893,10 @@ bool SnapshotManager::QuerySnapshotStatus(const std::string& dm_name, std::strin
|
|||
if (target_type) {
|
||||
*target_type = DeviceMapper::GetTargetType(target.spec);
|
||||
}
|
||||
if (!status->error.empty()) {
|
||||
LOG(ERROR) << "Snapshot: " << dm_name << " returned error code: " << status->error;
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue