Home
last modified time | relevance | path

Searched refs:zone_max (Results 1 – 2 of 2) sorted by relevance

/src/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_hw_tls.c99 nitems = ptls->zone_max; in mlx5e_tls_prealloc_work()
206 max_tags = ptls->zone_max; in mlx5e_max_tag_proc()
210 if (max_tags == ptls->zone_max) in mlx5e_max_tag_proc()
214 ptls->zone_max = max_tags; in mlx5e_max_tag_proc()
215 uma_zone_set_max(ptls->zone, ptls->zone_max); in mlx5e_max_tag_proc()
225 int zone_max = 0, prealloc_tags = 0; in mlx5e_tls_init() local
241 TUNABLE_INT_FETCH("hw.mlx5.tls_max_tags", &zone_max); in mlx5e_tls_init()
254 if (zone_max != 0) { in mlx5e_tls_init()
255 ptls->zone_max = zone_max; in mlx5e_tls_init()
256 if (ptls->zone_max > priv->tls.max_resources) in mlx5e_tls_init()
[all …]
H A Den_hw_tls.h89 int zone_max; member