Skip to content

Commit

Permalink
Update generated files for Android
Browse files Browse the repository at this point in the history
This change was generated by running 'util/gen-android-files'.

Change-Id: I9c060e2306504dc25d1c220e5f995c3c38c60160
  • Loading branch information
ebiggers committed Jun 16, 2021
1 parent f203c38 commit 2ada485
Show file tree
Hide file tree
Showing 7 changed files with 317 additions and 302 deletions.
4 changes: 2 additions & 2 deletions README.version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
URL: https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.45.4/e2fsprogs-1.45.4.tar.gz
Version: 1.45.4
URL: https://www.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/v1.46.2/e2fsprogs-1.46.2.tar.gz
Version: 1.46.2
BugComponent: 95221
6 changes: 3 additions & 3 deletions debugfs/e2freefrag.c
Original file line number Diff line number Diff line change
Expand Up @@ -265,8 +265,8 @@ static errcode_t dump_chunk_info(ext2_filsys fs, struct chunk_info *info,
int i, retval = 0;

fprintf(f, "Total blocks: %llu\nFree blocks: %llu (%0.1f%%)\n",
ext2fs_blocks_count(fs->super),
free_blks,
(unsigned long long) ext2fs_blocks_count(fs->super),
(unsigned long long) free_blks,
(double)free_blks * 100 /
ext2fs_blocks_count(fs->super));

Expand Down Expand Up @@ -363,7 +363,7 @@ static void collect_info(ext2_filsys fs, struct chunk_info *chunk_info, FILE *f)
static void open_device(char *device_name, ext2_filsys *fs)
{
int retval;
int flag = EXT2_FLAG_FORCE | EXT2_FLAG_64BITS;
int flag = EXT2_FLAG_FORCE | EXT2_FLAG_64BITS | EXT2_FLAG_THREADS;

retval = ext2fs_open(device_name, flag, 0, 0, unix_io_manager, fs);
if (retval) {
Expand Down
Loading

0 comments on commit 2ada485

Please sign in to comment.