1 /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
3 * Copyright (c) 2018 Mellanox Technologies. All rights reserved.
6 #ifndef __MLX5_IB_REP_H__
7 #define __MLX5_IB_REP_H__
9 #include <linux/mlx5/eswitch.h>
12 extern const struct mlx5_ib_profile raw_eth_profile
;
14 #ifdef CONFIG_MLX5_ESWITCH
15 int mlx5r_rep_init(void);
16 void mlx5r_rep_cleanup(void);
17 struct mlx5_flow_handle
*create_flow_rule_vport_sq(struct mlx5_ib_dev
*dev
,
18 struct mlx5_ib_sq
*sq
,
20 struct net_device
*mlx5_ib_get_rep_netdev(struct mlx5_eswitch
*esw
,
22 #else /* CONFIG_MLX5_ESWITCH */
23 static inline int mlx5r_rep_init(void) { return 0; }
24 static inline void mlx5r_rep_cleanup(void) {}
26 struct mlx5_flow_handle
*create_flow_rule_vport_sq(struct mlx5_ib_dev
*dev
,
27 struct mlx5_ib_sq
*sq
,
34 struct net_device
*mlx5_ib_get_rep_netdev(struct mlx5_eswitch
*esw
,
40 #endif /* __MLX5_IB_REP_H__ */