summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAlex Bennée <alex.bennee@linaro.org>2018-05-16 21:19:03 +0100
committerZdenek Kabelac <zkabelac@redhat.com>2018-05-17 10:38:16 +0200
commitc6ca81a38d7012ec9d18a9ea00eff321ff2c47d0 (patch)
tree8d0e4f93ec5a498167e1a2573504084ed9df0832 /lib
parent8c453e2e5e5a660b1923629365c8bb87ef017a8f (diff)
downloadlvm2-c6ca81a38d7012ec9d18a9ea00eff321ff2c47d0.tar.gz
bcache: don't use PAGE_SIZE compile const
PAGE_SIZE is not a compile time constant. Use sysconf instead like elsewhere in the code. Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/device/bcache.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/device/bcache.c b/lib/device/bcache.c
index 30df54a90..3f5a45e54 100644
--- a/lib/device/bcache.c
+++ b/lib/device/bcache.c
@@ -162,8 +162,9 @@ static bool _async_issue(struct io_engine *ioe, enum dir d, int fd,
struct iocb *cb_array[1];
struct control_block *cb;
struct async_engine *e = _to_async(ioe);
+ long pgsize = sysconf(_SC_PAGESIZE);
- if (((uintptr_t) data) & (PAGE_SIZE - 1)) {
+ if (((uintptr_t) data) & (pgsize - 1)) {
log_warn("misaligned data buffer");
return false;
}
@@ -547,8 +548,9 @@ static bool _init_free_list(struct bcache *cache, unsigned count)
{
unsigned i;
size_t block_size = cache->block_sectors << SECTOR_SHIFT;
+ long pgsize = sysconf(_SC_PAGESIZE);
unsigned char *data =
- (unsigned char *) _alloc_aligned(count * block_size, PAGE_SIZE);
+ (unsigned char *) _alloc_aligned(count * block_size, pgsize);
/* Allocate the data for each block. We page align the data. */
if (!data)
@@ -899,6 +901,7 @@ struct bcache *bcache_create(sector_t block_sectors, unsigned nr_cache_blocks,
{
struct bcache *cache;
unsigned max_io = engine->max_io(engine);
+ long pgsize = sysconf(_SC_PAGESIZE);
if (!nr_cache_blocks) {
log_warn("bcache must have at least one cache block");
@@ -910,7 +913,7 @@ struct bcache *bcache_create(sector_t block_sectors, unsigned nr_cache_blocks,
return NULL;
}
- if (block_sectors & ((PAGE_SIZE >> SECTOR_SHIFT) - 1)) {
+ if (block_sectors & ((pgsize >> SECTOR_SHIFT) - 1)) {
log_warn("bcache block size must be a multiple of page size");
return NULL;
}