Merge "Disable async merge writes until we figure out the intermittent I/O errors." am: 7c63034fc0

Original change: https://android-review.googlesource.com/c/platform/system/core/+/1987186

Change-Id: If0702275c0341e32b380c330a13ff7af03a20a34
This commit is contained in:
Akilesh Kailash 2022-02-16 04:43:48 +00:00 committed by Automerger Merge Worker
commit 54a77076ce

View file

@ -461,6 +461,14 @@ bool Worker::InitializeIouring() {
return false;
}
{
// TODO: b/219642530 - Disable io_uring for merge
// until we figure out the cause of intermittent
// IO failures.
merge_async_ = false;
return true;
}
ring_ = std::make_unique<struct io_uring>();
int ret = io_uring_queue_init(queue_depth_, ring_.get(), 0);