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

We are ready to support most of TC. Enable C code gen. Reviewed-by: Donald Hunter <donald.hunter@gmail.com> Link: https://patch.msgid.link/20250520161916.413298-11-kuba@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
49 lines
2.7 KiB
Text
49 lines
2.7 KiB
Text
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# Try to include uAPI headers from the kernel uapi/ path.
|
|
# Most code under tools/ requires the respective kernel uAPI headers
|
|
# to be copied to tools/include. The duplication is annoying.
|
|
# All the family headers should be self-contained. We avoid the copying
|
|
# by selectively including just the uAPI header of the family directly
|
|
# from the kernel sources.
|
|
|
|
UAPI_PATH:=../../../../include/uapi/
|
|
|
|
# scripts/headers_install.sh strips "_UAPI" from header guards so we
|
|
# need the explicit -D matching what's in /usr, to avoid multiple definitions.
|
|
|
|
get_hdr_inc=-D$(1) -include $(UAPI_PATH)/linux/$(2)
|
|
|
|
CFLAGS_devlink:=$(call get_hdr_inc,_LINUX_DEVLINK_H_,devlink.h)
|
|
CFLAGS_dpll:=$(call get_hdr_inc,_LINUX_DPLL_H,dpll.h)
|
|
CFLAGS_ethtool:=$(call get_hdr_inc,_LINUX_ETHTOOL_H,ethtool.h) \
|
|
$(call get_hdr_inc,_LINUX_ETHTOOL_NETLINK_H_,ethtool_netlink.h) \
|
|
$(call get_hdr_inc,_LINUX_ETHTOOL_NETLINK_GENERATED_H,ethtool_netlink_generated.h)
|
|
CFLAGS_handshake:=$(call get_hdr_inc,_LINUX_HANDSHAKE_H,handshake.h)
|
|
CFLAGS_lockd_netlink:=$(call get_hdr_inc,_LINUX_LOCKD_NETLINK_H,lockd_netlink.h)
|
|
CFLAGS_mptcp_pm:=$(call get_hdr_inc,_LINUX_MPTCP_PM_H,mptcp_pm.h)
|
|
CFLAGS_net_shaper:=$(call get_hdr_inc,_LINUX_NET_SHAPER_H,net_shaper.h)
|
|
CFLAGS_netdev:=$(call get_hdr_inc,_LINUX_NETDEV_H,netdev.h)
|
|
CFLAGS_nl80211:=$(call get_hdr_inc,__LINUX_NL802121_H,nl80211.h)
|
|
CFLAGS_nlctrl:=$(call get_hdr_inc,__LINUX_GENERIC_NETLINK_H,genetlink.h)
|
|
CFLAGS_nfsd:=$(call get_hdr_inc,_LINUX_NFSD_NETLINK_H,nfsd_netlink.h)
|
|
CFLAGS_ovpn:=$(call get_hdr_inc,_LINUX_OVPN_H,ovpn.h)
|
|
CFLAGS_ovs_datapath:=$(call get_hdr_inc,__LINUX_OPENVSWITCH_H,openvswitch.h)
|
|
CFLAGS_ovs_flow:=$(call get_hdr_inc,__LINUX_OPENVSWITCH_H,openvswitch.h)
|
|
CFLAGS_ovs_vport:=$(call get_hdr_inc,__LINUX_OPENVSWITCH_H,openvswitch.h)
|
|
CFLAGS_rt-addr:=$(call get_hdr_inc,__LINUX_RTNETLINK_H,rtnetlink.h) \
|
|
$(call get_hdr_inc,__LINUX_IF_ADDR_H,if_addr.h)
|
|
CFLAGS_rt-link:=$(call get_hdr_inc,__LINUX_RTNETLINK_H,rtnetlink.h) \
|
|
$(call get_hdr_inc,_LINUX_IF_LINK_H,if_link.h)
|
|
CFLAGS_rt-neigh:=$(call get_hdr_inc,__LINUX_RTNETLINK_H,rtnetlink.h) \
|
|
$(call get_hdr_inc,__LINUX_NEIGHBOUR_H,neighbour.h)
|
|
CFLAGS_rt-route:=$(call get_hdr_inc,__LINUX_RTNETLINK_H,rtnetlink.h)
|
|
CFLAGS_rt-rule:=$(call get_hdr_inc,__LINUX_FIB_RULES_H,fib_rules.h)
|
|
CFLAGS_tc:= $(call get_hdr_inc,__LINUX_RTNETLINK_H,rtnetlink.h) \
|
|
$(call get_hdr_inc,__LINUX_PKT_SCHED_H,pkt_sched.h) \
|
|
$(call get_hdr_inc,__LINUX_PKT_CLS_H,pkt_cls.h) \
|
|
$(call get_hdr_inc,_TC_CT_H,tc_act/tc_ct.h) \
|
|
$(call get_hdr_inc,_TC_MIRRED_H,tc_act/tc_mirred.h) \
|
|
$(call get_hdr_inc,_TC_SKBEDIT_H,tc_act/tc_skbedit.h) \
|
|
$(call get_hdr_inc,_TC_TUNNEL_KEY_H,tc_act/tc_tunnel_key.h)
|
|
CFLAGS_tcp_metrics:=$(call get_hdr_inc,_LINUX_TCP_METRICS_H,tcp_metrics.h)
|