diff options
author | Doug Zongker <dougz@android.com> | 2013-07-10 13:39:50 -0700 |
---|---|---|
committer | The Android Automerger <android-build@android.com> | 2013-07-10 18:25:21 -0700 |
commit | 166565f9fb3034f7e7f60f6614cff754d94a4078 (patch) | |
tree | eb922d629fa13a7fe27ac1bfdcfb38645e1b39b5 | |
parent | c6ab95e9d17fd174df1dd07076fbf6251480ba09 (diff) | |
download | bootable_recovery-166565f9fb3034f7e7f60f6614cff754d94a4078.zip bootable_recovery-166565f9fb3034f7e7f60f6614cff754d94a4078.tar.gz bootable_recovery-166565f9fb3034f7e7f60f6614cff754d94a4078.tar.bz2 |
recovery: sleep after writing partition and closing it
Another speculative attempt to get everything we write actually stored
to the device.
Change-Id: Icf40b0741b4c535e55ea34848073a97d90dc0e70
-rw-r--r-- | applypatch/applypatch.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/applypatch/applypatch.c b/applypatch/applypatch.c index 3f67c32..2c62a06 100644 --- a/applypatch/applypatch.c +++ b/applypatch/applypatch.c @@ -432,7 +432,7 @@ int WriteToPartition(unsigned char* data, size_t len, int attempt; for (attempt = 0; attempt < 10; ++attempt) { - off_t next_sync = start + (1<<20); + size_t next_sync = start + (1<<20); printf("raw write %s attempt %d start at %d\n", partition, attempt+1, start); lseek(fd, start, SEEK_SET); while (start < len) { @@ -487,7 +487,7 @@ int WriteToPartition(unsigned char* data, size_t len, return -1; } } - if (read_count < to_read) { + if ((size_t)read_count < to_read) { printf("short verify read %s at %d: %d %d %s\n", partition, p, read_count, to_read, strerror(errno)); } @@ -519,6 +519,11 @@ int WriteToPartition(unsigned char* data, size_t len, printf("error closing %s (%s)\n", partition, strerror(errno)); return -1; } + // hack: sync and sleep after closing in hopes of getting + // the data actually onto flash. + printf("sleeping after close\n"); + sync(); + sleep(5); break; } } |