Lines Matching refs:map_fds

698 			  struct bpf_insn *prog, int *map_fds)  in do_test_fixup()  argument
732 map_fds[0] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long), in do_test_fixup()
735 prog[*fixup_map_hash_8b].imm = map_fds[0]; in do_test_fixup()
741 map_fds[1] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long), in do_test_fixup()
744 prog[*fixup_map_hash_48b].imm = map_fds[1]; in do_test_fixup()
750 map_fds[2] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long), in do_test_fixup()
753 prog[*fixup_map_hash_16b].imm = map_fds[2]; in do_test_fixup()
759 map_fds[3] = create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
761 update_map(map_fds[3], 0); in do_test_fixup()
763 prog[*fixup_map_array_48b].imm = map_fds[3]; in do_test_fixup()
769 map_fds[4] = create_prog_array(prog_type, 4, 0, 1, 2); in do_test_fixup()
771 prog[*fixup_prog1].imm = map_fds[4]; in do_test_fixup()
777 map_fds[5] = create_prog_array(prog_type, 8, 7, 1, 2); in do_test_fixup()
779 prog[*fixup_prog2].imm = map_fds[5]; in do_test_fixup()
785 map_fds[6] = create_map_in_map(); in do_test_fixup()
787 prog[*fixup_map_in_map].imm = map_fds[6]; in do_test_fixup()
793 map_fds[7] = create_cgroup_storage(false); in do_test_fixup()
795 prog[*fixup_cgroup_storage].imm = map_fds[7]; in do_test_fixup()
801 map_fds[8] = create_cgroup_storage(true); in do_test_fixup()
803 prog[*fixup_percpu_cgroup_storage].imm = map_fds[8]; in do_test_fixup()
808 map_fds[9] = create_map(BPF_MAP_TYPE_SOCKMAP, sizeof(int), in do_test_fixup()
811 prog[*fixup_map_sockmap].imm = map_fds[9]; in do_test_fixup()
816 map_fds[10] = create_map(BPF_MAP_TYPE_SOCKHASH, sizeof(int), in do_test_fixup()
819 prog[*fixup_map_sockhash].imm = map_fds[10]; in do_test_fixup()
824 map_fds[11] = create_map(BPF_MAP_TYPE_XSKMAP, sizeof(int), in do_test_fixup()
827 prog[*fixup_map_xskmap].imm = map_fds[11]; in do_test_fixup()
832 map_fds[12] = create_map(BPF_MAP_TYPE_STACK_TRACE, sizeof(u32), in do_test_fixup()
835 prog[*fixup_map_stacktrace].imm = map_fds[12]; in do_test_fixup()
840 map_fds[13] = create_map_spin_lock(); in do_test_fixup()
842 prog[*fixup_map_spin_lock].imm = map_fds[13]; in do_test_fixup()
847 map_fds[14] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
850 update_map(map_fds[14], 0); in do_test_fixup()
852 prog[*fixup_map_array_ro].imm = map_fds[14]; in do_test_fixup()
857 map_fds[15] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
860 update_map(map_fds[15], 0); in do_test_fixup()
862 prog[*fixup_map_array_wo].imm = map_fds[15]; in do_test_fixup()
867 map_fds[16] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
869 update_map(map_fds[16], 0); in do_test_fixup()
871 prog[*fixup_map_array_small].imm = map_fds[16]; in do_test_fixup()
876 map_fds[17] = create_sk_storage_map(); in do_test_fixup()
878 prog[*fixup_sk_storage_map].imm = map_fds[17]; in do_test_fixup()
883 map_fds[18] = __create_map(BPF_MAP_TYPE_PERF_EVENT_ARRAY, in do_test_fixup()
886 prog[*fixup_map_event_output].imm = map_fds[18]; in do_test_fixup()
891 map_fds[19] = __create_map(BPF_MAP_TYPE_REUSEPORT_SOCKARRAY, in do_test_fixup()
894 prog[*fixup_map_reuseport_array].imm = map_fds[19]; in do_test_fixup()
899 map_fds[20] = create_map(BPF_MAP_TYPE_RINGBUF, 0, in do_test_fixup()
902 prog[*fixup_map_ringbuf].imm = map_fds[20]; in do_test_fixup()
1046 int map_fds[MAX_NR_MAPS]; in do_test_single() local
1054 map_fds[i] = -1; in do_test_single()
1059 do_test_fixup(test, prog_type, prog, map_fds); in do_test_single()
1210 close(map_fds[i]); in do_test_single()