MetadataCrypt: extend timeout for low performance device
Some devices isolate CPUs under low battery. It causes low performance and 5 sec timeout is soemtimes too short for dm device ready. Bug: 267989884 Change-Id: I52e1140b961ac42401a409e3264a5facc0f60cc4 Signed-off-by: Masaya Takahashi <masaya.a.takahashi@sony.com>
This commit is contained in:
parent
9355e48aaa
commit
5ed64b246a
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ static bool create_crypto_blk_dev(const std::string& dm_name, const std::string&
|
|||
LOG(ERROR) << "Failed to populate default-key device " << dm_name;
|
||||
return false;
|
||||
}
|
||||
if (!dm.WaitForDevice(dm_name, 5s, crypto_blkdev)) {
|
||||
if (!dm.WaitForDevice(dm_name, 20s, crypto_blkdev)) {
|
||||
LOG(ERROR) << "Failed to wait for default-key device " << dm_name;
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue