Home
last modified time | relevance | path

Searched refs:async_icosq (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_main.c2592 struct mlx5e_icosq *async_icosq; in mlx5e_open_async_icosq() local
2595 async_icosq = kvzalloc_node(sizeof(*async_icosq), GFP_KERNEL, in mlx5e_open_async_icosq()
2597 if (!async_icosq) in mlx5e_open_async_icosq()
2600 err = mlx5e_open_cq(c->mdev, icocq_moder, &cparam->async_icosq.cqp, ccp, in mlx5e_open_async_icosq()
2601 &async_icosq->cq); in mlx5e_open_async_icosq()
2605 err = mlx5e_open_icosq(c, params, &cparam->async_icosq, async_icosq, in mlx5e_open_async_icosq()
2610 return async_icosq; in mlx5e_open_async_icosq()
2613 mlx5e_close_cq(&async_icosq->cq); in mlx5e_open_async_icosq()
2615 kvfree(async_icosq); in mlx5e_open_async_icosq()
2619 static void mlx5e_close_async_icosq(struct mlx5e_icosq *async_icosq) in mlx5e_close_async_icosq() argument
[all …]
H A Den.h791 struct mlx5e_icosq *async_icosq; member
/linux/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dparams.c1316 mlx5e_build_async_icosq_param(mdev, async_icosq_log_wq_sz, &cparam->async_icosq); in mlx5e_build_channel_param()