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