]> Git Repo - J-linux.git/blob - tools/testing/selftests/bpf/prog_tests/xdpwall.c
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / tools / testing / selftests / bpf / prog_tests / xdpwall.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2021 Facebook */
3
4 #include "test_progs.h"
5 #include "xdpwall.skel.h"
6
7 void test_xdpwall(void)
8 {
9         struct xdpwall *skel;
10
11         skel = xdpwall__open_and_load();
12         ASSERT_OK_PTR(skel, "Does LLVM have https://github.com/llvm/llvm-project/commit/ea72b0319d7b0f0c2fcf41d121afa5d031b319d5?");
13
14         xdpwall__destroy(skel);
15 }
This page took 0.026851 seconds and 4 git commands to generate.