am a66cdf40: am 915fc970: am 280cb6e9: Merge "Zero blocks before BLKDISCARD"
* commit 'a66cdf40c3d9ee8248049ce076673e3fe96a7080':
Zero blocks before BLKDISCARD
diff --git a/updater/blockimg.c b/updater/blockimg.c
index 5d0f156..fc35abe 100644
--- a/updater/blockimg.c
+++ b/updater/blockimg.c
@@ -1465,6 +1465,7 @@
static int PerformCommandErase(CommandParameters* params) {
char* range = NULL;
int i;
+ int j;
int rc = -1;
RangeSet* tgt = NULL;
struct stat st;
@@ -1491,7 +1492,7 @@
range = strtok_r(NULL, " ", ¶ms->cpos);
if (range == NULL) {
- fprintf(stderr, "missing target blocks for zero\n");
+ fprintf(stderr, "missing target blocks for erase\n");
goto pceout;
}
@@ -1500,7 +1501,22 @@
if (params->canwrite) {
fprintf(stderr, " erasing %d blocks\n", tgt->size);
+ allocate(BLOCKSIZE, ¶ms->buffer, ¶ms->bufsize);
+ memset(params->buffer, 0, BLOCKSIZE);
+
for (i = 0; i < tgt->count; ++i) {
+ // Always zero the blocks first to work around possibly flaky BLKDISCARD
+ // Bug: 20881595
+ if (!check_lseek(params->fd, (off64_t) tgt->pos[i * 2] * BLOCKSIZE, SEEK_SET)) {
+ goto pceout;
+ }
+
+ for (j = tgt->pos[i * 2]; j < tgt->pos[i * 2 + 1]; ++j) {
+ if (write_all(params->fd, params->buffer, BLOCKSIZE) == -1) {
+ goto pceout;
+ }
+ }
+
// offset in bytes
blocks[0] = tgt->pos[i * 2] * (uint64_t) BLOCKSIZE;
// length in bytes