summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/bpf.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/tests/bpf.nix b/nixos/tests/bpf.nix
index 5868e3bfcb4c..5dc97404772b 100644
--- a/nixos/tests/bpf.nix
+++ b/nixos/tests/bpf.nix
@@ -25,5 +25,9 @@ import ./make-test-python.nix ({ pkgs, ... }: {
print(machine.succeed("bpftrace -e 'kprobe:schedule { "
" printf(\"tgid: %d\", ((struct task_struct*) curtask)->tgid); exit() "
"}'"))
+ # module BTF (bpftrace >= 0.17)
+ print(machine.succeed("bpftrace -e 'kfunc:nft_trans_alloc_gfp { "
+ " printf(\"portid: %d\\n\",args->ctx->portid); "
+ "} BEGIN { exit() }'"))
'';
})