D | fexit_many_args.c | 1 // SPDX-License-Identifier: GPL-2.0 2 /* Copyright (c) 2023 Tencent */ 11 int BPF_PROG(test1, __u64 a, void *b, short c, int d, void *e, char f, in BPF_PROG() argument 14 test1_result = a == 16 && b == (void *)17 && c == 18 && d == 19 && in BPF_PROG() 15 e == (void *)20 && f == 21 && g == 22 && ret == 133; in BPF_PROG() 21 int BPF_PROG(test2, __u64 a, void *b, short c, int d, void *e, char f, in BPF_PROG() argument 25 test2_result = a == 16 && b == (void *)17 && c == 18 && d == 19 && in BPF_PROG() 26 e == (void *)20 && f == 21 && g == 22 && h == 23 && in BPF_PROG() 33 int BPF_PROG(test3, __u64 a, __u64 b, __u64 c, __u64 d, __u64 e, __u64 f, in BPF_PROG() argument 36 test3_result = a == 16 && b == 17 && c == 18 && d == 19 && in BPF_PROG() [all …]
|