Merge "uncrypt: remove O_SYNC to avoid time-out failures"

am: e4a3da9f51

* commit 'e4a3da9f51ca1e02179a1e0851f26015f4ec07fa':
  uncrypt: remove O_SYNC to avoid time-out failures
This commit is contained in:
Tao Bao 2015-11-05 18:07:57 +00:00 committed by android-build-merger
commit 8b5f9d74a0

View file

@ -234,7 +234,7 @@ static int produce_block_map(const char* path, const char* map_file, const char*
int wfd = -1;
unique_fd wfd_holder(wfd);
if (encrypted) {
wfd = open(blk_dev, O_WRONLY | O_SYNC);
wfd = open(blk_dev, O_WRONLY);
wfd_holder = unique_fd(wfd);
if (wfd == -1) {
ALOGE("failed to open fd for writing: %s\n", strerror(errno));