Lines Matching refs:map_fds

738 			  struct bpf_insn *prog, int *map_fds)  in do_test_fixup()  argument
773 map_fds[0] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long), in do_test_fixup()
776 prog[*fixup_map_hash_8b].imm = map_fds[0]; in do_test_fixup()
782 map_fds[1] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long), in do_test_fixup()
785 prog[*fixup_map_hash_48b].imm = map_fds[1]; in do_test_fixup()
791 map_fds[2] = create_map(BPF_MAP_TYPE_HASH, sizeof(long long), in do_test_fixup()
794 prog[*fixup_map_hash_16b].imm = map_fds[2]; in do_test_fixup()
800 map_fds[3] = create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
802 update_map(map_fds[3], 0); in do_test_fixup()
804 prog[*fixup_map_array_48b].imm = map_fds[3]; in do_test_fixup()
810 map_fds[4] = create_prog_array(prog_type, 4, 0, 1, 2); in do_test_fixup()
812 prog[*fixup_prog1].imm = map_fds[4]; in do_test_fixup()
818 map_fds[5] = create_prog_array(prog_type, 8, 7, 1, 2); in do_test_fixup()
820 prog[*fixup_prog2].imm = map_fds[5]; in do_test_fixup()
826 map_fds[6] = create_map_in_map(); in do_test_fixup()
828 prog[*fixup_map_in_map].imm = map_fds[6]; in do_test_fixup()
834 map_fds[7] = create_cgroup_storage(false); in do_test_fixup()
836 prog[*fixup_cgroup_storage].imm = map_fds[7]; in do_test_fixup()
842 map_fds[8] = create_cgroup_storage(true); in do_test_fixup()
844 prog[*fixup_percpu_cgroup_storage].imm = map_fds[8]; in do_test_fixup()
849 map_fds[9] = create_map(BPF_MAP_TYPE_SOCKMAP, sizeof(int), in do_test_fixup()
852 prog[*fixup_map_sockmap].imm = map_fds[9]; in do_test_fixup()
857 map_fds[10] = create_map(BPF_MAP_TYPE_SOCKHASH, sizeof(int), in do_test_fixup()
860 prog[*fixup_map_sockhash].imm = map_fds[10]; in do_test_fixup()
865 map_fds[11] = create_map(BPF_MAP_TYPE_XSKMAP, sizeof(int), in do_test_fixup()
868 prog[*fixup_map_xskmap].imm = map_fds[11]; in do_test_fixup()
873 map_fds[12] = create_map(BPF_MAP_TYPE_STACK_TRACE, sizeof(u32), in do_test_fixup()
876 prog[*fixup_map_stacktrace].imm = map_fds[12]; in do_test_fixup()
881 map_fds[13] = create_map_spin_lock(); in do_test_fixup()
883 prog[*fixup_map_spin_lock].imm = map_fds[13]; in do_test_fixup()
888 map_fds[14] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
891 update_map(map_fds[14], 0); in do_test_fixup()
893 prog[*fixup_map_array_ro].imm = map_fds[14]; in do_test_fixup()
898 map_fds[15] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
901 update_map(map_fds[15], 0); in do_test_fixup()
903 prog[*fixup_map_array_wo].imm = map_fds[15]; in do_test_fixup()
908 map_fds[16] = __create_map(BPF_MAP_TYPE_ARRAY, sizeof(int), in do_test_fixup()
910 update_map(map_fds[16], 0); in do_test_fixup()
912 prog[*fixup_map_array_small].imm = map_fds[16]; in do_test_fixup()
917 map_fds[17] = create_sk_storage_map(); in do_test_fixup()
919 prog[*fixup_sk_storage_map].imm = map_fds[17]; in do_test_fixup()
924 map_fds[18] = __create_map(BPF_MAP_TYPE_PERF_EVENT_ARRAY, in do_test_fixup()
927 prog[*fixup_map_event_output].imm = map_fds[18]; in do_test_fixup()
932 map_fds[19] = __create_map(BPF_MAP_TYPE_REUSEPORT_SOCKARRAY, in do_test_fixup()
935 prog[*fixup_map_reuseport_array].imm = map_fds[19]; in do_test_fixup()
940 map_fds[20] = create_map(BPF_MAP_TYPE_RINGBUF, 0, in do_test_fixup()
943 prog[*fixup_map_ringbuf].imm = map_fds[20]; in do_test_fixup()
948 map_fds[21] = create_map_timer(); in do_test_fixup()
950 prog[*fixup_map_timer].imm = map_fds[21]; in do_test_fixup()
1094 int map_fds[MAX_NR_MAPS]; in do_test_single() local
1102 map_fds[i] = -1; in do_test_single()
1107 do_test_fixup(test, prog_type, prog, map_fds); in do_test_single()
1264 close(map_fds[i]); in do_test_single()