Merge "zip_archive: Improve error message on fallocate failure." am: 704d818ec1 am: 388a65d146 am: 8aa4284b02

am: e503729f13

Change-Id: I4f105fde39c9d9e9f8717c43f170809edd985a9d
This commit is contained in:
Narayan Kamath 2016-08-16 09:15:33 +00:00 committed by android-build-merger
commit 8d27813888
1 changed files with 3 additions and 2 deletions

View File

@ -825,8 +825,9 @@ class FileWriter : public Writer {
// disk does not have enough space.
result = TEMP_FAILURE_RETRY(fallocate(fd, 0, current_offset, declared_length));
if (result == -1 && errno == ENOSPC) {
ALOGW("Zip: unable to allocate space for file to %" PRId64 ": %s",
static_cast<int64_t>(declared_length + current_offset), strerror(errno));
ALOGW("Zip: unable to allocate %" PRId64 " bytes at offset %" PRId64 " : %s",
static_cast<int64_t>(declared_length), static_cast<int64_t>(current_offset),
strerror(errno));
return std::unique_ptr<FileWriter>(nullptr);
}
}