Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 50acec06 authored by Mark Bloch's avatar Mark Bloch Committed by Leon Romanovsky
Browse files

net/mlx5: Export packet reformat alloc/dealloc functions



This will allow for the RDMA side to allocate packet reformat context.

Signed-off-by: default avatarMark Bloch <markb@mellanox.com>
Reviewed-by: default avatarSaeed Mahameed <saeedm@mellanox.com>
Signed-off-by: default avatarLeon Romanovsky <leonro@mellanox.com>
parent 31ca3648
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -651,6 +651,7 @@ int mlx5_packet_reformat_alloc(struct mlx5_core_dev *dev,
	kfree(in);
	kfree(in);
	return err;
	return err;
}
}
EXPORT_SYMBOL(mlx5_packet_reformat_alloc);


void mlx5_packet_reformat_dealloc(struct mlx5_core_dev *dev,
void mlx5_packet_reformat_dealloc(struct mlx5_core_dev *dev,
				  u32 packet_reformat_id)
				  u32 packet_reformat_id)
@@ -666,6 +667,7 @@ void mlx5_packet_reformat_dealloc(struct mlx5_core_dev *dev,


	mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
	mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out));
}
}
EXPORT_SYMBOL(mlx5_packet_reformat_dealloc);


int mlx5_modify_header_alloc(struct mlx5_core_dev *dev,
int mlx5_modify_header_alloc(struct mlx5_core_dev *dev,
			     u8 namespace, u8 num_actions,
			     u8 namespace, u8 num_actions,
+0 −8
Original line number Original line Diff line number Diff line
@@ -170,14 +170,6 @@ struct mlx5_core_dev *mlx5_get_next_phys_dev(struct mlx5_core_dev *dev);
void mlx5_dev_list_lock(void);
void mlx5_dev_list_lock(void);
void mlx5_dev_list_unlock(void);
void mlx5_dev_list_unlock(void);
int mlx5_dev_list_trylock(void);
int mlx5_dev_list_trylock(void);
int mlx5_packet_reformat_alloc(struct mlx5_core_dev *dev,
			       int reformat_type,
			       size_t size,
			       void *reformat_data,
			       enum mlx5_flow_namespace_type namespace,
			       u32 *packet_reformat_id);
void mlx5_packet_reformat_dealloc(struct mlx5_core_dev *dev,
				  u32 packet_reformat_id);


bool mlx5_lag_intf_add(struct mlx5_interface *intf, struct mlx5_priv *priv);
bool mlx5_lag_intf_add(struct mlx5_interface *intf, struct mlx5_priv *priv);


+9 −0
Original line number Original line Diff line number Diff line
@@ -203,4 +203,13 @@ int mlx5_modify_header_alloc(struct mlx5_core_dev *dev,
void mlx5_modify_header_dealloc(struct mlx5_core_dev *dev,
void mlx5_modify_header_dealloc(struct mlx5_core_dev *dev,
				u32 modify_header_id);
				u32 modify_header_id);


int mlx5_packet_reformat_alloc(struct mlx5_core_dev *dev,
			       int reformat_type,
			       size_t size,
			       void *reformat_data,
			       enum mlx5_flow_namespace_type namespace,
			       u32 *packet_reformat_id);
void mlx5_packet_reformat_dealloc(struct mlx5_core_dev *dev,
				  u32 packet_reformat_id);

#endif
#endif