Home
last modified time | relevance | path

Searched refs:map_mmaped (Results 1 – 1 of 1) sorted by relevance

/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/
H A Dmmap.c24 void *bss_mmaped = NULL, *map_mmaped = NULL, *tmp0, *tmp1, *tmp2; in test_mmap() local
67 map_mmaped = mmap(NULL, map_sz, PROT_READ | PROT_WRITE, MAP_SHARED, in test_mmap()
69 if (CHECK(map_mmaped == MAP_FAILED, "data_mmap", in test_mmap()
71 map_mmaped = NULL; in test_mmap()
76 map_data = map_mmaped; in test_mmap()
121 err = mprotect(map_mmaped, map_sz, PROT_READ); in test_mmap()
126 err = munmap(map_mmaped, map_sz); in test_mmap()
127 map_mmaped = NULL; in test_mmap()
132 map_mmaped = mmap(NULL, map_sz, PROT_READ, MAP_SHARED, data_map_fd, 0); in test_mmap()
133 if (CHECK(map_mmaped == MAP_FAILED, "data_mmap", in test_mmap()
[all …]