Skip to content

Commit

Permalink
Change type of pages count variables to uint32_t
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Madej <daniel.madej@huawei.com>
  • Loading branch information
Deixx committed Feb 6, 2025
1 parent 5d8da33 commit db0e776
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions src/metadata/metadata.c
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ int ocf_metadata_init_variable_size(struct ocf_cache *cache,
OCF_DEBUG_PARAM(cache, "Metadata count pages fixed = %u", ctrl->count_pages_fixed);
OCF_DEBUG_PARAM(cache, "Metadata count pages variable = %u", ctrl->count_pages_variable);
OCF_DEBUG_PARAM(cache, "Metadata end pages = %u", ctrl->start_page
+ ctrl->count_pages_fixed + ctrl->count_pages_variable);
+ ocf_metadata_get_pages_count(cache));

superblock = ctrl->segment[metadata_segment_sb_config];

Expand Down Expand Up @@ -790,7 +790,7 @@ int ocf_metadata_init_variable_size(struct ocf_cache *cache,
ctrl->raw_desc[metadata_segment_hash].entries;

cache->device->metadata_offset =
(ctrl->count_pages_fixed + ctrl->count_pages_variable) * PAGE_SIZE;
ocf_metadata_get_pages_count(cache) * PAGE_SIZE;

cache->conf_meta->cachelines = ctrl->cachelines;
cache->conf_meta->line_size = line_size;
Expand Down Expand Up @@ -949,7 +949,7 @@ void ocf_metadata_init_hash_table(ocf_pipeline_t pipeline, void *priv,
/*
* Get count of pages that is dedicated for metadata
*/
ocf_cache_line_t ocf_metadata_get_pages_count(struct ocf_cache *cache)
uint32_t ocf_metadata_get_pages_count(struct ocf_cache *cache)
{
struct ocf_metadata_ctrl *ctrl = NULL;

Expand Down
3 changes: 2 additions & 1 deletion src/metadata/metadata.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/*
* Copyright(c) 2012-2022 Intel Corporation
* Copyright(c) 2025 Huawei Technologies
* SPDX-License-Identifier: BSD-3-Clause
*/

Expand Down Expand Up @@ -125,7 +126,7 @@ ocf_metadata_get_cachelines_count(struct ocf_cache *cache);
* @param cache - Cache instance
* @return Pages required for store metadata on cache device
*/
ocf_cache_line_t ocf_metadata_get_pages_count(struct ocf_cache *cache);
uint32_t ocf_metadata_get_pages_count(struct ocf_cache *cache);

/**
* @brief Flush metadata
Expand Down
4 changes: 2 additions & 2 deletions src/metadata/metadata_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
struct ocf_metadata_ctrl {
ocf_cache_line_t cachelines;
ocf_cache_line_t start_page;
ocf_cache_line_t count_pages_fixed;
ocf_cache_line_t count_pages_variable;
uint32_t count_pages_fixed;
uint32_t count_pages_variable;
uint32_t device_lines;
size_t mapping_size;
struct ocf_metadata_raw raw_desc[metadata_segment_max];
Expand Down
3 changes: 1 addition & 2 deletions src/metadata/metadata_passive_update.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ static void passive_io_page_lock_acquired(struct ocf_request *req)
int ocf_metadata_passive_update(struct ocf_request *master)
{
ocf_cache_t cache = master->cache;
struct ocf_metadata_ctrl *ctrl = cache->metadata.priv;
uint64_t io_start_page = BYTES_TO_PAGES(master->addr);
uint64_t io_end_page = io_start_page + BYTES_TO_PAGES(master->bytes);
struct ocf_request *req;
Expand All @@ -87,7 +86,7 @@ int ocf_metadata_passive_update(struct ocf_request *master)
return 0;
}

if (io_start_page >= ctrl->count_pages_fixed + ctrl->count_pages_variable) {
if (io_start_page >= ocf_metadata_get_pages_count(cache)) {
master->complete(master, 0);
return 0;
}
Expand Down

0 comments on commit db0e776

Please sign in to comment.