Lines Matching full:map_opts
502 LIBBPF_OPTS(bpf_map_create_opts, map_opts); in userns_map_create()
522 map_opts.map_flags = 0; in userns_map_create()
523 map_opts.token_fd = 0; in userns_map_create()
524 map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "wo_token_wo_bpf", 0, 8, 1, &map_opts); in userns_map_create()
531 map_opts.map_flags = BPF_F_TOKEN_FD; in userns_map_create()
532 map_opts.token_fd = token_fd; in userns_map_create()
533 map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "w_token_wo_bpf", 0, 8, 1, &map_opts); in userns_map_create()
545 map_opts.map_flags = 0; in userns_map_create()
546 map_opts.token_fd = 0; in userns_map_create()
547 map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "wo_token_w_bpf", 0, 8, 1, &map_opts); in userns_map_create()
554 map_opts.map_flags = BPF_F_TOKEN_FD; in userns_map_create()
555 map_opts.token_fd = token_fd; in userns_map_create()
556 map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "w_token_w_bpf", 0, 8, 1, &map_opts); in userns_map_create()