Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.11 17 lines 321 B view raw
1// SPDX-License-Identifier: GPL-2.0 2 3#include <test_progs.h> 4 5#include "atomic_bounds.skel.h" 6 7void test_atomic_bounds(void) 8{ 9 struct atomic_bounds *skel; 10 __u32 duration = 0; 11 12 skel = atomic_bounds__open_and_load(); 13 if (CHECK(!skel, "skel_load", "couldn't load program\n")) 14 return; 15 16 atomic_bounds__destroy(skel); 17}