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:
commit
54a77076ce
1 changed files with 8 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue