mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

This patch introduces support for allocating and deallocating the DMAH object. Further details: ---------------- The DMAH API is exposed to upper layers only if the underlying device supports TPH. It uses the mlx5_core steering tag (ST) APIs to get a steering tag index based on the provided input. The obtained index is stored in the device-specific mlx5_dmah structure for future use. Upcoming patches in the series will integrate the allocated DMAH into the memory region (MR) registration process. Signed-off-by: Yishai Hadas <yishaih@nvidia.com> Reviewed-by: Edward Srouji <edwards@nvidia.com> Link: https://patch.msgid.link/778550776799d82edb4d05da249a1cff00160b50.1752752567.git.leon@kernel.org Signed-off-by: Leon Romanovsky <leon@kernel.org>
33 lines
670 B
Makefile
33 lines
670 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-$(CONFIG_MLX5_INFINIBAND) += mlx5_ib.o
|
|
|
|
mlx5_ib-y := ah.o \
|
|
cmd.o \
|
|
cong.o \
|
|
counters.o \
|
|
cq.o \
|
|
data_direct.o \
|
|
dm.o \
|
|
dmah.o \
|
|
doorbell.o \
|
|
fs.o \
|
|
gsi.o \
|
|
ib_virt.o \
|
|
mad.o \
|
|
main.o \
|
|
mem.o \
|
|
mr.o \
|
|
qp.o \
|
|
qpc.o \
|
|
restrack.o \
|
|
srq.o \
|
|
srq_cmd.o \
|
|
umr.o \
|
|
wr.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 \
|
|
qos.o \
|
|
std_types.o
|
|
mlx5_ib-$(CONFIG_MLX5_MACSEC) += macsec.o
|