Lines Matching refs:map_fds

621 			  struct bpf_insn *prog, int *map_fds)  in do_test_fixup()  argument
654 map_fds[0] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long), in do_test_fixup()
657 prog[*fixup_map_hash_8b].imm = map_fds[0]; in do_test_fixup()
663 map_fds[1] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long), in do_test_fixup()
666 prog[*fixup_map_hash_48b].imm = map_fds[1]; in do_test_fixup()
672 map_fds[2] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long), in do_test_fixup()
675 prog[*fixup_map_hash_16b].imm = map_fds[2]; in do_test_fixup()
681 map_fds[3] = create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
683 update_map(map_fds[3], 0); in do_test_fixup()
685 prog[*fixup_map_array_48b].imm = map_fds[3]; in do_test_fixup()
691 map_fds[4] = create_prog_array(prog_type, 4, 0, 1, 2); in do_test_fixup()
693 prog[*fixup_prog1].imm = map_fds[4]; in do_test_fixup()
699 map_fds[5] = create_prog_array(prog_type, 8, 7, 1, 2); in do_test_fixup()
701 prog[*fixup_prog2].imm = map_fds[5]; in do_test_fixup()
707 map_fds[6] = create_map_in_map(); in do_test_fixup()
709 prog[*fixup_map_in_map].imm = map_fds[6]; in do_test_fixup()
715 map_fds[7] = create_cgroup_storage(false); in do_test_fixup()
717 prog[*fixup_cgroup_storage].imm = map_fds[7]; in do_test_fixup()
723 map_fds[8] = create_cgroup_storage(true); in do_test_fixup()
725 prog[*fixup_percpu_cgroup_storage].imm = map_fds[8]; in do_test_fixup()
730 map_fds[9] = create_map(BPF_MAP_TYPE_SOCKMAP, sizeof(int), in do_test_fixup()
733 prog[*fixup_map_sockmap].imm = map_fds[9]; in do_test_fixup()
738 map_fds[10] = create_map(BPF_MAP_TYPE_SOCKHASH, sizeof(int), in do_test_fixup()
741 prog[*fixup_map_sockhash].imm = map_fds[10]; in do_test_fixup()
746 map_fds[11] = create_map(BPF_MAP_TYPE_XSKMAP, sizeof(int), in do_test_fixup()
749 prog[*fixup_map_xskmap].imm = map_fds[11]; in do_test_fixup()
754 map_fds[12] = create_map(BPF_MAP_TYPE_STACK_TRACE, sizeof(u32), in do_test_fixup()
757 prog[*fixup_map_stacktrace].imm = map_fds[12]; in do_test_fixup()
762 map_fds[13] = create_map_spin_lock(); in do_test_fixup()
764 prog[*fixup_map_spin_lock].imm = map_fds[13]; in do_test_fixup()
769 map_fds[14] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
772 update_map(map_fds[14], 0); in do_test_fixup()
774 prog[*fixup_map_array_ro].imm = map_fds[14]; in do_test_fixup()
779 map_fds[15] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
782 update_map(map_fds[15], 0); in do_test_fixup()
784 prog[*fixup_map_array_wo].imm = map_fds[15]; in do_test_fixup()
789 map_fds[16] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
791 update_map(map_fds[16], 0); in do_test_fixup()
793 prog[*fixup_map_array_small].imm = map_fds[16]; in do_test_fixup()
798 map_fds[17] = create_sk_storage_map(); in do_test_fixup()
800 prog[*fixup_sk_storage_map].imm = map_fds[17]; in do_test_fixup()
805 map_fds[18] = __create_map(BPF_MAP_TYPE_PERF_EVENT_ARRAY, in do_test_fixup()
808 prog[*fixup_map_event_output].imm = map_fds[18]; in do_test_fixup()
813 map_fds[19] = __create_map(BPF_MAP_TYPE_REUSEPORT_SOCKARRAY, in do_test_fixup()
816 prog[*fixup_map_reuseport_array].imm = map_fds[19]; in do_test_fixup()
937 int map_fds[MAX_NR_MAPS]; in do_test_single() local
944 map_fds[i] = -1; in do_test_single()
949 do_test_fixup(test, prog_type, prog, map_fds); in do_test_single()
1099 close(map_fds[i]); in do_test_single()