Searched refs:bss_mmaped (Results 1 – 1 of 1) sorted by relevance
/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | mmap.c | 24 void *bss_mmaped = NULL, *map_mmaped = NULL, *tmp0, *tmp1, *tmp2; in test_mmap() local 73 bss_mmaped = mmap(NULL, bss_sz, PROT_READ | PROT_WRITE, MAP_SHARED, in test_mmap() 75 if (CHECK(bss_mmaped == MAP_FAILED, "bss_mmap", in test_mmap() 77 bss_mmaped = NULL; in test_mmap() 89 bss_data = bss_mmaped; in test_mmap() 266 CHECK_FAIL(munmap(bss_mmaped, bss_sz)); in test_mmap() 267 bss_mmaped = NULL; in test_mmap() 299 if (bss_mmaped) in test_mmap() 300 CHECK_FAIL(munmap(bss_mmaped, bss_sz)); in test_mmap()
|