diff options
author | Leon Romanovsky <leonro@mellanox.com> | 2020-07-02 11:18:07 +0300 |
---|---|---|
committer | Jason Gunthorpe <jgg@nvidia.com> | 2020-07-07 20:05:51 +0300 |
commit | f7c4ffda0cbf7823915cbfebdbbe8460e7eeca67 (patch) | |
tree | edae00005a0a48faf9941affe5aba8c35f7ad358 /drivers/infiniband/hw/mlx5/Makefile | |
parent | 64825827ae3a53e01fc9bb9483b1a2ed7cb2b657 (diff) | |
download | linux-f7c4ffda0cbf7823915cbfebdbbe8460e7eeca67.tar.xz |
RDMA/mlx5: Separate flow steering logic from main.c
Move flow steering logic to be in separate file and rename flow.c to be
fs.c because it is better describe the content.
Link: https://lore.kernel.org/r/20200702081809.423482-5-leon@kernel.org
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Diffstat (limited to 'drivers/infiniband/hw/mlx5/Makefile')
-rw-r--r-- | drivers/infiniband/hw/mlx5/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx5/Makefile b/drivers/infiniband/hw/mlx5/Makefile index 34eaceb293b4..b4c009bb0db6 100644 --- a/drivers/infiniband/hw/mlx5/Makefile +++ b/drivers/infiniband/hw/mlx5/Makefile @@ -23,6 +23,6 @@ mlx5_ib-y := ah.o \ mlx5_ib-$(CONFIG_INFINIBAND_ON_DEMAND_PAGING) += odp.o mlx5_ib-$(CONFIG_MLX5_ESWITCH) += ib_rep.o mlx5_ib-$(CONFIG_INFINIBAND_USER_ACCESS) += devx.o \ - flow.o \ + fs.o \ qos.o \ std_types.o |