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 napi_list_check(nf) -> None:
38 def page_pool_check(nf) -> None:
81 attached = [pp for pp in pp_list if "detach-time" not in pp]
82 ksft_eq(len(attached), 0)
87 attached = [pp for pp in pp_list if "detach-time" not in pp]
88 detached = [pp for pp in pp_list if "detach-time" in pp]
89 ksft_eq(len(attached), 1)
102 # we're trying to exercise the orphaning path in the kernel
107 def main() -> None: