diff options
author | Mark Bloch <markb@mellanox.com> | 2018-08-28 13:18:49 +0200 |
---|---|---|
committer | Leon Romanovsky <leonro@mellanox.com> | 2018-09-05 07:11:26 +0200 |
commit | 50acec06f3928fc29647aecf1270e54cae583afb (patch) | |
tree | 5edea1be0386ea4b7a1a8df26961c538ff82364d /include | |
parent | net/mlx5: Pass a namespace for packet reformat ID allocation (diff) | |
download | linux-50acec06f3928fc29647aecf1270e54cae583afb.tar.xz linux-50acec06f3928fc29647aecf1270e54cae583afb.zip |
net/mlx5: Export packet reformat alloc/dealloc functions
This will allow for the RDMA side to allocate packet reformat context.
Signed-off-by: Mark Bloch <markb@mellanox.com>
Reviewed-by: Saeed Mahameed <saeedm@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mlx5/fs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/mlx5/fs.h b/include/linux/mlx5/fs.h index 37d0c08d0966..b1c026f1c8ba 100644 --- a/include/linux/mlx5/fs.h +++ b/include/linux/mlx5/fs.h @@ -203,4 +203,13 @@ int mlx5_modify_header_alloc(struct mlx5_core_dev *dev, void mlx5_modify_header_dealloc(struct mlx5_core_dev *dev, 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 |