mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 18:43:33 +02:00
Add a net namespace implementation file to rxe to manage the lifecycle of IPv4 and IPv6 sockets per network namespace. This implementation handles the creation and destruction of the sockets both for init_net and for dynamically created network namespaces. The sockets are initialized when a namespace becomes active and are properly released when the namespace is removed. This change provides the infrastructure needed for rxe to operate correctly in environments using multiple network namespaces. Reviewed-by: David Ahern <dsahern@kernel.org> Signed-off-by: Zhu Yanjun <yanjun.zhu@linux.dev> Link: https://patch.msgid.link/20260313023058.13020-3-yanjun.zhu@linux.dev Signed-off-by: Leon Romanovsky <leon@kernel.org>
29 lines
448 B
Makefile
29 lines
448 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_RDMA_RXE) += rdma_rxe.o
|
|
|
|
rdma_rxe-y := \
|
|
rxe.o \
|
|
rxe_comp.o \
|
|
rxe_req.o \
|
|
rxe_resp.o \
|
|
rxe_recv.o \
|
|
rxe_pool.o \
|
|
rxe_queue.o \
|
|
rxe_verbs.o \
|
|
rxe_av.o \
|
|
rxe_srq.o \
|
|
rxe_qp.o \
|
|
rxe_cq.o \
|
|
rxe_mr.o \
|
|
rxe_mw.o \
|
|
rxe_opcode.o \
|
|
rxe_mmap.o \
|
|
rxe_icrc.o \
|
|
rxe_mcast.o \
|
|
rxe_task.o \
|
|
rxe_net.o \
|
|
rxe_hw_counters.o \
|
|
rxe_ns.o
|
|
|
|
rdma_rxe-$(CONFIG_INFINIBAND_ON_DEMAND_PAGING) += rxe_odp.o
|