Merge "libfiemap_writer: Fix bugs in vfat handling."
am: 7f6d6db24d
Change-Id: I654e9ce9b72ad9f52a7324b36fe227e1750ae741
This commit is contained in:
commit
22a01eed3a
1 changed files with 6 additions and 5 deletions
|
|
@ -501,12 +501,13 @@ static bool ReadFibmap(int file_fd, const std::string& file_path,
|
|||
}
|
||||
|
||||
if (!extents->empty() && block == last_block + 1) {
|
||||
extents->back().fe_length++;
|
||||
extents->back().fe_length += s.st_blksize;
|
||||
} else {
|
||||
extents->push_back(fiemap_extent{.fe_logical = block_number,
|
||||
.fe_physical = block,
|
||||
.fe_length = 1,
|
||||
.fe_flags = 0});
|
||||
extents->push_back(
|
||||
fiemap_extent{.fe_logical = block_number,
|
||||
.fe_physical = static_cast<uint64_t>(block) * s.st_blksize,
|
||||
.fe_length = static_cast<uint64_t>(s.st_blksize),
|
||||
.fe_flags = 0});
|
||||
}
|
||||
last_block = block;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue