mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 15:24:02 -04:00
The "splice" alternate mode for mptcp_connect.sh/.c is available now, this patch adds mptcp_connect_splice.sh to test it in the MPTCP CI by default. Note that this mode is also supported by stable kernel versions, but optimised in this patch series. Suggested-by: Matthieu Baerts <matttbe@kernel.org> Signed-off-by: Geliang Tang <tanggeliang@kylinos.cn> Reviewed-by: Mat Martineau <martineau@kernel.org> Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org> Link: https://patch.msgid.link/20260130-net-next-mptcp-splice-v2-6-31332ba70d7f@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
40 lines
746 B
Makefile
40 lines
746 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
top_srcdir = ../../../../..
|
|
|
|
CFLAGS += -Wall -Wl,--no-as-needed -O2 -g -I$(top_srcdir)/usr/include $(KHDR_INCLUDES)
|
|
CFLAGS += -I$(top_srcdir)/tools/include
|
|
|
|
TEST_PROGS := \
|
|
diag.sh \
|
|
mptcp_connect.sh \
|
|
mptcp_connect_checksum.sh \
|
|
mptcp_connect_mmap.sh \
|
|
mptcp_connect_sendfile.sh \
|
|
mptcp_connect_splice.sh \
|
|
mptcp_join.sh \
|
|
mptcp_sockopt.sh \
|
|
pm_netlink.sh \
|
|
simult_flows.sh \
|
|
userspace_pm.sh \
|
|
# end of TEST_PROGS
|
|
|
|
TEST_GEN_FILES := \
|
|
mptcp_connect \
|
|
mptcp_diag \
|
|
mptcp_inq \
|
|
mptcp_sockopt \
|
|
pm_nl_ctl \
|
|
# end of TEST_GEN_FILES
|
|
|
|
TEST_FILES := \
|
|
mptcp_lib.sh \
|
|
settings \
|
|
# end of TEST_FILES
|
|
|
|
TEST_INCLUDES := ../lib.sh $(wildcard ../lib/sh/*.sh)
|
|
|
|
EXTRA_CLEAN := *.pcap
|
|
|
|
include ../../lib.mk
|