Lines Matching +full:re +full:- +full:attached
2 # SPDX-License-Identifier: GPL-2.0
10 def empty_check(nf) -> None:
15 def lo_check(nf) -> None:
17 ksft_eq(len(lo_info['xdp-features']), 0)
18 ksft_eq(len(lo_info['xdp-rx-metadata-features']), 0)
21 def page_pool_check(nf) -> None:
64 attached = [pp for pp in pp_list if "detach-time" not in pp]
65 ksft_eq(len(attached), 0)
70 attached = [pp for pp in pp_list if "detach-time" not in pp]
71 detached = [pp for pp in pp_list if "detach-time" in pp]
72 ksft_eq(len(attached), 1)
85 # we're trying to exercise the orphaning path in the kernel
90 def main() -> None: