diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-06-04 20:52:19 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-06-04 21:27:05 +0200 |
commit | 3f6e4fc4542b5b881906bf2f83eb4b8359b0dcd4 (patch) | |
tree | 981baeb271875c2c8f28cd193f9f30e584a75e8c /support | |
parent | 6f10ff02cb04c2b1e031d7d3ba0f99e906699126 (diff) | |
download | glibc-3f6e4fc4542b5b881906bf2f83eb4b8359b0dcd4.tar.gz glibc-3f6e4fc4542b5b881906bf2f83eb4b8359b0dcd4.tar.xz glibc-3f6e4fc4542b5b881906bf2f83eb4b8359b0dcd4.zip |
support: Fix detecting hole support on >2KB-block filesystems
When detecting hole support, we write at 16MiB, and filesystems will typically need two levels of data to record that. On filesystems with 8KB block, the two indirection blocks will require a total of 16KB overhead, thus 32 512-byte sectors. Spotted on GNU/Hurd with a 4KB blocks filesystem, but also happens on Linux with 4KB or 8KB blocks filesystems. * support/support_descriptor_supports_holes.c (support_descriptor_supports_holes): Set block_headroom to 32.
Diffstat (limited to 'support')
-rw-r--r-- | support/support_descriptor_supports_holes.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/support/support_descriptor_supports_holes.c b/support/support_descriptor_supports_holes.c index fc2aa76f10..d3d5d3a938 100644 --- a/support/support_descriptor_supports_holes.c +++ b/support/support_descriptor_supports_holes.c @@ -34,8 +34,10 @@ support_descriptor_supports_holes (int fd) write_offset = 16 * 1024 * 1024, /* Our write may add this number of additional blocks (see - block_limit below). */ - block_headroom = 8, + block_limit below): writing at offset 16M can require two data block + indirections, each of which can be as large as 8KB on ext2, thus 32 + 512B sectors. */ + block_headroom = 32, }; struct stat64 st; |