summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSami Tolvanen <samitolvanen@google.com>2015-06-09 23:15:15 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-06-09 23:17:20 +0200
commit69608fe7548727ee765c89f69a6861479f391487 (patch)
tree46d64e674bd137408ae0cc04eb6ea74075af2050
parentMerge "recovery: Switch to clang" (diff)
parentZero blocks before BLKDISCARD (diff)
downloadandroid_bootable_recovery-69608fe7548727ee765c89f69a6861479f391487.tar
android_bootable_recovery-69608fe7548727ee765c89f69a6861479f391487.tar.gz
android_bootable_recovery-69608fe7548727ee765c89f69a6861479f391487.tar.bz2
android_bootable_recovery-69608fe7548727ee765c89f69a6861479f391487.tar.lz
android_bootable_recovery-69608fe7548727ee765c89f69a6861479f391487.tar.xz
android_bootable_recovery-69608fe7548727ee765c89f69a6861479f391487.tar.zst
android_bootable_recovery-69608fe7548727ee765c89f69a6861479f391487.zip
-rw-r--r--updater/blockimg.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/updater/blockimg.c b/updater/blockimg.c
index 5d0f1560c..dfba7e420 100644
--- a/updater/blockimg.c
+++ b/updater/blockimg.c
@@ -39,11 +39,6 @@
#define BLOCKSIZE 4096
-// Set this to 0 to interpret 'erase' transfers to mean do a
-// BLKDISCARD ioctl (the normal behavior). Set to 1 to interpret
-// erase to mean fill the region with zeroes.
-#define DEBUG_ERASE 0
-
#ifndef BLKDISCARD
#define BLKDISCARD _IO(0x12,119)
#endif
@@ -1283,8 +1278,7 @@ static int PerformCommandZero(CommandParameters* params) {
}
if (params->cmdname[0] == 'z') {
- // Update only for the zero command, as the erase command will call
- // this if DEBUG_ERASE is defined.
+ // Update only for the zero command, as the erase command will call this
params->written += tgt->size;
}
@@ -1470,8 +1464,10 @@ static int PerformCommandErase(CommandParameters* params) {
struct stat st;
uint64_t blocks[2];
- if (DEBUG_ERASE) {
- return PerformCommandZero(params);
+ // Always zero the blocks first to work around possibly flaky BLKDISCARD
+ // Bug: 20881595
+ if (PerformCommandZero(params) != 0) {
+ goto pceout;
}
if (!params) {