net/mlx5: DR, Remove unneeded argument from dr_icm_chunk_destroy
Remove an argument that can be extracted in the function. Signed-off-by: Yevgeny Kliteynik <kliteyn@nvidia.com> Reviewed-by: Alex Vesker <valex@nvidia.com> Signed-off-by: Saeed Mahameed <saeedm@nvidia.com>
This commit is contained in:
parent
5fd08f6539
commit
d277b55f0f
@ -203,12 +203,11 @@ get_chunk_icm_type(struct mlx5dr_icm_chunk *chunk)
|
||||
return chunk->buddy_mem->pool->icm_type;
|
||||
}
|
||||
|
||||
static void dr_icm_chunk_destroy(struct mlx5dr_icm_chunk *chunk,
|
||||
struct mlx5dr_icm_buddy_mem *buddy)
|
||||
static void dr_icm_chunk_destroy(struct mlx5dr_icm_chunk *chunk)
|
||||
{
|
||||
enum mlx5dr_icm_type icm_type = get_chunk_icm_type(chunk);
|
||||
|
||||
buddy->used_memory -= mlx5dr_icm_pool_get_chunk_byte_size(chunk);
|
||||
chunk->buddy_mem->used_memory -= mlx5dr_icm_pool_get_chunk_byte_size(chunk);
|
||||
list_del(&chunk->chunk_list);
|
||||
|
||||
if (icm_type == DR_ICM_TYPE_STE)
|
||||
@ -299,10 +298,10 @@ static void dr_icm_buddy_destroy(struct mlx5dr_icm_buddy_mem *buddy)
|
||||
struct mlx5dr_icm_chunk *chunk, *next;
|
||||
|
||||
list_for_each_entry_safe(chunk, next, &buddy->hot_list, chunk_list)
|
||||
dr_icm_chunk_destroy(chunk, buddy);
|
||||
dr_icm_chunk_destroy(chunk);
|
||||
|
||||
list_for_each_entry_safe(chunk, next, &buddy->used_list, chunk_list)
|
||||
dr_icm_chunk_destroy(chunk, buddy);
|
||||
dr_icm_chunk_destroy(chunk);
|
||||
|
||||
dr_icm_pool_mr_destroy(buddy->icm_mr);
|
||||
|
||||
@ -376,7 +375,7 @@ static int dr_icm_pool_sync_all_buddy_pools(struct mlx5dr_icm_pool *pool)
|
||||
num_entries = mlx5dr_icm_pool_get_chunk_num_of_entries(chunk);
|
||||
mlx5dr_buddy_free_mem(buddy, chunk->seg, ilog2(num_entries));
|
||||
pool->hot_memory_size -= mlx5dr_icm_pool_get_chunk_byte_size(chunk);
|
||||
dr_icm_chunk_destroy(chunk, buddy);
|
||||
dr_icm_chunk_destroy(chunk);
|
||||
}
|
||||
|
||||
if (!buddy->used_memory && pool->icm_type == DR_ICM_TYPE_STE)
|
||||
|
Loading…
x
Reference in New Issue
Block a user