mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
46ac64419d
This introduces a kind of Emulated-ISM device named loopback-ism for SMCv2.1. The loopback-ism device is currently exclusive for SMC usage, and aims to provide an SMC shortcut for sockets within the same kernel, leading to improved intra-OS traffic performance. Configuration of this feature is managed through the config SMC_LO. Signed-off-by: Wen Gu <guwen@linux.alibaba.com> Reviewed-by: Gerd Bayer <gbayer@linux.ibm.com> Reviewed-by: Wenjia Zhang <wenjia@linux.ibm.com> Reviewed-and-tested-by: Jan Karcher <jaka@linux.ibm.com> Signed-off-by: Paolo Abeni <pabeni@redhat.com>
10 lines
391 B
Makefile
10 lines
391 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
ccflags-y += -I$(src)
|
|
obj-$(CONFIG_SMC) += smc.o
|
|
obj-$(CONFIG_SMC_DIAG) += smc_diag.o
|
|
smc-y := af_smc.o smc_pnet.o smc_ib.o smc_clc.o smc_core.o smc_wr.o smc_llc.o
|
|
smc-y += smc_cdc.o smc_tx.o smc_rx.o smc_close.o smc_ism.o smc_netlink.o smc_stats.o
|
|
smc-y += smc_tracepoint.o
|
|
smc-$(CONFIG_SYSCTL) += smc_sysctl.o
|
|
smc-$(CONFIG_SMC_LO) += smc_loopback.o
|