Lines Matching refs:map_opts
500 LIBBPF_OPTS(bpf_map_create_opts, map_opts); in userns_map_create()
520 map_opts.map_flags = 0; in userns_map_create()
521 map_opts.token_fd = 0; in userns_map_create()
522 map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "wo_token_wo_bpf", 0, 8, 1, &map_opts); in userns_map_create()
529 map_opts.map_flags = BPF_F_TOKEN_FD; in userns_map_create()
530 map_opts.token_fd = token_fd; in userns_map_create()
531 map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "w_token_wo_bpf", 0, 8, 1, &map_opts); in userns_map_create()
543 map_opts.map_flags = 0; in userns_map_create()
544 map_opts.token_fd = 0; in userns_map_create()
545 map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "wo_token_w_bpf", 0, 8, 1, &map_opts); in userns_map_create()
552 map_opts.map_flags = BPF_F_TOKEN_FD; in userns_map_create()
553 map_opts.token_fd = token_fd; in userns_map_create()
554 map_fd = bpf_map_create(BPF_MAP_TYPE_STACK, "w_token_w_bpf", 0, 8, 1, &map_opts); in userns_map_create()