Home
last modified time | relevance | path

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

/freebsd/sys/dev/mlx5/mlx5_en/
H A Dmlx5_en_hw_tls.c190 max_tags = ptls->zone_max; in mlx5e_max_tag_proc()
194 if (max_tags == ptls->zone_max) in mlx5e_max_tag_proc()
198 ptls->zone_max = max_tags; in mlx5e_max_tag_proc()
199 uma_zone_set_max(ptls->zone, ptls->zone_max); in mlx5e_max_tag_proc()
209 int zone_max = 0, prealloc_tags = 0; in mlx5e_tls_init() local
225 TUNABLE_INT_FETCH("hw.mlx5.tls_max_tags", &zone_max); in mlx5e_tls_init()
238 if (zone_max != 0) { in mlx5e_tls_init()
239 ptls->zone_max = zone_max; in mlx5e_tls_init()
240 if (ptls->zone_max > priv->tls.max_resources) in mlx5e_tls_init()
241 ptls->zone_max = priv->tls.max_resources; in mlx5e_tls_init()
[all …]
H A Den_hw_tls.h87 int zone_max; member