1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (c) 2020 Facebook */
5 #include <bpf/bpf_helpers.h>
10 static __attribute__ ((noinline))
11 int f0(int var, struct __sk_buff *skb)
18 __attribute__ ((noinline))
19 int f1(struct __sk_buff *skb)
21 volatile char buf[MAX_STACK] = {};
23 __sink(buf[MAX_STACK - 1]);
25 return f0(0, skb) + skb->len;
28 int f3(int, struct __sk_buff *skb, int);
30 __attribute__ ((noinline))
31 int f2(int val, struct __sk_buff *skb)
33 volatile char buf[MAX_STACK] = {};
35 __sink(buf[MAX_STACK - 1]);
37 return f1(skb) + f3(val, skb, 1);
40 __attribute__ ((noinline))
41 int f3(int val, struct __sk_buff *skb, int var)
43 volatile char buf[MAX_STACK] = {};
45 __sink(buf[MAX_STACK - 1]);
47 return skb->ifindex * val * var;
51 __failure __msg("combined stack size of 3 calls is")
52 int global_func1(struct __sk_buff *skb)
54 return f0(1, skb) + f1(skb) + f2(2, skb) + f3(3, skb, 4);