This commit adds the probe function to the RegEx PMD. Signed-off-by: Parav Pandit <parav@mellanox.com> Signed-off-by: Ori Kam <orika@mellanox.com>
15 lines
369 B
C
15 lines
369 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright 2020 Mellanox Technologies, Ltd
|
|
*/
|
|
|
|
#ifndef MLX5_REGEX_H
|
|
#define MLX5_REGEX_H
|
|
|
|
struct mlx5_regex_priv {
|
|
TAILQ_ENTRY(mlx5_regex_priv) next;
|
|
struct ibv_context *ctx; /* Device context. */
|
|
struct rte_pci_device *pci_dev;
|
|
struct rte_regexdev *regexdev; /* Pointer to the RegEx dev. */
|
|
};
|
|
#endif /* MLX5_REGEX_H */
|