mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
This moves a few functions which can be useful to other python programs that manipulate XDP programs. This also refactors xdp.py to use the refactored functions. Signed-off-by: Chris J Arges <carges@cloudflare.com> Link: https://patch.msgid.link/20260325201139.2501937-6-carges@cloudflare.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
38 lines
1.8 KiB
Python
38 lines
1.8 KiB
Python
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
"""
|
|
Python selftest helpers for netdev.
|
|
"""
|
|
|
|
from .consts import KSRC
|
|
from .ksft import KsftFailEx, KsftSkipEx, KsftXfailEx, ksft_pr, ksft_eq, \
|
|
ksft_ne, ksft_true, ksft_not_none, ksft_in, ksft_not_in, ksft_is, \
|
|
ksft_ge, ksft_gt, ksft_lt, ksft_raises, ksft_busy_wait, \
|
|
ktap_result, ksft_disruptive, ksft_setup, ksft_run, ksft_exit, \
|
|
ksft_variants, KsftNamedVariant
|
|
from .netns import NetNS, NetNSEnter
|
|
from .nsim import NetdevSim, NetdevSimDev
|
|
from .utils import CmdExitFailure, fd_read_timeout, cmd, bkg, defer, \
|
|
bpftool, ip, ethtool, bpftrace, rand_port, rand_ports, wait_port_listen, \
|
|
wait_file, tool
|
|
from .bpf import bpf_map_set, bpf_map_dump, bpf_prog_map_ids
|
|
from .ynl import NlError, NlctrlFamily, YnlFamily, \
|
|
EthtoolFamily, NetdevFamily, RtnlFamily, RtnlAddrFamily
|
|
from .ynl import NetshaperFamily, DevlinkFamily, PSPFamily, Netlink
|
|
|
|
__all__ = ["KSRC",
|
|
"KsftFailEx", "KsftSkipEx", "KsftXfailEx", "ksft_pr", "ksft_eq",
|
|
"ksft_ne", "ksft_true", "ksft_not_none", "ksft_in", "ksft_not_in",
|
|
"ksft_is", "ksft_ge", "ksft_gt", "ksft_lt", "ksft_raises",
|
|
"ksft_busy_wait", "ktap_result", "ksft_disruptive", "ksft_setup",
|
|
"ksft_run", "ksft_exit", "ksft_variants", "KsftNamedVariant",
|
|
"NetNS", "NetNSEnter",
|
|
"CmdExitFailure", "fd_read_timeout", "cmd", "bkg", "defer",
|
|
"bpftool", "ip", "ethtool", "bpftrace", "rand_port", "rand_ports",
|
|
"wait_port_listen", "wait_file", "tool",
|
|
"bpf_map_set", "bpf_map_dump", "bpf_prog_map_ids",
|
|
"NetdevSim", "NetdevSimDev",
|
|
"NetshaperFamily", "DevlinkFamily", "PSPFamily", "NlError",
|
|
"YnlFamily", "EthtoolFamily", "NetdevFamily", "RtnlFamily",
|
|
"NlctrlFamily", "RtnlAddrFamily", "Netlink"]
|