1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00

cleanup: avoid overflow warning

Even we do not expect to support chunks bigger then 2GB.
This commit is contained in:
Zdenek Kabelac 2013-02-04 20:32:21 +01:00
parent d7ea12f222
commit 7cd25062ac

View File

@ -1617,7 +1617,7 @@ int update_pool_params(struct cmd_context *cmd, unsigned attr,
(2 * DEFAULT_THIN_POOL_MAX_METADATA_SIZE * (2 * DEFAULT_THIN_POOL_MAX_METADATA_SIZE *
(SECTOR_SIZE / UINT64_C(64))); (SECTOR_SIZE / UINT64_C(64)));
log_warn("WARNING: Chunk size is too small for pool, suggested minimum is %s.", log_warn("WARNING: Chunk size is too small for pool, suggested minimum is %s.",
display_size(cmd, 1 << (int)(ffs(estimate_chunk_size) + 1))); display_size(cmd, UINT64_C(1) << (ffs(estimate_chunk_size) + 1)));
} }
/* Round up to extent size */ /* Round up to extent size */