Home
last modified time | relevance | path

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

/freebsd-13.1/sys/dev/mlx5/mlx5_ib/
H A Dmlx5_ib_mr.c1232 mr->descs_alloc = kzalloc(size + add_size, GFP_KERNEL); in mlx5_alloc_priv_descs()
1233 if (!mr->descs_alloc) in mlx5_alloc_priv_descs()
1236 mr->descs = PTR_ALIGN(mr->descs_alloc, MLX5_UMR_ALIGN); in mlx5_alloc_priv_descs()
1247 kfree(mr->descs_alloc); in mlx5_alloc_priv_descs()
1261 kfree(mr->descs_alloc); in mlx5_free_priv_descs()
H A Dmlx5_ib.h541 void *descs_alloc; member