1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (c) 2019 Facebook
3 #include <linux/sched.h>
4 #include <linux/ptrace.h>
9 #include "bpf_helpers.h"
11 char _license
[] SEC("license") = "GPL";
13 SEC("raw_tracepoint/kfree_skb")
14 int nested_loops(volatile struct pt_regs
* ctx
)
18 for (j
= 0; j
< 300; j
++)
19 for (i
= 0; i
< j
; i
++) {