mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-28 00:19:36 +00:00

The netiucv driver creates TCP/IP interfaces over IUCV between Linux guests on z/VM and other z/VM entities. Rationale for removal: - NETIUCV connections are only supported for compatibility with earlier versions and not to be used for new network setups, since at least Linux kernel 4.0. - No known active users, use cases, or product dependencies - The driver is no longer relevant for z/VM networking; preferred methods include: * Device pass-through (e.g., OSA, RoCE) * z/VM Virtual Switch (VSWITCH) The IUCV mechanism itself remains supported and is actively used via AF_IUCV, hvc_iucv, and smsg_iucv. Signed-off-by: Nagamani PV <nagamani@linux.ibm.com> Reviewed-by: Alexandra Winter <wintera@linux.ibm.com> Signed-off-by: Alexandra Winter <wintera@linux.ibm.com> Reviewed-by: Simon Horman <horms@kernel.org> Link: https://patch.msgid.link/20250715074210.3999296-1-wintera@linux.ibm.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
19 lines
557 B
Makefile
19 lines
557 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# S/390 network devices
|
|
#
|
|
|
|
ctcm-y += ctcm_main.o ctcm_fsms.o ctcm_mpc.o ctcm_sysfs.o ctcm_dbug.o
|
|
obj-$(CONFIG_CTCM) += ctcm.o fsm.o
|
|
obj-$(CONFIG_SMSGIUCV) += smsgiucv.o
|
|
obj-$(CONFIG_SMSGIUCV_EVENT) += smsgiucv_app.o
|
|
qeth-y += qeth_core_sys.o qeth_core_main.o qeth_core_mpc.o qeth_ethtool.o
|
|
obj-$(CONFIG_QETH) += qeth.o
|
|
qeth_l2-y += qeth_l2_main.o qeth_l2_sys.o
|
|
obj-$(CONFIG_QETH_L2) += qeth_l2.o
|
|
qeth_l3-y += qeth_l3_main.o qeth_l3_sys.o
|
|
obj-$(CONFIG_QETH_L3) += qeth_l3.o
|
|
|
|
ism-y := ism_drv.o
|
|
obj-$(CONFIG_ISM) += ism.o
|